@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');
/* ==========================================
   1. RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* ==========================================
   2. ROOT VARIABLES
========================================== */

:root{

    /* Colors */
    --color-primary:#D4AF37;
    --color-primary-dark:#C99A2E;
    --color-dark:#111827;
    --color-black:#0B0B0B;
    --color-white:#FFFFFF;
    --color-text:#6B7280;
    --color-light:#F8F5EF;
    --color-light-2:#F7F4EE;
    --color-light-3:#EEE7DA;

    /* Layout */
    --container-width:1320px;

    /* Radius */
    --radius-sm:8px;
    --radius-md:12px;
    --radius-lg:18px;
    --radius-xl:24px;
    --radius-pill:999px;

    /* Transition */
    --transition:.35s ease;

}

/* ==========================================
   3. BASE STYLES
========================================== */

body{
    font-family:'Manrope', sans-serif;
    background:#111827;
    color:white;
    overflow-x:hidden;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Playfair Display', serif;
    font-weight:700;
    letter-spacing:0;
}

p,
a,
button,
input,
select,
textarea,
span{
    font-family:'Manrope', sans-serif;
}
html{
    scroll-behavior:smooth;
}

/* ==========================================
   4. LAYOUT
========================================== */

.container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 50px;
    box-sizing:border-box;
}

/* ==========================================
   5. SHARED COMPONENTS
========================================== */

.section-title{
    text-align:center;
    margin-bottom:18px;
}

.section-title h2{
    font-size:52px;
    font-weight:600;
    color:#ffffff;
    line-height:1.2;
    max-width:950px;
    margin:0 auto 12px;
    letter-spacing:1px;
}

.section-title p{
    font-size:17px;
    line-height:1.6;
    max-width:760px;
    margin:auto;
}

.section-label{
    display:inline-block;
    color:#B8891F;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    display:block;
    color:#BE8E1D;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.page-header{
    padding:80px 20px 50px;
    text-align:center;
    background:linear-gradient(
        to bottom,
        #f8f8f8 0%,
        #ffffff 100%
    );
    border-bottom:1px solid rgba(0,0,0,.05);
}

.page-header h1{
    font-size:48px;
    margin-bottom:15px;
    color:#1f2937;
}

.page-header p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:auto;
}

.gold-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-bottom:20px;
}

.gold-divider span{
    width:75px;
    height:1px;
    background:#D4AF37;
}

.gold-divider i{
    color:#D4AF37;
    font-size:12px;
    font-style:normal;
}

.badge{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:12px 20px;

    border:1px solid rgba(255,255,255,.18);

    border-radius:999px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    color:#ffffff;

    font-size:14px;
    font-weight:600;

    letter-spacing:.3px;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    transition:all .35s ease;
}

.badge:hover{
    transform:translateY(-4px);
    background:rgba(212,175,55,.16);
    border-color:#D4AF37;
    color:#ffffff;
    box-shadow:0 15px 35px rgba(212,175,55,.20);
}

/* ==========================================
   6. REUSABLE COMPONENTS
========================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:58px;
    padding:0 30px;
    background:linear-gradient(135deg,#E7C86A,#C89C2B);
    color:#111827;
    text-decoration:none;
    border-radius:999px;
    font-size:18px;
    font-weight:700;
    box-shadow:0 12px 30px rgba(212,175,55,.35);
    transition:all .35s ease;
}

.btn:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(212,175,55,.55);
    filter:brightness(1.05);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    height:58px;
    padding:0 30px;
    border:2px solid rgba(212,175,55,.85);
    border-radius:999px;
    color:#ffffff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    background:rgba(0,0,0,.28);
    backdrop-filter:blur(12px);
    transition:all .35s ease;
}

.btn-outline:hover{
    background:#D4AF37;
    color:#111827;
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(212,175,55,.45);
}

.view-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:999px;
    text-decoration:none;
    background:#D4AF37;
    color:#111827;
    font-weight:700;
    transition:.35s;
    box-shadow:0 10px 25px rgba(212,175,55,.25);
}

.view-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(212,175,55,.45);
}

.primary-btn{
    background:#D4AF37;
    color:#111827;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
}

.secondary-btn{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
}

.cta-btn{
    display:inline-block;
    background:#d6ae34;
    color:#111;
    text-decoration:none;
    padding:18px 42px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.intro-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px 36px;
    background:linear-gradient(180deg,#E3B84F,#C99A2E);
    color:#ffffff;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.35s;
}

.intro-btn i{
    font-size:20px;
}

.intro-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(201,154,46,.35);
}

/* ==========================================
   7. HEADER / NAVBAR
========================================== */

/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:88px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 70px;

    background:rgba(8,8,8,.72);
    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;

    transition:all .35s ease;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    width:160px;
    height:auto;
    display:block;
}

/* Navigation */

.nav-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:55px;
    list-style:none;
    flex:1;
    margin:0;
    padding:0;
}

.nav-links a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
}

.nav-links a:hover{
    color:#D4AF37;
}
.nav-dropdown{position:relative}.nav-dropdown>button{background:none;color:#fff;font-size:15px;font-weight:600;letter-spacing:2px;text-transform:uppercase;cursor:pointer}.nav-dropdown i{font-size:10px}.dropdown-menu,.nested-menu{position:absolute;top:100%;left:0;min-width:210px;padding:10px;background:#111827;border:1px solid rgba(212,175,55,.25);border-radius:8px;box-shadow:0 18px 35px rgba(0,0,0,.35);opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s}.nav-dropdown:hover>.dropdown-menu,.nav-dropdown:focus-within>.dropdown-menu,.nested:hover>.nested-menu{opacity:1;visibility:visible;transform:none}.dropdown-menu a,.nested>span{display:flex!important;justify-content:space-between;padding:12px 14px;font-size:13px!important;letter-spacing:1px!important;white-space:nowrap}.dropdown-menu .nested>span{color:#fff!important;cursor:default}.nested{position:relative}.nested-menu{left:100%;top:0}.mobile-menu strong,.mobile-menu .mobile-label{color:#d4af37;padding:8px 0}.mobile-menu .mobile-sub{padding-left:18px}.mobile-menu .deep{padding-left:36px}

/* Free Consultation Button */

.nav-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    height:52px;
    padding:0 24px;

    background:linear-gradient(180deg,#E3B84F 0%,#C99A2E 100%);
    border:1px solid rgba(255,255,255,.18);
    border-radius:10px;

    color:#ffffff;
    text-decoration:none;

    font-size:15px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:.4px;

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

.nav-btn i{
    font-size:20px;
    color:#ffffff;
    margin-right:10px;
}

.nav-btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.08);
    box-shadow:0 15px 35px rgba(201,154,46,.35);
}

@media (max-width:1100px){

    .navbar{
        height:78px;
        padding:0 20px;
        justify-content:space-between;
    }

    .logo{
        flex:0 0 auto;
    }

    .logo img{
        width:140px;
        height:auto;
    }

    .nav-links,
    .nav-btn,
    .assessment-btn{
        display:none !important;
    }

    .mobile-menu-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;
    }

}

/* ==========================================
   8. FOOTER
========================================== */

/*=========================================
  FOOTER
=========================================*/

.site-footer{
    background:#0B0B0B;
    padding:70px 0 0;
    color:#fff;
}

.footer-main{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:55px;
    border-top:1px solid rgba(212,175,55,.18);
    padding-top:55px;
}

.footer-column h3{
    font-size:26px;
    color:#D4AF37;
    margin-bottom:22px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column li{
    color:#D8D8D8;
    margin-bottom:14px;
    line-height:1.8;
}

.footer-column a{
    color:#D8D8D8;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#D4AF37;
}

.footer-brand{
    text-align:center;
}

.footer-logo{
    width:220px;
    display:block;
    margin:0 auto 25px;
}

.footer-brand p{
    font-size:20px;
    line-height:1.6;
    color:#fff;
    margin-bottom:25px;
}

.footer-brand > a{
    color:#D4AF37;
    font-weight:700;
}

.footer-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:28px;
    width:220px;
    height:52px;
    border-radius:999px;
    background:linear-gradient(180deg,#E3B84F,#C99A2E);
    color:#111 !important;
    font-weight:700;
}

.footer-btn i{
    font-size:20px;
}

.footer-bottom{
    width:100vw;
    margin-top:60px;
    margin-left:calc(50% - 50vw);
    background:#D4AF37;
    color:#ffffff;
    text-align:center;
    padding:16px 0;
    font-size:15px;
    font-weight:500;
    letter-spacing:.4px;
}

@media(max-width:992px){

.footer-main{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-brand{
    text-align:left;
}

.footer-logo{
    margin:0 0 20px;
}

}

/* ==========================================
   9. UTILITY CLASSES
========================================== */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul,
ol{
    list-style:none;
    margin:0;
    padding:0;
}

button,
input,
textarea,
select{
    font:inherit;
    outline:none;
    border:none;
}

.section{
    padding:100px 0;
}

.text-center{
    text-align:center;
}

.w-100{
    width:100%;
}

.hidden{
    display:none;
}

.flex{
    display:flex;
}

.grid{
    display:grid;
}

/* ==========================================
   10. SHARED ANIMATIONS
========================================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .9s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.hero h1{
    opacity:0;
    animation:fadeUp .8s ease forwards;
}

.hero p{
    opacity:0;
    animation:fadeUp .8s ease forwards;
    animation-delay:.25s;
}

.hero-buttons{
    opacity:0;
    animation:fadeUp .8s ease forwards;
    animation-delay:.5s;
}

.hero-badges{
    opacity:0;
    animation:fadeUp .8s ease forwards;
    animation-delay:.75s;
}

/* ==========================================
   GLOBAL RESPONSIVE
========================================== */

/* ---------- Large Laptop ---------- */

@media (max-width:1400px){

    .container{
        max-width:1200px;
        padding:0 40px;
    }

    .navbar{
        padding:0 40px;
    }

}

/* ---------- Laptop ---------- */

@media (max-width:1200px){

    .container{
        max-width:100%;
        padding:0 32px;
    }

    .navbar{
        padding:0 32px;
    }

    .nav-links{
        gap:32px;
    }

    .section-title h2{
        font-size:46px;
    }

}

/* ---------- Tablet ---------- */

@media (max-width:992px){

    .container{
        padding:0 24px;
    }

    .section{
        padding:80px 0;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:40px;
        line-height:1.2;
    }

    .section-title p{
        font-size:16px;
    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .container{
        padding:0 20px;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:15px;
        line-height:1.8;
    }

    .page-header{
        padding:120px 20px 60px;
    }

    .page-header h1{
        font-size:36px;
    }

    .page-header p{
        font-size:16px;
    }

}

/* ---------- Small Mobile ---------- */

@media (max-width:480px){

    .container{
        padding:0 16px;
    }

    .section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:30px;
    }

}

/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.mobile-menu-btn{

    display:none;

    width:48px;
    height:48px;

    border:none;

    background:transparent;

    color:#ffffff;

    font-size:24px;

    cursor:pointer;

    align-items:center;
    justify-content:center;

    transition:.3s;

}

.mobile-menu-btn:hover{

    color:#D4AF37;

}

@media (max-width:1100px){

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        z-index:10002;
    }

    .nav-links{
        display:none;
    }

    .nav-btn{
        display:none;
    }

}

@media (max-width:1100px){

    .nav-links{
        display:none !important;
    }

    .nav-btn{
        display:none !important;
    }

    .mobile-menu-btn{
        display:flex !important;
    }

}

/* ==========================================
   PREMIUM MOBILE MENU
========================================== */

.mobile-menu{

    position:fixed;

    top:78px;
    right:-100%;

    width:320px;
    max-width:85%;

    height:calc(100vh - 78px);

    background:#111827;

    display:flex;
    flex-direction:column;

    padding:40px 30px;

    gap:22px;

    transition:right .35s ease;

    z-index:9998;

    box-shadow:-10px 0 35px rgba(0,0,0,.35);

    overflow-y:auto;

}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{

    color:#ffffff;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.mobile-menu a:hover{

    color:#D4AF37;

}

.mobile-language{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

}

.mobile-language span{

    color:#666;

}

.mobile-whatsapp{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:25px;

    padding:16px;

    background:linear-gradient(180deg,#E3B84F,#C99A2E);

    border-radius:10px;

    color:#111827 !important;

    font-weight:700;

}

body.menu-open{

    overflow:hidden;

}

/* Hide on Desktop */

@media(min-width:1101px){

    .mobile-menu{

        display:none;

    }

}
