/* VARIABLES */

:root{

    --primary:#022545;
    --primary-light:#0b3b6d;
    --gold:#c7992d;

    --white:#ffffff;
    --off-white:#f8f9fb;
    --light:#eef3f7;

    --text:#1f2937;
    --gray:#6b7280;
    --border:#dbe3ea;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --radius:8px;

    --transition:.3s ease;

    --container:1200px;

}


/* RESET */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'DM Sans',sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.7;

}

img{

    display:block;
    width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button,
input{

    font-family:'DM Sans',sans-serif;

}


/* GLOBAL */

.container{

    width:min(92%,var(--container));
    margin:auto;

}

section{

    padding:50px 0;

}

.section-title{

    max-width:700px;
    margin:0 auto 60px;
    text-align:center;

}

.section-title span{

    display:inline-block;

    color:var(--gold);

    font-size:.82rem;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:700;

    margin-bottom:12px;

}

.section-title h2{

    font-family:'Playfair Display',serif;

    color:var(--primary);

    font-size:2.7rem;

    margin-bottom:18px;

}

.section-title p{

    color:var(--gray);

    font-size:1.05rem;

}


/* BUTTONS */

.btn-primary{

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

    padding:15px 34px;

    background:var(--gold);

    color:var(--white);

    font-weight:700;

    border-radius:var(--radius);

    transition:var(--transition);

}

.btn-primary:hover{

    background:#b4861f;

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-flex;

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

    padding:15px 34px;

    border:2px solid white;

    color:white;

    border-radius:var(--radius);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:white;

    color:var(--primary);

}

/* INDEX - HEADER */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    box-shadow:0 2px 20px rgba(0,0,0,.05);

    z-index:999;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:88px;

}

.logo img{

    width:250px;

    height:auto;

    display:block;

}

.navbar ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

    position:relative;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:var(--transition);

}

.navbar a:hover{

    color:var(--gold);

}

.navbar a:hover::after{

    width:100%;

}

.btn-nav{

    background:var(--gold);

    color:white;

    padding:14px 24px;

    border-radius:var(--radius);

    font-weight:700;

    transition:var(--transition);

}

.btn-nav:hover{

    background:#b4861f;

    transform:translateY(-2px);

}



/* INDEX - HERO */

.hero{

    position:relative;

    padding:140px 0 80px;

    display:flex;

    align-items:center;

    background:linear-gradient(rgba(2,37,69,0.953),rgba(2,37,69,0.953));

    overflow:hidden;

}

.hero .container{

    display:grid;

    grid-template-columns:1.0fr .9fr;

    gap:60px;

    align-items:center;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:white;

    padding:10px 18px;

    border-radius:50px;

    font-size:.8rem;

    letter-spacing:2px;

    margin-bottom:22px;

}

.hero h1{

    color:white;

    font-family:'Playfair Display',serif;

    font-size:4rem;

    line-height:1.15;

    margin-bottom:24px;

}

.hero p{

    color:rgba(255,255,255,.92);

    font-size:1.1rem;

    margin-bottom:35px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.hero-features{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    color:white;

    font-weight:600;

}

.hero-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(8px);

    border:1px solid rgba(199,153,45,.7);

    padding:30px;

    border-radius:14px;

    margin-top:0px;

}

.hero-form-title{

    color:white;

    font-size:1.8rem;

    font-family:'Playfair Display',serif;

    margin-bottom:8px;

}

.hero-card p{

    color:rgba(255,255,255,.85);

    margin-bottom:18px;

}

.hero-card form{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.hero-card input,

.hero-card textarea{

    width:100%;

    padding:13px 16px;

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

    color:white;

    border-radius:8px;

    font-size:.95rem;

    transition:.3s;

}

.hero-card input::placeholder,

.hero-card textarea::placeholder{

    color:rgba(255,255,255,.65);

}

.hero-card input:focus,

.hero-card textarea:focus{

    outline:none;

    border-color:var(--gold);

}

.hero-card textarea{

    min-height:80px;

    resize:none;

}

.hero-card button{

    border:none;

    background:var(--gold);

    color:white;

    padding:14px;

    border-radius:8px;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.hero-card button:hover{

    background:#b4861f;

}

.hero-card small{

    display:block;

    text-align:center;

    margin-top:12px;

    color:rgba(255,255,255,.75);

}

/* INDEX - TRUST BAR */

.trust-bar{

    background:var(--primary);

    padding:28px 0;

}

.trust-bar .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.trust-item{

    color:white;

    text-align:center;

    font-size:1rem;

    font-weight:600;

    letter-spacing:.5px;

}



/* INDEX - WHY US */

.why-us{

    background:var(--off-white);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.why-card{

    background:white;

    border-radius:14px;

    padding:40px 28px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    text-align:center;

    border:1px solid rgba(0,0,0,.04);

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card .icon{

    width:78px;

    height:78px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(199,153,45,.12);

    border-radius:50%;

    font-size:2rem;

}

.why-card h3{

    color:var(--primary);

    font-family:'Playfair Display',serif;

    font-size:1.45rem;

    margin-bottom:15px;

}

.why-card p{

    color:var(--gray);

    font-size:.98rem;

    line-height:1.8;

}



/* INDEX - PROCESS */

.process{

    background:white;

}

.process-grid{

    display:flex;

    flex-direction:column;

    gap:10px;

    max-width:550px;

    margin:0 auto;

}

.step{

    display:flex;

    align-items:center;

    gap:18px;

    text-align:left;

    padding:15px 25px;

}

.number{

    width:48px;

    height:48px;

    flex-shrink:0;

    margin:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--gold);

    color:white;

    font-size:1.1rem;

    font-weight:700;

}

.step h3{

    color:var(--primary);

    font-family:'Playfair Display',serif;

    margin-bottom:8px;

    font-size:1.2rem;

}

.step p{

    color:var(--gray);

    font-size:.95rem;

    line-height:1.6;

}



/* INDEX - STATS */

.stats{

    background:linear-gradient(rgba(2,37,69,.92),rgba(2,37,69,.92));
}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.stat{

    text-align:center;

}

.stat h2{

    color:var(--gold);

    font-size:3.3rem;

    font-family:'Playfair Display',serif;

    margin-bottom:12px;

}

.stat p{

    color:white;

    font-size:1.05rem;

}



/* INDEX - SERVICE AREAS */

.areas{

    background:var(--off-white);

}

.areas-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.areas-grid div{

    background:white;

    padding:22px;

    text-align:center;

    border-radius:10px;

    font-weight:600;

    color:var(--primary);

    transition:var(--transition);

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.areas-grid div:hover{

    background:var(--gold);

    color:white;

    transform:translateY(-5px);

}

/* INDEX - CTA */

.cta{

    background:white;

    text-align:center;

}

.cta h2{

    color:var(--primary);

    font-family:'Playfair Display',serif;

    font-size:2.8rem;

    margin-bottom:18px;

}

.cta p{

    max-width:700px;

    margin:0 auto 35px;

    color:var(--gray);

    font-size:1.05rem;

}



/* INDEX - FAQ */

.faq{

    background:var(--off-white);

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq details{

    background:white;

    margin-bottom:18px;

    border-radius:10px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    overflow:hidden;

}

.faq summary{

    padding:22px 28px;

    cursor:pointer;

    font-weight:700;

    color:var(--primary);

    list-style:none;

    position:relative;

    transition:var(--transition);

}

.faq summary::-webkit-details-marker{

    display:none;

}

.faq summary::after{

    content:"+";

    position:absolute;

    right:28px;

    font-size:1.4rem;

    color:var(--gold);

    transition:var(--transition);

}

.faq details[open] summary::after{

    content:"−";

}

.faq summary:hover{

    background:#f8fafc;

}

.faq details p{

    padding:0 28px 24px;

    color:var(--gray);

    line-height:1.8;

}



/* INDEX - FINAL CTA */

.final-cta{

    background:

    linear-gradient(rgba(2,37,69,.92),rgba(2,37,69,.92));

    text-align:center;

}

.final-cta h2{

    color:white;

    font-family:'Playfair Display',serif;

    font-size:3rem;

    margin-bottom:18px;

}

.final-cta p{

    color:rgba(255,255,255,.92);

    max-width:720px;

    margin:0 auto 35px;

}

/* FOOTER */

.footer{

    background:#011a30;

    padding:70px 0 35px;

}

.footer .container{

    display:grid;

    gap:35px;

    justify-items:center;

}

.footer-logo img{

    width:260px;

}

.footer-links{

    display:flex;

    gap:35px;

    flex-wrap:wrap;

    justify-content:center;

}

.footer-links a{

    color:white;

    transition:var(--transition);

    font-weight:500;

}

.footer-links a:hover{

    color:var(--gold);

}

.footer-areas{

    text-align:center;

    padding:18px 0;

    border-top:1px solid rgba(255,255,255,.1);

    border-bottom:1px solid rgba(255,255,255,.1);

    width:100%;

}

.footer-areas-title{

    font-size:.75rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:var(--gold);

    margin-bottom:8px;

    display:block;

}

.footer-areas p{

    color:rgba(255,255,255,.55);

    font-size:.85rem;

    line-height:1.6;

}

.footer-contact{

    text-align:center;

    color:rgba(255,255,255,.82);

    line-height:2;

}

.footer-copy{

    color:rgba(255,255,255,.55);

    border-top:1px solid rgba(255,255,255,.08);

    width:100%;

    padding-top:28px;

    text-align:center;

    margin-top:10px;

}

/* UTILITIES */

::selection{

    background:var(--gold);

    color:white;

}

input,
button,
a{

    transition:var(--transition);

}

/* ABOUT */

/* Hero */

.hero-about{

    padding:160px 0 100px;

    background:#f8f9fb;

}

.hero-about .container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-about .hero-tag{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    background:#c7992d;

    color:#fff;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:2px;

    border-radius:50px;

    text-transform:uppercase;

}

.hero-about h1{

    font-size:3.3rem;

    color:#022545;

    margin-bottom:24px;

    line-height:1.15;

}

.hero-about p{

    color:#5d6674;

    font-size:1.08rem;

    line-height:1.9;

    max-width:620px;

}

.hero-about img{

    width:100%;

    border-radius:8px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    object-fit:cover;

}



/* Story */

.about-story{

    padding:100px 0;

    background:#fff;
    text-align:center;

}

.about-grid{

    display:block;

    max-width:800px;

    margin:0 auto;

}
.section-tag{

    display:inline-block;

    margin-bottom:15px;

    color:#c7992d;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.about-story h2{

    color:#022545;

    font-size:2.7rem;

    margin-bottom:28px;

}

.about-story p{

    color:#5d6674;

    line-height:1.9;

    margin-bottom:18px;

    font-size:1.05rem;

}

/* ABOUT - Mission */

.mission{

    background:#f8f9fb;

    text-align:center;

}

.mission .container{

    max-width:900px;

}

.mission h2{

    color:#022545;

    font-size:2.7rem;

    margin:18px 0 25px;

}

.mission p{

    color:#5d6674;

    font-size:1.08rem;

    line-height:1.9;

}



/* ABOUT - Values */

.values{

    background:#fff;

}

.values h2{

    color:#022545;

    font-size:2.7rem;

    margin:18px 0 55px;

    text-align:center;

}

.values .section-tag{

    display:block;

    text-align:center;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.value-card{

    background:#fff;

    padding:40px 30px;

    border-radius:14px;

    border:1px solid #e7edf3;

    text-align:center;

    transition:all .35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.value-card:hover{

    transform:translateY(-10px);

    border-color:#c7992d;

}

.value-card h3{

    color:#022545;

    font-size:1.5rem;

    margin-bottom:18px;

}

.value-card p{

    color:#5d6674;

    line-height:1.8;

}



/* ABOUT - Why Trust */

.why-about{

    background:#f8f9fb;

}

.why-about h2{

    color:#022545;

    font-size:2.7rem;

    margin:18px 0 55px;

    text-align:center;

}

.why-about .section-tag{

    display:block;

    text-align:center;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.trust-card{

    background:#fff;

    padding:35px;

    border-radius:14px;

    border-left:5px solid #c7992d;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.trust-card h3{

    color:#022545;

    margin-bottom:15px;

    font-size:1.45rem;

}

.trust-card p{

    color:#5d6674;

    line-height:1.8;

}
/* ABOUT - Service Areas */

.service-area{

    background:#ffffff;

    text-align:center;

}

.service-area h2{

    color:#022545;

    font-size:2.7rem;

    margin:18px 0 18px;

}

.section-intro{

    max-width:720px;

    margin:0 auto 50px;

    color:#5d6674;

    line-height:1.8;

}

.area-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.area-list span{

    padding:16px 28px;

    background:#f5f7fa;

    color:#022545;

    border-radius:50px;

    border:1px solid #e4e9ef;

    font-weight:600;

    transition:all .3s ease;

}

.area-list span:hover{

    background:#022545;

    color:#ffffff;

    border-color:#022545;

}



/* ABOUT - CTA */

.cta{

    background:linear-gradient(rgba(2,37,69,.94),rgba(2,37,69,.94));

    text-align:center;

}

.cta h2{

    color:#ffffff;

    font-size:3rem;

    margin-bottom:18px;

}

.cta p{

    max-width:720px;

    margin:0 auto 35px;

    color:rgba(255,255,255,.9);

    line-height:1.9;

}

.cta .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

}



/* ABOUT - Small Adjustments */

.about-story img,

.hero-about img{

    object-fit:cover;

}

.about-story h2,

.mission h2,

.values h2,

.why-about h2,

.service-area h2{

    font-family:'Playfair Display',serif;

}

.value-card,

.trust-card,

.area-list span{

    transition:.35s ease;

}

/* BUYERS */

/* Hero */

.buyers-hero{

    padding:160px 0 100px;

    background:#022545;

}

.buyers-hero-content{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.buyers-hero h1{

    font-family:'Playfair Display',serif;

    color:#ffffff;

    font-size:3.4rem;

    line-height:1.15;

    margin:22px 0;

}

.buyers-hero p{

    color:#ffffff;

    line-height:1.9;

    font-size:1.08rem;

    margin-bottom:35px;

}

.buyers-hero-image img{

    width:100%;

    border-radius:16px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}



/* Benefits */

.buyers-benefits{

    background:#ffffff;

}

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-heading span{

    display:inline-block;

    color:#c7992d;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.82rem;

    font-weight:700;

    margin-bottom:14px;

}

.section-heading h2{

    font-family:'Playfair Display',serif;

    color:#022545;

    font-size:2.7rem;

    margin-bottom:18px;

}

.section-heading p{

    color:#5d6674;

    line-height:1.8;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.benefit-card{

    background:#fff;

    padding:40px 32px;

    border-radius:14px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s ease;

}

.benefit-card:hover{

    transform:translateY(-10px);

}

.benefit-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#022545;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    font-weight:700;

}

.benefit-card h3{

    color:#022545;

    margin-bottom:16px;

    font-size:1.45rem;

}

.benefit-card p{

    color:#5d6674;

    line-height:1.8;

}



/* Process */

.investment-process{

    background:#f8f9fb;

}

.investment-process .process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.process-step{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:14px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.step-number{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#c7992d;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    font-weight:700;

    font-size:1.4rem;

}

.process-step h3{

    color:#022545;

    margin-bottom:15px;

}

.process-step p{

    color:#5d6674;

    line-height:1.8;

}


/* BUYERS - FAQ */

.buyers-faq{

    background:#f8f9fb;

}

.buyers-faq .faq-list{

    max-width:900px;

    margin:auto;

}

.buyers-faq details{

    background:#fff;

    border-radius:12px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.buyers-faq summary{

    padding:22px 28px;

    cursor:pointer;

    list-style:none;

    font-weight:700;

    color:#022545;

    position:relative;

}

.buyers-faq summary::-webkit-details-marker{

    display:none;

}

.buyers-faq summary::after{

    content:"+";

    position:absolute;

    right:28px;

    color:#c7992d;

    font-size:1.5rem;

}

.buyers-faq details[open] summary::after{

    content:"−";

}

.buyers-faq p{

    padding:0 28px 25px;

    color:#5d6674;

    line-height:1.8;

}



/* BUYERS - CTA */

.buyers-cta{

    background:

    linear-gradient(rgba(2,37,69,.93),rgba(2,37,69,.93));

    text-align:center;

}

.buyers-cta h2{

    color:#ffffff;

    font-family:'Playfair Display',serif;

    font-size:3rem;

    margin-bottom:20px;

}

.buyers-cta p{

    color:rgba(255,255,255,.9);

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.8;

}



/* BUYERS - SMALL ADJUSTMENTS */

.buyers-hero img,

.process-step,

.benefit-card{

    transition:.35s ease;

}

.process-step:hover,

.benefit-card:hover{

    transform:translateY(-8px);

}

.process-step:hover .step-number{

    transform:scale(1.08);

}

.step-number{

    transition:.3s ease;

}

.buyers-hero img{

    object-fit:cover;

}

/* REFERRALS */

/* Hero */

/* REFERRALS */

/* Hero */

.referrals-hero{

    padding:140px 0 80px;

    background:#022545;

    text-align:left;

}

.referrals-hero-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.referrals-hero-text{

    flex:1;

}

.referrals-hero h1{

    font-family:'Playfair Display',serif;

    font-size:3rem;

    color:#ffffff;

    margin:14px 0 20px;

    line-height:1.15;

    max-width:100%;

}

.referrals-hero p{

    color:rgba(255,255,255,.8);

    line-height:1.8;

    margin-bottom:0;

    max-width:100%;

}

.reward-list{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:10px;

    margin-top:20px;

}

.reward-list li{

    color:rgba(255,255,255,.9);

    font-weight:500;

}

.referrals-hero-card{

    background:rgba(255,255,255,.06);

    border:2px solid var(--gold);

    border-radius:16px;

    padding:40px 45px;

    text-align:center;

    min-width:350px;

}

.reward-tag{

    color:rgba(255,255,255,.7);

    font-size:.85rem;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:8px;

}

.referrals-hero-card h2{

    font-family:'Playfair Display',serif;

    color:var(--gold);

    font-size:3.5rem;

    margin:0 0 4px;

}

.referrals-hero-card > p{

    color:rgba(255,255,255,.7);

    margin-bottom:25px;

}

.referrals-hero-card .btn-primary{

    display:block;

    margin-bottom:15px;

}

.reward-email{

    color:rgba(255,255,255,.5);

    font-size:.82rem;

    margin:0;

}



/* Intro */

.referrals-intro{

    background:#ffffff;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.step-card{

    background:#ffffff;

    border-radius:14px;

    padding:35px 28px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s ease;

}

.step-card:hover{

    transform:translateY(-8px);

}

.step-card h3{

    color:#022545;

    margin-bottom:15px;

    font-size:1.35rem;

}

.step-card p{

    color:#5d6674;

    line-height:1.8;

}



/* Form Section */

.referral-form-section{

    background:#f8f9fb;

}



/* Small Adjustments */

.referrals-hero .section-tag{

    margin-bottom:10px;

}

.step-card .step-number{

    margin-bottom:22px;

}

/* SITUATIONS */

.situations{

    background:#f8f9fb;

}

.situations-grid{

    display:flex;

    flex-direction:column;

    gap:12px;

    max-width:1000px;

    margin:0 auto;

}

.situation-card{

    background:#ffffff;

    padding:18px 35px;

    border-radius:12px;

    box-shadow:0 6px 20px rgba(0,0,0,.05);

    display:flex;

    align-items:center;

    gap:0;

}

.situation-card h3{

    color:#022545;

    font-size:1.05rem;

    white-space:nowrap;

    min-width:200px;

    margin:0;

    padding-right:24px;

}

.situation-card p{

    color:#5d6674;

    line-height:1.6;

    font-size:.95rem;

    margin:0;

    border-left:2px solid var(--gold);

    padding-left:24px;

}

.situation-card:hover{

    transform:translateY(-6px);

}

.situation-card h3{

    color:#022545;

    font-size:1.05rem;

    width:220px;

    min-width:220px;

    margin:0;

    padding-right:24px;

}

.situation-card p{

    color:#5d6674;

    line-height:1.8;

}

/* PROPERTY TYPES */

.property-types{

    background:#ffffff;

}

.property-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.property-card{

    background:#022545;

    color:#ffffff;

    padding:35px 25px;

    text-align:center;

    border-radius:12px;

    transition:.3s ease;

}

.property-card:hover{

    transform:translateY(-6px);

}

.property-card h3{

    margin:0;

    font-size:1.3rem;

    color:#ffffff;

}

/* COMPARISON */

.comparison{

    background:#f8f9fb;

}

.comparison-table{

    background:#ffffff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.comparison-header,

.comparison-row{

    display:grid;

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

}

.comparison-header{

    background:#022545;

    color:#ffffff;

    font-weight:700;

}

.comparison-header div,

.comparison-row div{

    padding:22px;

}

.comparison-row{

    border-bottom:1px solid #e5e7eb;

}

.comparison-row:last-child{

    border-bottom:none;

}

.comparison-row div:first-child{

    font-weight:700;

    color:#022545;

}

/* CONTACT */

/* HERO */

.contact-hero{

    padding:140px 0 70px;

    background:#022545;

    text-align:center;

}

.contact-hero .section-tag{

    color:var(--gold);

    font-size:.9rem;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

    display:block;

}

.contact-hero h1{

    font-family:'Playfair Display',serif;

    font-size:3.5rem;

    color:white;

    margin-bottom:20px;

}

.contact-hero p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:auto;

    font-size:1.1rem;

    line-height:1.8;

}



/* INFO */

.contact-info{

    background:#ffffff;

    padding:50px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.contact-card{

    background:#f8f9fb;

    padding:30px;

    border-radius:12px;

    text-align:center;

}

.contact-card h3{

    color:#022545;

    margin-bottom:12px;

}

.contact-card p{

    margin:0;

    color:#5d6674;

}



/* FORM */

.contact-form-section{

    background:#f8f9fb;

    padding:20px 0 70px;

}

.contact-form-section .bp-wrap{

    margin:0 auto;

}

.contact-form-section .bp-logo-bar{

    display:none;

}

.contact-form-section .bp-title{

    text-align:center;

}

.contact-form-section .bp-sub{

    text-align:center;

}




/* FORMS */

.bp-wrap{

    max-width:850px;

    margin-top:0px;

    margin-bottom:20px;

    margin-left:auto;

    margin-right:auto;

    padding:40px;

}

.bp-logo-bar{

    text-align:center;

    margin-bottom:30px;

    padding-bottom:20px;

    border-bottom:1px solid rgba(199,153,45,0.25);

}

.bp-logo-bar img{

    width:250px;

    height:auto;

}

.bp-title{

    font-family:'Playfair Display', serif;

    font-size:2.2rem;

    color:#022545;

    margin-bottom:10px;

}

.bp-sub{

    color:#6b7280;

    margin-bottom:35px;

    font-size:1rem;

    line-height:1.7;

}

.bp-section{

    font-size:.85rem;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#c7992d;

    margin:30px 0 15px;

    padding-bottom:10px;

    border-bottom:1px solid rgba(199,153,45,0.30);

}

.bp-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.bp-group{

    margin-bottom:20px;

}

.bp-group label{

    display:block;

    margin-bottom:8px;

    color:#022545;

    font-weight:600;

}

.req{

    color:#c7992d;

}

.opt{

    color:#6b7280;

    font-weight:400;

}

.bp-group input,

.bp-group select,

.bp-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #d8d8d8;

    border-radius:4px;

    font-size:1rem;

    font-family:'DM Sans', sans-serif;

    box-sizing:border-box;

    background:#fafafa;

}

.bp-group textarea{

    min-height:140px;

    resize:vertical;

}

.bp-group input:focus,

.bp-group select:focus,

.bp-group textarea:focus{

    outline:none;

    border-color:#022545;

    background:#ffffff;

}

.bp-divider{

    height:1px;

    background:#e5e7eb;

    margin:25px 0;

}

.bp-btn{

    width:100%;

    border:none;

    padding:18px;

    background:#022545;

    color:#ffffff;

    font-weight:700;

    font-size:1rem;

    cursor:pointer;

    border-radius:4px;

    text-transform:uppercase;

    letter-spacing:1px;

    transition:.3s;

}

.bp-btn:hover{

    background:#03315d;

}

.bp-note{

    text-align:center;

    margin-top:15px;

    color:#6b7280;

    font-size:.9rem;

}

.bp-success{

    text-align:center;

    padding:50px 20px;

}


/* MOBILE MENU */

.menu-toggle{

    display:none;

    font-size:2rem;

    cursor:pointer;

    color:var(--primary);

}

.investment-process .process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    max-width:100%;

    margin:0;

}

.investment-process .process-grid .process-step{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:14px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    display:block;

}


.footer-social{

    display:flex;

    gap:20px;

    justify-content:center;

    align-items:center;

}

.footer-social a{

    opacity:.7;

    transition:.3s;

}

.footer-social a:hover{

    opacity:1;

    transform:translateY(-3px);

}