*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.header{
    padding:0px 20px;
    display: flex;
    align-items: center;
}
.logo{
    height: 80px;
    width: 100px;
    background-color: transparent;
    border-radius: 5px;

}
.nav{
        display: flex;
        flex: 1;
        justify-content: center;
        gap: 40px;
        margin-left: 100px;
    }
.nav a{
    color:black;
    text-decoration:none;
    font-size:18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}
.nav a:hover{
    color: blue;
    text-decoration: underline;
    text-underline-offset: 8px;
}
.actions{
    display:flex;
    align-items:center;
    gap:25px;
}

.actions i{
    font-size:22px;
    cursor:pointer;
    color:#222;
}

.actions i:hover{
    color:#1d4ed8;
}

.login-btn{
    background:#0b1736;
    color:white;
    border:none;
    padding:10px 22px;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
}

.login-btn:hover{
    background:#162a61;
}
.top-bar{
    background-color: #101a35;
    color: white;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.new{
    color: #f4b53f;
    font-weight: bold;
}
/* =========================
   EDITORIAL HERO
========================= */

.editorial-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:70px;

    padding:80px 30px 70px;

    background:#f8f9fc;
}


.editorial-left{
    width:50%;
}


.editorial-left h1{
    font-family:"Inter", sans-serif;
    font-size:58px;
    line-height:1.15;
    font-weight:700;

    color:#000;

    margin:0 0 35px;
}


.editorial-left p{
    font-family:"Inter", sans-serif;
    font-size:20px;
    line-height:30px;

    color:#444;

    margin:0 0 35px;
}


/* SEARCH */

.editorial-search{
    width:100%;
    max-width:690px;
    height:65px;

    display:flex;
    align-items:center;

    background:white;

    border:1px solid #ddd;
    border-radius:12px;

    padding:0 20px;

    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}


.editorial-search i{
    color:#555;
    font-size:22px;

    margin-right:15px;
}


.editorial-search input{
    flex:1;

    height:100%;

    border:none;
    outline:none;

    font-size:17px;

    font-family:"Inter", sans-serif;
}


.editorial-search input::placeholder{
    color:#555;
}


/* RIGHT IMAGE */

.editorial-right{
    width:45%;
}


.editorial-right img{
    width:100%;
    height:350px;

    object-fit:cover;

    display:block;

    border-radius:22px;

    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}


/* =========================
   FEATURED ARTICLE
========================= */

.featured-section{
    padding:60px 30px 90px;

    background:#f8f9fc;
}


.featured-card{
    width:100%;
    max-width:1450px;

    min-height:440px;

    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    background:white;

    border:1px solid #ddd;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 3px 15px rgba(0,0,0,0.06);
}


/* IMAGE */

.featured-image{
    width:100%;
    height:100%;
}


.featured-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}


/* CONTENT */

.featured-content{
    padding:50px 55px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}


.featured-meta{
    display:flex;
    align-items:center;

    gap:20px;

    margin-bottom:25px;
}


.featured-badge{
    background:#f9dfb5;

    color:#6b4b1d;

    padding:8px 15px;

    border-radius:20px;

    font-size:14px;

    font-weight:600;
}


.read-time{
    color:#1665ff;

    font-size:16px;

    font-weight:600;
}


.featured-content h2{
    font-family:"Inter", sans-serif;

    font-size:38px;

    line-height:1.2;

    color:#111;

    margin:0 0 25px;
}


.featured-content p{
    font-family:"Inter", sans-serif;

    font-size:19px;

    line-height:30px;

    color:#555;

    margin:0 0 30px;
}


/* AUTHOR */

.author{
    display:flex;
    align-items:center;

    gap:15px;

    padding-top:18px;

    border-top:1px solid #ddd;
}


.author-circle{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#f0f1f3;

    font-family:"Inter", sans-serif;

    font-weight:600;

    color:#333;
}


.author-info{
    display:flex;
    flex-direction:column;

    gap:4px;
}


.author-info strong{
    font-family:"Inter", sans-serif;

    font-size:16px;
}


.author-info span{
    font-family:"Inter", sans-serif;

    font-size:14px;

    color:#555;
}
/* =========================
   FOOTER
========================= */

.main-footer{
    background:#080d12;
    color:#d7d9de;
    margin-top:80px;
    font-family:"Inter",
    Arial,
    sans-serif;
}
/* =========================
   NEWSLETTER
========================= */

.footer-newsletter{
    margin:50px 4% 70px;
    padding:32px;
    background:#061d36;
    border:1px solid #163858;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.newsletter-text{
    max-width:620px;
}

.newsletter-text h3{
    color:#e4bc3f;
    font-family:Georgia, serif;
    font-size:22px;
    margin-bottom:12px;
}

.newsletter-text p{
    color:#d2d5db;
    font-size:17px;
    line-height:27px;
    margin:0;
}

.newsletter-form{
    display:flex;
    width:470px;
    height:54px;
}

.newsletter-form input{
    flex:1;
    background:#111c27;
    color:white;
    border:1px solid #263849;
    border-radius:8px 0 0 8px;
    outline:none;
    padding:0 16px;
    font-size:16px;
}

.newsletter-form input::placeholder{
    color:#aeb3ba;
}

.newsletter-form button{
    width:135px;
    border:none;
    background:#e4b934;
    color:#101010;
    font-size:16px;
    font-weight:700;
    border-radius:0 8px 8px 0;
    cursor:pointer;
}

.newsletter-form button:hover{
    background:#f0c94d;
}

/* =========================
   FOOTER CONTENT
========================= */
.footer-content{
    padding:0 4% 70px;
    display:grid;
    grid-template-columns:
    1.35fr
    1fr
    1.2fr
    1.05fr;
    gap:70px;
}

/* =========================
   COMPANY
========================= */

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo img{
    width:65px;
    height:65px;
    object-fit:contain;
    background:white;
    border-radius:6px;
    padding:5px;
}

.footer-logo h2{
    color:#e4bc3f;
    font-family:Georgia, serif;
    font-size:27px;
    line-height:30px;
    margin:0;
}

.company-description{
    max-width:300px;
    color:#b8bdc5;
    font-size:16px;
    line-height:25px;
    margin-bottom:35px;
}

.contact-heading{
    color:white;
    font-family:Georgia, serif;
    font-size:20px;
    margin-bottom:20px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:17px;
    color:#bfc3ca;
    font-size:16px;
    line-height:23px;
}

.contact-item i{
    color:#e4bc3f;
    font-size:18px;
    width:20px;
    margin-top:3px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons{
    display:flex;
    gap:14px;
    margin-top:30px;
}

.social-icons a{
    width:43px;
    height:43px;
    border:1px solid #29323b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d9dce0;
    text-decoration:none;
    font-size:18px;
    transition:0.2s;
}

.social-icons a:hover{
    border-color:#e4bc3f;
    color:#e4bc3f;
    transform:translateY(-2px);
}

/* =========================
   FOOTER COLUMNS
========================= */
.footer-column h3{
    color:white;
    font-family:Georgia, serif;
    font-size:21px;
    margin:0 0 25px;
}

.footer-column a{
    display:block;
    color:#b8bdc5;
    text-decoration:none;
    font-size:16px;
    margin-bottom:17px;
    transition:0.2s;
}

.footer-column a:hover{
    color:#e4bc3f;
    padding-left:3px;
}

.important-heading{
    margin-top:45px !important;
    margin-bottom:25px !important;
}
/* =========================
   FIND US
========================= */

.find-us{
    background:#061d36;
    border:1px solid #173957;
    border-radius:14px;
    overflow:hidden;
    height:max-content;
}

.find-us > h3{
    font-family:Georgia, serif;
    font-size:22px;
    color:white;
    padding:24px 22px;
    margin:0;
    border-bottom:1px solid #24425d;
}

.map-container{
    width:100%;
    height:330px;
    background:#222;
}

.map-container img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.direction-btn{
    width:calc(100% - 40px);
    height:48px;
    margin:20px;
    background:transparent;
    border:1px solid #e4bc3f;
    border-radius:5px;
    color:#e4bc3f;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.direction-btn i{
    margin-left:8px;
}

.direction-btn:hover{
    background:#e4bc3f;
    color:#101010;
}


/* =========================
   BOTTOM FOOTER
========================= */

.footer-bottom{
    min-height:80px;
    padding:20px 4%;
    border-top:1px solid #24282c;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-bottom p{
    color:#c2c5ca;
    font-size:15px;
    margin:0;
}

.footer-bottom > span{
    color:#e4bc3f;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
}


.bottom-links{
    display:flex;
    align-items:center;
    gap:12px;
}

.bottom-links a{
    color:#c2c5ca;
    text-decoration:none;
    font-size:15px;
}
.bottom-links a:hover{
    color:#e4bc3f;
}
.bottom-links b{
    color:#555b61;
    font-weight:400;
}


/* =========================================================
   RESPONSIVE DESIGN
   Editorial Page - Desktop / Laptop / Tablet / Mobile
   ========================================================= */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img{
    max-width:100%;
}


/* ================= LAPTOP ================= */

@media (max-width:1200px){

    .header{
        padding:0 15px;
    }

    .nav{
        gap:22px;
        margin-left:30px;
    }

    .nav a{
        font-size:16px;
    }

    .actions{
        gap:16px;
    }

    .editorial-hero{
        gap:35px;
        padding:60px 25px 50px;
    }

    .editorial-left h1{
        font-size:48px;
    }

    .featured-card{
        min-height:400px;
    }

    .featured-content{
        padding:40px;
    }

    .footer-content{
        grid-template-columns:1.3fr 1fr 1fr;
        gap:45px;
    }

    .find-us{
        grid-column:1 / -1;
        max-width:600px;
        width:100%;
    }
}


/* ================= TABLET ================= */

@media (max-width:992px){

    .header{
        min-height:80px;
        padding:8px 18px;
        flex-wrap:wrap;
        gap:10px;
    }

    .logo{
        width:85px;
        height:70px;
    }

    .nav{
        order:2;
        width:100%;
        margin-left:0;
        justify-content:center;
        gap:14px 20px;
        flex-wrap:wrap;
    }

    .nav a{
        font-size:15px;
    }

    .actions{
        margin-left:auto;
        gap:15px;
    }

    .actions i{
        font-size:19px;
    }

    .login-btn{
        padding:8px 16px;
        font-size:14px;
    }

    .top-bar{
        height:auto;
        min-height:40px;
        padding:8px 15px;
        text-align:center;
        flex-wrap:wrap;
        font-size:14px;
    }

    /* HERO */

    .editorial-hero{
        flex-direction:column;
        align-items:stretch;
        gap:30px;
        padding:50px 25px 45px;
    }

    .editorial-left,
    .editorial-right{
        width:100%;
    }

    .editorial-left h1{
        font-size:43px;
        margin-bottom:25px;
    }

    .editorial-left p{
        font-size:18px;
        line-height:28px;
    }

    .editorial-search{
        max-width:100%;
    }

    .editorial-right img{
        height:320px;
    }

    /* FEATURED */

    .featured-section{
        padding:45px 20px 65px;
    }

    .featured-card{
        grid-template-columns:1fr;
        min-height:0;
    }

    .featured-image{
        height:320px;
    }

    .featured-content{
        padding:35px;
    }

    .featured-content h2{
        font-size:32px;
    }

    .featured-content p{
        font-size:17px;
        line-height:27px;
    }

    /* FOOTER */

    .footer-newsletter{
        margin:35px 3% 50px;
        padding:25px;
        flex-direction:column;
        align-items:stretch;
        gap:20px;
    }

    .newsletter-form{
        width:100%;
        max-width:none;
    }

    .footer-content{
        grid-template-columns:1fr 1fr;
        gap:40px;
        padding:0 25px 55px;
    }

    .find-us{
        grid-column:1 / -1;
    }

    .footer-bottom{
        flex-wrap:wrap;
        justify-content:center;
        text-align:center;
    }
}


/* ================= MOBILE ================= */

@media (max-width:768px){

    .header{
        flex-direction:column;
        justify-content:center;
        align-items:center;
        padding:10px 10px 14px;
        gap:10px;
    }

    .logo{
        width:80px;
        height:65px;
    }

    .nav{
        order:0;
        width:100%;
        margin-left:0;
        gap:8px 14px;
    }

    .nav a{
        font-size:13px;
    }

    .actions{
        margin-left:0;
        justify-content:center;
        gap:18px;
    }

    .actions i{
        font-size:18px;
    }

    .login-btn{
        padding:8px 16px;
        font-size:13px;
    }

    .top-bar{
        padding:8px 10px;
        gap:6px 9px;
        font-size:12px;
        line-height:18px;
    }

    /* HERO */

    .editorial-hero{
        padding:35px 15px 30px;
        gap:25px;
    }

    .editorial-left h1{
        font-size:32px;
        line-height:1.15;
        margin-bottom:20px;
    }

    .editorial-left p{
        font-size:15px;
        line-height:24px;
        margin-bottom:22px;
    }

    .editorial-search{
        height:52px;
        padding:0 12px;
        border-radius:10px;
        min-width:0;
    }

    .editorial-search i{
        font-size:17px;
        margin-right:9px;
    }

    .editorial-search input{
        font-size:13px;
        min-width:0;
    }

    .editorial-right img{
        height:230px;
        border-radius:12px;
    }

    /* FEATURED */

    .featured-section{
        padding:30px 12px 45px;
    }

    .featured-card{
        border-radius:15px;
    }

    .featured-image{
        height:220px;
    }

    .featured-content{
        padding:25px 20px;
    }

    .featured-meta{
        gap:10px;
        flex-wrap:wrap;
        margin-bottom:18px;
    }

    .featured-badge{
        padding:7px 11px;
        font-size:12px;
    }

    .read-time{
        font-size:13px;
    }

    .featured-content h2{
        font-size:26px;
        line-height:1.2;
        margin-bottom:18px;
    }

    .featured-content p{
        font-size:15px;
        line-height:24px;
        margin-bottom:22px;
    }

    .author{
        gap:10px;
        padding-top:15px;
    }

    .author-circle{
        width:42px;
        height:42px;
        min-width:42px;
    }

    .author-info strong{
        font-size:14px;
    }

    .author-info span{
        font-size:12px;
    }

    /* FOOTER */

    .main-footer{
        margin-top:20px;
    }

    .footer-newsletter{
        margin:30px 12px 40px;
        padding:22px 16px;
        gap:18px;
    }

    .newsletter-text h3{
        font-size:19px;
    }

    .newsletter-text p{
        font-size:14px;
        line-height:22px;
    }

    .newsletter-form{
        width:100%;
        height:48px;
    }

    .newsletter-form input{
        min-width:0;
        font-size:13px;
        padding:0 11px;
    }

    .newsletter-form button{
        width:105px;
        font-size:13px;
    }

    .footer-content{
        grid-template-columns:1fr;
        gap:35px;
        padding:0 16px 45px;
    }

    .company-description{
        max-width:100%;
    }

    .find-us{
        width:100%;
    }

    .find-us > h3{
        font-size:20px;
        padding:20px 18px;
    }

    .map-container{
        height:240px;
    }

    .direction-btn{
        width:calc(100% - 30px);
        margin:15px;
    }

    .footer-bottom{
        flex-direction:column;
        padding:18px 12px;
        gap:9px;
    }

    .footer-bottom p{
        font-size:12px;
        text-align:center;
    }

    .footer-bottom > span{
        font-size:9px;
        text-align:center;
    }

    .bottom-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .bottom-links a{
        font-size:12px;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){

    .nav{
        gap:7px 10px;
    }

    .nav a{
        font-size:11px;
    }

    .actions{
        gap:13px;
    }

    .editorial-hero{
        padding:28px 10px 25px;
    }

    .editorial-left h1{
        font-size:27px;
    }

    .editorial-left p{
        font-size:14px;
        line-height:22px;
    }

    .editorial-search{
        height:48px;
        padding:0 9px;
    }

    .editorial-search input{
        font-size:11px;
    }

    .editorial-search i{
        font-size:15px;
        margin-right:7px;
    }

    .editorial-right img{
        height:190px;
    }

    .featured-section{
        padding-left:8px;
        padding-right:8px;
    }

    .featured-image{
        height:185px;
    }

    .featured-content{
        padding:20px 15px;
    }

    .featured-content h2{
        font-size:23px;
    }

    .featured-content p{
        font-size:14px;
        line-height:22px;
    }

    .footer-newsletter{
        margin-left:8px;
        margin-right:8px;
    }

    .newsletter-form button{
        width:90px;
        font-size:12px;
    }

    .map-container{
        height:210px;
    }
}

/* =========================================================
   HOME PAGE NAVBAR + FOOTER
   Editorial page content remains unchanged.
   ========================================================= */

.top-bar{
    min-height:40px;
    padding:8px 20px;
    background:#101a35;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    text-align:center;
    font-size:16px;
    line-height:22px;
}
.top-bar .new{color:#f4b53f;font-weight:800}
.top-bar a{color:#f4c84a;font-weight:700;text-decoration:underline}

.header{
    min-height:92px;
    padding:8px 3%;
    display:flex;
    align-items:center;
    gap:25px;
    background:#fff;
}
.header .logo{
    width:150px;
    height:120px;
    object-fit:contain;
}
.nav{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
    margin-left:0;
}
.nav a{
    font-family:"Gill Sans","Gill Sans MT",Calibri,sans-serif;
    font-size:19px;
    font-weight:700;
    color:#111;
    white-space:nowrap;
}
.nav a:hover{
    color:#1665ff;
    text-decoration:underline;
    text-underline-offset:7px;
}
.actions{display:flex;align-items:center;gap:20px}
.actions i{font-size:23px;color:#222;cursor:pointer}
.actions i:hover{color:#1665ff}
.login-btn{
    border:0;
    background:#0b1736;
    color:#fff;
    padding:11px 22px;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
}
.login-btn:hover{background:#162a61}

.main-footer{
    background:#080d12;
    color:#d7d9de;
    margin-top:80px;
    font-family:Arial,Helvetica,sans-serif;
    width:100%;
}
.main-footer .footer-top{
    max-width:1400px;
    margin:0 auto;
    padding:55px 3%;
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1.25fr;
    gap:45px;
    align-items:start;
}
.main-footer .footer-brand img{
    width:68px;height:68px;object-fit:contain;background:#fff;
    border-radius:7px;padding:5px;display:block;margin-bottom:14px;
}
.main-footer .footer-brand h2{
    margin:0 0 12px;color:#e4bc3f;font-family:Georgia,serif;
    font-size:27px;line-height:1.1;
}
.main-footer .footer-brand p{
    max-width:310px;margin:0;color:#b8bdc5;font-size:15px;line-height:25px;
}
.main-footer .footer-column{display:flex;flex-direction:column;min-width:0}
.main-footer .footer-column h3,
.main-footer .contact-column h3,
.main-footer .app-content h3,
.main-footer .location-section h3,
.main-footer .social-section h3{
    color:#fff;font-family:Georgia,serif;font-size:20px;margin:0 0 20px;
}
.main-footer .footer-column>a{
    color:#b8bdc5;text-decoration:none;font-size:15px;line-height:22px;
    margin-bottom:13px;transition:.2s;
}
.main-footer .footer-column>a:hover{color:#e4bc3f;padding-left:3px}
.main-footer .footer-contact-item{
    display:flex;align-items:flex-start;gap:13px;margin-bottom:18px;
}
.main-footer .footer-contact-item>i{
    color:#e4bc3f;font-size:18px;width:20px;min-width:20px;margin-top:3px;
}
.main-footer .footer-contact-item a,
.main-footer .footer-contact-item p{
    color:#b8bdc5;font-size:15px;line-height:23px;text-decoration:none;margin:0;
}
.main-footer .footer-contact-item a{display:block;margin-bottom:3px}
.main-footer .footer-contact-item a:hover{color:#e4bc3f}
.main-footer .footer-middle{
    max-width:1400px;margin:0 auto;padding:32px 3%;
    border-top:1px solid #252d35;border-bottom:1px solid #252d35;
    display:grid;grid-template-columns:1fr 1.25fr 1.35fr;
    gap:45px;align-items:center;
}
.main-footer .social-section h3{margin-bottom:16px}
.main-footer .social-icons{display:flex;align-items:center;gap:12px}
.main-footer .social-icons a{
    width:44px;height:44px;border:1px solid #39434d;border-radius:50%;
    display:flex;align-items:center;justify-content:center;color:#d9dce0;
    text-decoration:none;font-size:18px;transition:.25s;
}
.main-footer .social-icons a:hover{
    background:#e4bc3f;border-color:#e4bc3f;color:#101010;transform:translateY(-3px);
}
.main-footer .app-section{display:flex;gap:15px;align-items:flex-start}
.main-footer .app-icon{
    width:55px;height:55px;min-width:55px;border-radius:10px;
    background:#173957;border:1px solid #2c5574;color:#e4bc3f;
    display:flex;align-items:center;justify-content:center;font-size:21px;
}
.main-footer .app-content h3{margin-bottom:7px}
.main-footer .app-content p{color:#aeb5c0;font-size:14px;line-height:21px;margin:0 0 12px}
.main-footer .app-btn{
    display:inline-flex;align-items:center;gap:8px;padding:9px 15px;
    background:#e4bc3f;color:#101010;text-decoration:none;border-radius:6px;
    font-size:13px;font-weight:bold;
}
.main-footer .app-btn:hover{background:#f0c94d}
.main-footer .location-section{min-width:0}
.main-footer .location-section h3{margin-bottom:12px}
.main-footer .map-card{
    position:relative;display:block;width:100%;height:150px;overflow:hidden;
    border:1px solid #173957;border-radius:10px;background:#061d36;text-decoration:none;
}
.main-footer .map-card img{width:100%;height:100%;object-fit:cover;display:block;transition:.3s}
.main-footer .map-overlay{
    position:absolute;inset:0;background:rgba(8,13,18,.58);
    display:flex;align-items:center;justify-content:center;gap:8px;color:#fff;
    font-size:15px;font-weight:600;opacity:0;transition:.3s;
}
.main-footer .map-card:hover img{transform:scale(1.05)}
.main-footer .map-card:hover .map-overlay{opacity:1}
.main-footer .map-overlay i{color:#e4bc3f;font-size:20px}
.main-footer .map-address{color:#aeb5c0;font-size:12px;line-height:19px;margin:9px 0 0}
.main-footer .footer-bottom{
    min-height:75px;padding:20px 3%;display:flex;align-items:center;
    justify-content:space-between;gap:25px;max-width:1400px;margin:0 auto;
}
.main-footer .footer-bottom p{color:#c2c5ca;font-size:14px;margin:0}
.main-footer .footer-bottom-links{display:flex;align-items:center;gap:10px}
.main-footer .footer-bottom-links a{color:#c2c5ca;text-decoration:none;font-size:14px}
.main-footer .footer-bottom-links a:hover{color:#e4bc3f}
.main-footer .footer-bottom-links span{color:#50575e}
.main-footer .footer-tagline{color:#e4bc3f;font-size:11px;font-weight:bold;letter-spacing:1.5px}

@media (max-width:1000px){
    .header{padding:8px 3%;flex-wrap:wrap}
    .header .logo{width:120px;height:95px}
    .nav{gap:20px}.nav a{font-size:17px}.actions{gap:16px}
    .main-footer .footer-top{grid-template-columns:1.3fr 1fr 1fr;gap:35px}
    .main-footer .contact-column{grid-column:1 / -1}
    .main-footer .footer-middle{grid-template-columns:1fr 1fr}
    .main-footer .location-section{grid-column:1 / -1}
}
@media (max-width:650px){
    .top-bar{min-height:40px;padding:8px 12px;font-size:13px;line-height:20px;flex-wrap:wrap}
    .header{min-height:92px;flex-direction:column;justify-content:center;align-items:center;padding:10px 12px 15px;gap:12px}
    .header .logo{width:100px;height:80px}
    .nav{width:100%;gap:10px 18px;flex-wrap:wrap;justify-content:center}
    .nav a{font-size:14px}.actions{justify-content:center;gap:18px}
    .actions i{font-size:18px}.login-btn{padding:8px 17px;font-size:14px}
    .main-footer .footer-top{grid-template-columns:1fr;padding:45px 25px;gap:35px}
    .main-footer .contact-column{grid-column:auto}
    .main-footer .footer-middle{grid-template-columns:1fr;padding:35px 25px;gap:35px}
    .main-footer .location-section{grid-column:auto}
    .main-footer .map-card{height:220px}
    .main-footer .footer-bottom{flex-direction:column;text-align:center;padding:25px 20px;gap:15px}
    .main-footer .footer-bottom-links{flex-wrap:wrap;justify-content:center}
}
@media (max-width:400px){
    .header .logo{width:90px;height:72px}
    .nav{gap:8px 12px}.nav a{font-size:12px}
    .main-footer .social-icons a{width:40px;height:40px}
}