:root{
    --primary:#102A43;
    --primary-2:#1E3A5F;
    --primary-3:#0B2035;
    --secondary:#C9A24D;
    --secondary-light:#E8C976;
    --accent:#5D7180;
    --dark:#1F2933;
    --text:#52616F;
    --muted:#7B8794;
    --white:#FFFFFF;
    --ivory:#FAF6EC;
    --cream:#FFF9EC;
    --sand:#EFE6D2;
    --border:rgba(201,162,77,.26);
    --shadow:0 18px 45px rgba(16,42,67,.12);
    --shadow-hover:0 28px 70px rgba(16,42,67,.20);
    --gradient-primary:linear-gradient(135deg,#102A43 0%,#1E3A5F 100%);
    --gradient-gold:linear-gradient(135deg,#C9A24D 0%,#E8C976 100%);
    --gradient-premium:linear-gradient(135deg,#102A43 0%,#1E3A5F 62%,#C9A24D 155%);
    --ease-out:cubic-bezier(.22,1,.36,1);
    --ease-smooth:cubic-bezier(.4,0,.2,1);
}

html{
    scroll-padding-top:130px;
}

body{
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
    overflow-x:hidden;
    animation:pageFadeIn .7s var(--ease-out) both;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    background:
        linear-gradient(90deg,rgba(16,42,67,.035) 1px,transparent 1px),
        linear-gradient(180deg,rgba(16,42,67,.026) 1px,transparent 1px);
    background-size:48px 48px;
    mask-image:linear-gradient(180deg,rgba(0,0,0,.45),transparent 72%);
}

::selection{
    background:rgba(201,162,77,.32);
    color:var(--primary);
}

a,
button,
input,
textarea{
    font:inherit;
}

img{
    max-width:100%;
}

h1,
h2,
h3,
h4,
p,
li,
a,
span{
    overflow-wrap:anywhere;
}

:focus-visible{
    outline:3px solid rgba(201,162,77,.55);
    outline-offset:4px;
}

.container{
    width:min(1240px,92%) !important;
}

header{
    top:14px !important;
    width:min(1220px,94%) !important;
    border-radius:18px !important;
    background:rgba(255,255,255,.92) !important;
    border-color:rgba(201,162,77,.24) !important;
    box-shadow:0 18px 45px rgba(16,42,67,.14) !important;
    animation:navDrop .75s var(--ease-out) both;
}

header::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(255,255,255,.48),rgba(255,255,255,0));
}

.nav{
    height:78px !important;
}

.brand img{
    height:58px !important;
    transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.menu{
    gap:26px !important;
}

.menu a{
    letter-spacing:0 !important;
    transition:color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
    padding:9px 0;
}

.menu a:hover{
    transform:translateY(-2px);
}

.menu a.active{
    color:var(--secondary) !important;
}

.menu a.active::after{
    width:100% !important;
}

.btn,
.btn-primary,
.btn-outline,
.cta-btn,
.explore-btn,
.submit-btn{
    border-radius:12px !important;
    letter-spacing:0 !important;
}

.btn-primary,
.cta-btn{
    box-shadow:0 12px 26px rgba(201,162,77,.22) !important;
}

.btn,
.btn-primary,
.btn-outline,
.cta-btn,
.explore-btn,
.submit-btn,
.hamburger{
    position:relative;
    overflow:hidden;
    transition:transform .32s var(--ease-out), box-shadow .32s var(--ease-out), color .32s var(--ease-out), background .32s var(--ease-out);
}

.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.cta-btn:hover,
.explore-btn:hover,
.submit-btn:hover{
    transform:translateY(-3px);
}

.btn::after,
.btn-primary::after,
.btn-outline::after,
.cta-btn::after,
.explore-btn::after,
.submit-btn::after{
    content:"";
    position:absolute;
    inset:-40% auto -40% -70%;
    width:50%;
    transform:skewX(-22deg);
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.38),transparent);
    transition:left .65s var(--ease-out);
    pointer-events:none;
}

.btn:hover::after,
.btn-primary:hover::after,
.btn-outline:hover::after,
.cta-btn:hover::after,
.explore-btn:hover::after,
.submit-btn:hover::after{
    left:125%;
}

.hero,
.about-hero,
.projects-hero,
.project-hero,
.contact-hero{
    position:relative;
    isolation:isolate;
    padding-top:clamp(125px,13vh,170px) !important;
    padding-bottom:clamp(72px,9vh,110px) !important;
    align-items:flex-start !important;
}

.about-hero::before,
.projects-hero::before,
.project-hero::before,
.contact-hero::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(120deg,rgba(201,162,77,.18),transparent 28%),
        linear-gradient(270deg,rgba(255,255,255,.08),transparent 35%);
    z-index:-1;
}

.hero{
    min-height:max(850px,100vh) !important;
}

.about-hero,
.projects-hero,
.project-hero,
.contact-hero{
    min-height:clamp(620px,72vh,760px) !important;
}

.hero-content,
.about-hero .container,
.projects-hero .container,
.project-hero .container,
.contact-hero .container{
    animation:heroContentRise .9s .15s var(--ease-out) both;
}

.slide.active{
    animation:heroKenBurns 8s ease-out both;
}

.hero-overlay{
    animation:softGlow 6s ease-in-out infinite alternate;
}

.about-hero,
.projects-hero,
.project-hero,
.contact-hero{
    overflow:hidden;
}

.about-hero::after,
.projects-hero::after,
.project-hero::after,
.contact-hero::after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:120px;
    background:linear-gradient(180deg,rgba(250,246,236,0),rgba(250,246,236,.98));
    z-index:-1;
    pointer-events:none;
}

.about-hero,
.contact-hero{
    min-height:500px !important;
    padding-top:160px !important;
    padding-bottom:90px !important;
    color:#fff !important;
    border-bottom:6px solid var(--secondary);
    overflow:visible;
}

.about-hero::after,
.contact-hero::after{
    content:none !important;
}

.about-hero{
    background:
        linear-gradient(rgba(16,42,67,.70),rgba(16,42,67,.70)),
        url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat !important;
}

.contact-hero{
    background:
        linear-gradient(rgba(16,42,67,.72),rgba(16,42,67,.72)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat !important;
}

.about-hero h1,
.contact-hero h1{
    color:#fff !important;
}

.about-hero p,
.contact-hero p{
    color:#EEF2F7 !important;
}

.about-hero span,
.contact-hero span{
    background:rgba(201,162,77,.20) !important;
    border:1px solid rgba(232,201,118,.50) !important;
    color:#FFE8A8 !important;
}

.hero h1,
.about-hero h1,
.projects-hero h1,
.project-hero h1,
.contact-hero h1{
    letter-spacing:0 !important;
    text-wrap:balance;
}

.hero p,
.about-hero p,
.projects-hero p,
.project-hero p,
.contact-hero p,
.section-title p{
    text-wrap:pretty;
}

.eyebrow,
.section-tag,
.section-title span,
.about-hero span,
.projects-hero span,
.project-hero span,
.contact-hero span,
.project-badge{
    border-radius:10px !important;
    letter-spacing:.8px !important;
}

section,
.page-section,
.project-section,
.contact-section{
    padding-block:56px !important;
}

.section-card,
.contact-wrapper{
    border-radius:22px !important;
    padding:52px 34px !important;
    background:
        linear-gradient(135deg,rgba(255,255,255,.98),rgba(255,249,236,.98)) padding-box,
        linear-gradient(135deg,rgba(201,162,77,.45),rgba(16,42,67,.12)) border-box !important;
    border:1px solid transparent !important;
    box-shadow:0 22px 60px rgba(16,42,67,.12) !important;
    transition:transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
    position:relative;
}

.section-card::before,
.contact-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(135deg,rgba(255,255,255,.55),transparent 36%,rgba(201,162,77,.08));
}

.page-section > .container,
.project-section > .container,
.contact-section > .container,
.gallery-section > .container{
    display:block;
}

.section-card::before,
.section-card::after,
.gallery-section::before,
.gallery-section::after{
    display:block;
}

.section-card::after,
.gallery-section::before,
.gallery-section::after{
    display:none !important;
}

.section-title{
    margin-bottom:40px !important;
}

.section-title span,
.section-tag,
.eyebrow{
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.32),0 10px 24px rgba(16,42,67,.07);
}

.section-title h2,
.about-content h2,
.contact-form-box h2,
.map-box h2{
    letter-spacing:0 !important;
    text-wrap:balance;
}

.card,
.project-card,
.property-card,
.advantage-card,
.office-card,
.team-card,
.testimonial-card,
.detail-card,
.contact-form-box,
.map-box,
.why-item,
.stat,
.gallery-item{
    border-radius:18px !important;
    background:#fff !important;
    border:1px solid rgba(201,162,77,.24) !important;
    box-shadow:0 16px 42px rgba(16,42,67,.10) !important;
    transition:transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .42s var(--ease-out);
    position:relative;
    overflow:hidden;
}

.card::before,
.project-card::before,
.property-card::before,
.advantage-card::before,
.office-card::before,
.team-card::before,
.testimonial-card::before,
.detail-card::before,
.fact-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .42s var(--ease-out);
    z-index:2;
}

.card:hover::before,
.project-card:hover::before,
.property-card:hover::before,
.advantage-card:hover::before,
.office-card:hover::before,
.team-card:hover::before,
.testimonial-card:hover::before,
.detail-card:hover::before,
.fact-card:hover::before{
    transform:scaleX(1);
}

.card,
.project-card,
.property-card,
.advantage-card,
.office-card,
.team-card,
.testimonial-card,
.detail-card,
.why-item{
    height:100%;
}

.card:hover,
.project-card:hover,
.property-card:hover,
.advantage-card:hover,
.office-card:hover,
.team-card:hover,
.testimonial-card:hover,
.detail-card:hover,
.gallery-item:hover,
.why-item:hover{
    transform:translateY(-6px) !important;
    box-shadow:0 24px 58px rgba(16,42,67,.17) !important;
    border-color:rgba(201,162,77,.46) !important;
}

.card-content,
.project-content,
.team-info{
    background:linear-gradient(180deg,#fff 0%,#FFFCF5 100%) !important;
}

.card-content h3,
.project-content h3,
.property-card h3,
.advantage-card h4,
.office-card h3,
.team-info h3,
.fact-card h3{
    color:var(--primary);
}

.cards,
.project-cards,
.property-grid,
.advantages-grid,
.office-grid,
.team-grid,
.testimonial-grid,
.contact-details,
.gallery-grid,
.why-grid{
    align-items:stretch !important;
}

.cards,
.project-cards{
    grid-auto-rows:1fr;
}

.card,
.project-card,
.team-card,
.office-card,
.testimonial-card{
    display:flex;
    flex-direction:column;
}

.card-content,
.project-content,
.team-info,
.office-card div{
    flex:1;
}

.card-content,
.project-content{
    display:flex;
    flex-direction:column;
}

.card-content p,
.project-content p{
    flex:1;
}

.card img,
.project-img,
.team-card img,
.office-card img,
.gallery-grid img{
    width:100%;
    display:block;
}

.card img,
.project-img,
.team-card img,
.office-card img{
    aspect-ratio:16 / 10;
    height:230px !important;
    object-fit:cover;
    overflow:hidden;
    transition:transform .7s var(--ease-out), filter .7s var(--ease-out);
}

.card:hover img,
.project-card:hover .project-img img,
.team-card:hover img,
.office-card:hover img,
.gallery-grid img:hover,
.media-tile:hover img{
    transform:scale(1.055);
    filter:saturate(1.08) contrast(1.04);
}

.gallery-grid img,
.gallery-item img,
.media-tile img{
    transition:transform .7s var(--ease-out), filter .7s var(--ease-out);
}

.gallery-grid img{
    aspect-ratio:4 / 3;
    height:260px !important;
    object-fit:cover;
}

.about-grid,
.about-project,
.ceo-card,
.contact-wrapper{
    align-items:center !important;
}

.about-image img,
.about-img img{
    width:100%;
    aspect-ratio:4 / 3;
    height:380px !important;
    object-fit:cover;
}

.contact-form-box,
.map-box{
    min-width:0;
}

.form-group input,
.form-group textarea{
    display:block;
    transition:border-color .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth), background .25s var(--ease-smooth);
}

.form-group input:hover,
.form-group textarea:hover{
    border-color:rgba(201,162,77,.55);
}

.property-card,
.advantage-card,
.detail-card,
.contact-form-box,
.map-box{
    height:100%;
}

.property-card i,
.advantage-card i,
.office-card i,
.detail-icon,
.why-icon{
    border-radius:14px !important;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
    transition:transform .38s var(--ease-out), box-shadow .38s var(--ease-out);
}

.property-card:hover i,
.advantage-card:hover i,
.office-card:hover i,
.detail-card:hover .detail-icon,
.why-item:hover .why-icon{
    transform:translateY(-3px) rotate(-3deg) scale(1.04);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.45),0 12px 24px rgba(201,162,77,.22);
}

.about-image img,
.about-img img,
.ceo-img,
.gallery-grid img,
.footer-map,
.map-frame{
    border-radius:18px !important;
}

.investment-box{
    border-radius:20px !important;
    border:1px solid rgba(232,201,118,.18);
}

.investment-box li{
    border-radius:12px !important;
    background:rgba(255,255,255,.12) !important;
    transition:transform .3s var(--ease-out), background .3s var(--ease-out);
}

.investment-box li:hover{
    transform:translateX(5px);
    background:rgba(255,255,255,.17) !important;
}

.testimonial-card.featured{
    background:var(--gradient-premium) !important;
}

.project-roadmap{
    background:
        radial-gradient(circle at 12% 12%,rgba(201,162,77,.14),transparent 24%),
        linear-gradient(180deg,#FAF6EC 0%,#FFFFFF 100%);
}

.roadmap-card{
    overflow:hidden;
}

.roadmap-layout{
    display:grid;
    grid-template-columns:minmax(0,1.08fr) minmax(330px,.92fr);
    gap:32px;
    align-items:stretch;
}

.roadline-enhanced .roadmap-layout{
    display:none;
}

.roadline-tour{
    position:relative;
    max-width:1100px;
    margin:0 auto;
    padding:24px 0 14px;
}

.roadline-track{
    position:absolute;
    top:18px;
    bottom:18px;
    left:50%;
    width:4px;
    transform:translateX(-50%);
    border-radius:999px;
    background:linear-gradient(180deg,rgba(201,162,77,.18),var(--secondary),rgba(201,162,77,.18));
    box-shadow:0 0 0 6px rgba(201,162,77,.08),0 24px 70px rgba(11,32,53,.08);
    overflow:hidden;
}

.roadline-track::before,
.roadline-track::after{
    content:"";
    position:absolute;
    left:50%;
    width:100%;
    height:100%;
    transform:translateX(-50%);
    background:linear-gradient(180deg,transparent,rgba(255,255,255,.85),transparent);
    border-radius:999px;
    opacity:.55;
}

.roadline-track::after{
    width:18px;
    background:radial-gradient(circle,rgba(232,201,118,.34) 0 2px,transparent 3px);
    background-size:18px 28px;
    opacity:.8;
}

.roadline-items{
    position:relative;
    display:grid;
    gap:34px;
    z-index:2;
}

.roadline-item{
    position:relative;
    width:50%;
    min-height:118px;
    display:flex;
    align-items:flex-start;
}

.roadline-item.is-left{
    justify-self:start;
    padding-right:76px;
    justify-content:flex-end;
}

.roadline-item.is-right{
    justify-self:end;
    padding-left:76px;
    justify-content:flex-start;
}

.roadline-marker{
    position:absolute;
    top:18px;
    width:44px;
    height:44px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:var(--primary);
    background:var(--gradient-gold);
    border:4px solid #fff;
    box-shadow:0 14px 34px rgba(11,32,53,.20);
    font-size:13px;
    font-weight:900;
    line-height:1;
    z-index:4;
}

.roadline-item.is-left .roadline-marker{
    right:-22px;
}

.roadline-item.is-right .roadline-marker{
    left:-22px;
}

.roadline-panel{
    width:min(100%,390px);
    padding:24px;
    border-radius:20px;
    background:linear-gradient(180deg,#fff,#FFFCF5);
    border:1px solid rgba(201,162,77,.24);
    box-shadow:0 18px 48px rgba(16,42,67,.12);
    position:relative;
    overflow:hidden;
}

.roadline-panel::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:5px;
    background:linear-gradient(180deg,var(--secondary),var(--accent));
}

.roadline-panel span{
    display:block;
    color:#8A6416;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:8px;
}

.roadline-panel h3{
    color:var(--primary);
    font-size:23px;
    line-height:1.22;
    margin-bottom:16px;
}

.roadline-toggle{
    width:100%;
    min-height:46px;
    border:0;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 15px;
    background:var(--gradient-premium);
    color:#fff;
    cursor:pointer;
    font-weight:900;
    box-shadow:0 12px 28px rgba(16,42,67,.18);
}

.roadline-toggle i{
    transition:transform .28s var(--ease-out);
}

.roadline-item.open .roadline-toggle i{
    transform:rotate(180deg);
}

.roadline-dropdown{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .42s var(--ease-out), margin-top .42s var(--ease-out);
    margin-top:0;
}

.roadline-dropdown > *{
    overflow:hidden;
}

.roadline-item.open .roadline-dropdown{
    grid-template-rows:1fr;
    margin-top:16px;
}

.roadline-dropdown p{
    color:var(--text);
    line-height:1.7;
}

.roadline-media-strip{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-top:14px;
}

.roadline-media-strip img{
    width:100%;
    height:115px;
    object-fit:cover;
    border-radius:12px;
    border:1px solid rgba(201,162,77,.22);
}

.project-facts{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.fact-card,
.media-tile,
.route-map{
    background:#fff;
    border:1px solid rgba(201,162,77,.24);
    border-radius:18px;
    box-shadow:0 16px 42px rgba(16,42,67,.10);
    transition:transform .42s var(--ease-out), box-shadow .42s var(--ease-out), border-color .42s var(--ease-out);
}

.fact-card:hover,
.media-tile:hover{
    transform:translateY(-5px);
    box-shadow:0 24px 58px rgba(16,42,67,.16);
    border-color:rgba(201,162,77,.42);
}

.fact-card{
    padding:22px;
    min-height:168px;
    display:flex;
    flex-direction:column;
}

.fact-card i{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--gradient-gold);
    color:var(--primary);
    font-size:20px;
    margin-bottom:14px;
}

.fact-card span,
.media-label{
    display:block;
    color:#8A6416;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:5px;
}

.fact-card h3{
    color:var(--primary);
    font-size:20px;
    line-height:1.25;
    margin-bottom:6px;
}

.fact-card p{
    color:var(--text);
    line-height:1.6;
}

.roadmap-media{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:18px;
}

.media-tile{
    overflow:hidden;
    position:relative;
}

.media-tile img{
    width:100%;
    aspect-ratio:16 / 10;
    height:auto;
    object-fit:cover;
    display:block;
}

.media-tile:not(.media-video){
    min-height:100%;
}

.media-video{
    min-height:230px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    color:white;
    text-align:center;
    background:
        linear-gradient(rgba(16,42,67,.70),rgba(16,42,67,.82)),
        var(--roadmap-video-image, url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80"));
    background-size:cover;
    background-position:center;
    grid-column:1 / -1;
}

.media-video i{
    width:58px;
    height:58px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:var(--gradient-gold);
    color:var(--primary);
    font-size:22px;
    margin:0 auto 12px;
    animation:playPulse 1.9s ease-in-out infinite;
}

.media-video h3{
    font-size:22px;
    margin-bottom:6px;
}

.media-video p{
    color:rgba(255,255,255,.86);
    line-height:1.55;
}

.route-map{
    padding:28px;
    background:
        linear-gradient(180deg,#102A43,#0B2035);
    color:white;
    position:sticky;
    top:118px;
    align-self:start;
    min-width:0;
    box-shadow:0 24px 70px rgba(11,32,53,.22);
}

.route-map h3{
    font-size:26px;
    margin-bottom:8px;
}

.route-map > p{
    color:#CBD5E1;
    margin-bottom:24px;
}

.route-steps{
    list-style:none;
    padding:0;
    margin:0;
    position:relative;
}

.route-steps::before{
    content:"";
    position:absolute;
    left:17px;
    top:10px;
    bottom:10px;
    width:2px;
    background:linear-gradient(180deg,#E8C976,rgba(232,201,118,.2));
    transform-origin:top;
    animation:routeLineDraw 1.2s .35s var(--ease-out) both;
}

.route-steps li{
    display:grid;
    grid-template-columns:36px 1fr;
    gap:14px;
    position:relative;
    padding-bottom:20px;
}

.route-steps li:last-child{
    padding-bottom:0;
}

.route-dot{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    background:var(--gradient-gold);
    color:var(--primary);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:15px;
    line-height:1;
    text-align:center;
    padding:0;
    position:relative;
    z-index:1;
    overflow:hidden;
    box-shadow:0 0 0 0 rgba(232,201,118,.35);
    animation:routeDotPulse 2.4s ease-in-out infinite;
}

.route-steps b{
    display:block;
    color:#fff;
    font-size:17px;
    line-height:1.25;
}

.route-steps span{
    display:block;
    color:#CBD5E1;
    line-height:1.55;
    margin-top:3px;
}

.route-note{
    margin-top:22px;
    padding:14px 16px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.13);
    color:#E5E7EB;
    font-size:14px;
    line-height:1.6;
}

.footer{
    margin-top:0 !important;
}

.footer-logo{
    border-radius:12px !important;
}

.footer-social a,
.floating-whatsapp a{
    border-radius:14px !important;
}

.footer-contact span{
    border-radius:12px !important;
}

.reveal-on-scroll{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .75s var(--ease-out), transform .75s var(--ease-out);
    transition-delay:var(--reveal-delay,0ms);
    will-change:opacity,transform;
}

.reveal-on-scroll.revealed{
    opacity:1;
    transform:none;
}

.reveal-left{
    transform:translateX(-34px);
}

.reveal-right{
    transform:translateX(34px);
}

.reveal-scale{
    transform:translateY(20px) scale(.97);
}

.section-title.reveal-on-scroll{
    transform:translateY(18px);
}

.floating-whatsapp a{
    animation:floatButton 3s ease-in-out infinite;
}

.scroll-progress{
    position:fixed;
    left:0;
    top:0;
    height:4px;
    width:100%;
    transform:scaleX(0);
    transform-origin:left;
    background:linear-gradient(90deg,var(--secondary),var(--secondary-light),var(--accent));
    z-index:100000;
    box-shadow:0 0 18px rgba(201,162,77,.45);
}

.back-to-top{
    position:fixed;
    right:25px;
    bottom:104px;
    width:48px;
    height:48px;
    border:0;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:var(--gradient-premium);
    color:#fff;
    box-shadow:0 18px 38px rgba(16,42,67,.26);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:opacity .3s var(--ease-out), visibility .3s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    z-index:9998;
}

.back-to-top.visible{
    opacity:1;
    visibility:visible;
    transform:none;
}

.back-to-top:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 48px rgba(16,42,67,.34);
}

.lead-popup-locked{
    overflow:hidden;
}

.lead-popup-overlay{
    position:fixed;
    inset:0;
    z-index:100001;
    display:grid;
    place-items:center;
    padding:24px;
    background:rgba(11,32,53,.72);
    backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .32s var(--ease-out), visibility .32s var(--ease-out);
}

.lead-popup-overlay.visible{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.lead-popup{
    position:relative;
    width:min(520px,100%);
    max-height:min(92vh,720px);
    overflow:auto;
    padding:34px;
    border-radius:22px;
    background:
        radial-gradient(circle at 96% 0%,rgba(201,162,77,.16),transparent 32%),
        linear-gradient(180deg,#FFFFFF 0%,#FFFCF5 100%);
    border:1px solid rgba(232,201,118,.38);
    box-shadow:0 34px 90px rgba(0,0,0,.32);
    transform:translateY(18px) scale(.98);
    transition:transform .36s var(--ease-out);
}

.lead-popup-close{
    position:absolute;
    top:16px;
    right:16px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(16,42,67,.08);
    color:var(--primary);
    cursor:pointer;
    font-size:18px;
    transition:background .25s var(--ease-smooth), color .25s var(--ease-smooth), transform .25s var(--ease-smooth);
}

.lead-popup-close:hover,
.lead-popup-close:focus-visible{
    background:var(--primary);
    color:#fff;
    transform:rotate(90deg);
    outline:none;
}

.lead-popup-overlay.visible .lead-popup{
    transform:none;
}

.lead-popup-icon{
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--gradient-gold);
    color:var(--primary);
    font-size:24px;
    margin-bottom:18px;
    box-shadow:0 14px 28px rgba(201,162,77,.22);
}

.lead-popup-kicker{
    display:inline-block;
    color:#8A6416;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:8px;
}

.lead-popup h2{
    color:var(--primary);
    font-size:clamp(28px,4vw,38px);
    line-height:1.15;
    margin-bottom:10px;
}

.lead-popup p{
    color:var(--text);
    line-height:1.6;
}

.lead-popup-form{
    display:grid;
    gap:14px;
    margin-top:22px;
}

.lead-popup-form label{
    display:grid;
    gap:7px;
}

.lead-popup-form label span{
    color:var(--primary);
    font-size:14px;
    font-weight:800;
}

.lead-popup-form input,
.lead-popup-form select{
    width:100%;
    min-height:48px;
    border:1px solid rgba(201,162,77,.30);
    border-radius:12px;
    padding:12px 14px;
    background:#fff;
    color:var(--dark);
    outline:none;
    transition:border-color .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth);
}

.lead-popup-form input:focus,
.lead-popup-form select:focus{
    border-color:rgba(201,162,77,.72);
    box-shadow:0 0 0 4px rgba(201,162,77,.14);
}

.lead-popup-error{
    min-height:22px;
    color:#B42318 !important;
    font-size:14px;
    font-weight:800;
    margin:0;
}

.lead-popup-submit{
    min-height:50px;
    border:0;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:13px 18px;
    background:var(--gradient-premium);
    color:#fff;
    cursor:pointer;
    font-weight:900;
    box-shadow:0 16px 34px rgba(16,42,67,.22);
    transition:transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.lead-popup-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 46px rgba(16,42,67,.30);
}

@keyframes pageFadeIn{
    from{opacity:0}
    to{opacity:1}
}

@keyframes navDrop{
    from{opacity:0;transform:translate(-50%,-18px)}
    to{opacity:1;transform:translate(-50%,0)}
}

@keyframes heroContentRise{
    from{opacity:0;transform:translateY(34px)}
    to{opacity:1;transform:none}
}

@keyframes heroKenBurns{
    from{transform:scale(1)}
    to{transform:scale(1.07)}
}

@keyframes softGlow{
    from{filter:saturate(1)}
    to{filter:saturate(1.12)}
}

@keyframes playPulse{
    0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(232,201,118,.35)}
    50%{transform:scale(1.08);box-shadow:0 0 0 14px rgba(232,201,118,0)}
}

@keyframes routeLineDraw{
    from{transform:scaleY(0);opacity:.35}
    to{transform:scaleY(1);opacity:1}
}

@keyframes routeDotPulse{
    0%,100%{box-shadow:0 0 0 0 rgba(232,201,118,.32)}
    50%{box-shadow:0 0 0 8px rgba(232,201,118,0)}
}

@keyframes floatButton{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-6px)}
}

@media(max-width:1200px){
    .roadmap-layout{
        grid-template-columns:1fr;
    }

    .route-map{
        position:relative;
        top:auto;
    }
}

@media(max-width:980px){
    .roadline-track{
        left:38px;
    }

    .roadline-item,
    .roadline-item.is-left,
    .roadline-item.is-right{
        width:100%;
        justify-self:stretch;
        justify-content:flex-start;
        padding-left:100px;
        padding-right:0;
    }

    .roadline-item.is-left .roadline-marker,
    .roadline-item.is-right .roadline-marker{
        left:16px;
        right:auto;
    }

    .roadline-panel{
        width:100%;
    }
}

@media(max-width:992px){
    html{
        scroll-padding-top:105px;
    }

    header{
        top:10px !important;
        width:94% !important;
    }

    .nav{
        height:72px !important;
    }

    .brand img{
        height:52px !important;
    }

    .menu{
        top:84px !important;
        border-radius:16px !important;
    }

    .hamburger{
        border-radius:12px !important;
    }

    .about-grid,
    .about-project,
    .ceo-card,
    .contact-wrapper{
        align-items:stretch !important;
    }

    .project-facts{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:768px){
    .container{
        width:min(100% - 28px,1240px) !important;
    }

    section,
    .page-section,
    .project-section,
    .contact-section{
        padding-block:38px !important;
    }

    .hero{
        min-height:760px !important;
    }

    .hero,
    .about-hero,
    .projects-hero,
    .project-hero,
    .contact-hero{
        padding-top:118px !important;
        padding-bottom:72px !important;
        align-items:flex-start !important;
    }

    .about-hero,
    .projects-hero,
    .project-hero,
    .contact-hero{
        min-height:560px !important;
    }

    .about-hero,
    .contact-hero{
        min-height:440px !important;
        padding-bottom:56px !important;
    }

    .section-card,
    .contact-wrapper{
        padding:34px 18px !important;
        border-radius:18px !important;
    }

    .hero-actions,
    .hero-buttons{
        align-items:stretch !important;
    }

    .hero-actions a,
    .hero-buttons a,
    .submit-btn,
    .cta-btn{
        width:100%;
        justify-content:center;
    }

    .about-card,
    .ceo-content,
    .investment-box{
        padding:28px 20px !important;
        border-radius:18px !important;
    }

    .stats{
        grid-template-columns:1fr !important;
    }

    .roadmap-layout,
    .project-facts,
    .roadmap-media{
        grid-template-columns:1fr;
    }

    .route-map{
        position:relative;
        top:auto;
    }

    .media-tile img,
    .media-video{
        min-height:220px;
        height:auto;
    }

    .why-item{
        flex-direction:column;
    }

    .why-icon{
        min-width:56px !important;
        width:56px !important;
        height:56px !important;
    }

    .roadline-tour{
        padding-top:8px;
    }

    .roadline-track{
        display:block;
        left:22px;
        top:20px;
        bottom:20px;
    }

    .roadline-item,
    .roadline-item.is-left,
    .roadline-item.is-right{
        padding-left:58px;
    }

    .roadline-marker{
        position:absolute;
        left:0 !important;
        right:auto !important;
        top:12px;
        margin:0;
    }

    .roadline-item{
        display:block;
    }

    .lead-popup-overlay{
        padding:14px;
        align-items:end;
    }

    .lead-popup{
        width:100%;
        max-height:88vh;
        padding:26px 18px;
        border-radius:18px;
    }

    .lead-popup-icon{
        width:50px;
        height:50px;
        border-radius:14px;
        font-size:21px;
        margin-bottom:14px;
    }
}

@media(max-width:480px){
    .hero h1,
    .about-hero h1,
    .projects-hero h1,
    .project-hero h1,
    .contact-hero h1{
        font-size:34px !important;
    }

    .section-title h2,
    .about-content h2{
        font-size:29px !important;
    }

    .card-content,
    .project-content,
    .property-card,
    .advantage-card,
    .detail-card{
        padding:22px !important;
    }

    .section-card,
    .contact-wrapper{
        padding:28px 14px !important;
    }

    .fact-card,
    .route-map{
        padding:20px !important;
    }

    .route-steps li{
        grid-template-columns:32px 1fr;
        gap:12px;
    }

    .route-dot{
        width:32px;
        height:32px;
        min-width:32px;
        font-size:14px;
    }

    .route-steps::before{
        left:15px;
    }
}

@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
    }

    .reveal-on-scroll{
        opacity:1 !important;
        transform:none !important;
    }
}
