*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Inter',Arial,sans-serif;
    background:#ffffff;
    color:#1f2937;
    line-height:1.7;
}
img{
    max-width:100%;
    height:auto;
    display:block;
}
a{
    text-decoration:none;
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
/* Header */
.site-header,
header{
    background:#071d35;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 25px rgba(0,0,0,.18);
}
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}
.logo{
    font-family:'Playfair Display',serif;
    color:#ffffff;
    font-size:27px;
    font-weight:700;
}
.logo span{
    color:#d4af37;
}
.main-nav a,
nav a{
    color:#ffffff;
    margin-left:24px;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}
.main-nav a:hover,
.main-nav a.active,
nav a:hover,
nav a.active{
    color:#d4af37;
}
/* Hero */
.hero{
    min-height:70vh;
    background:
    linear-gradient(rgba(7,29,53,.88),rgba(7,29,53,.88)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    text-align:center;
    color:#ffffff;
    padding:110px 0;
}
.premium-hero{
    min-height:86vh;
    background:
    linear-gradient(rgba(7,29,53,.92),rgba(7,29,53,.88)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80');
    background-size:cover;
    background-position:center;
}
.hero-content,
.hero .container{
    max-width:950px;
}
.eyebrow{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:800;
    color:#d4af37;
    margin-bottom:12px;
}
.eyebrow.dark{
    color:#b08921;
}
.hero h1{
    font-family:'Playfair Display',serif;
    font-size:64px;
    line-height:1.12;
    margin-bottom:22px;
}
.hero p,
.hero-text{
    font-size:20px;
    color:#e5e7eb;
    max-width:820px;
    margin:0 auto 18px;
}
.hero-actions{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:22px;
}
/* Buttons */
.btn,
button{
    display:inline-block;
    background:#d4af37;
    color:#071d35;
    padding:15px 32px;
    border-radius:6px;
    font-weight:800;
    transition:.3s;
    border:1px solid #d4af37;
    cursor:pointer;
    font-family:inherit;
}
.btn:hover,
button:hover{
    background:#c49b22;
    border-color:#c49b22;
}
.btn-outline{
    background:transparent;
    color:#ffffff;
}
.btn-outline:hover{
    background:#d4af37;
    color:#071d35;
}
/* Sections */
section{
    padding:90px 0;
}
.section-title{
    text-align:center;
    max-width:780px;
    margin:0 auto 55px;
}
.section-title h2,
.about-content h2,
.card h2,
.cta-box h2{
    font-family:'Playfair Display',serif;
    color:#071d35;
    font-size:42px;
    line-height:1.2;
    margin-bottom:18px;
}
.section-title p{
    color:#6b7280;
}
.card{
    background:#ffffff;
    padding:42px;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
}
.card p,
.about-content p{
    color:#4b5563;
    margin-bottom:16px;
}
/* About */
.about-grid,
.premium-about-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.about-image img,
.image-box img,
.premium-image-panel img{
    border-radius:18px;
    box-shadow:0 20px 50px rgba(15,23,42,.16);
}
.premium-about-content h2{
    font-family:'Playfair Display',serif;
    color:#071d35;
    font-size:46px;
    line-height:1.15;
    margin-bottom:22px;
}
.premium-about-content p{
    color:#4b5563;
    margin-bottom:18px;
}
.premium-list{
    margin-top:28px;
    display:grid;
    gap:15px;
}
.premium-list div{
    background:#f7f9fc;
    border-left:4px solid #d4af37;
    padding:18px 20px;
    border-radius:10px;
}
.premium-list strong{
    display:block;
    color:#071d35;
    margin-bottom:5px;
}
.premium-list span{
    color:#6b7280;
    font-size:14px;
}
/* Trust Strip */
.trust-strip{
    background:#f7f9fc;
    padding:28px 0;
    border-bottom:1px solid #e5e7eb;
}
.trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    text-align:center;
}
.trust-grid strong{
    display:block;
    color:#071d35;
    font-size:18px;
}
.trust-grid span{
    color:#6b7280;
    font-size:14px;
}
.premium-trust-strip{
    background:#071d35;
    padding:0;
}
.premium-trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}
.premium-trust-grid div{
    padding:34px 30px;
    border-right:1px solid rgba(255,255,255,.12);
}
.premium-trust-grid span{
    color:#d4af37;
    font-weight:800;
    font-size:13px;
}
.premium-trust-grid strong{
    display:block;
    color:#ffffff;
    font-size:20px;
    margin:8px 0;
}
.premium-trust-grid p{
    color:#d1d5db;
    font-size:14px;
}
/* Purpose / Vision */
.vision,
.premium-purpose-section,
.premium-values-section,
.representatives-section{
    background:#f7f9fc;
}
.vision-grid,
.premium-purpose-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}
.info-box,
.premium-purpose-card{
    background:#ffffff;
    padding:35px;
    border-radius:14px;
    border-left:5px solid #d4af37;
    box-shadow:0 10px 25px rgba(15,23,42,.06);
}
.premium-purpose-card{
    border-left:none;
    border-top:5px solid #d4af37;
    border-radius:18px;
}
.info-box h3,
.premium-purpose-card h3{
    color:#071d35;
    font-size:24px;
    margin-bottom:12px;
}
.info-box p,
.premium-purpose-card p{
    color:#4b5563;
}
.premium-purpose-card span{
    color:#b08921;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
}
/* Services */
.services-section{
    background:#f7f9fc;
}
.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}
.service-card{
    background:#ffffff;
    padding:34px;
    border-radius:15px;
    border-top:5px solid #d4af37;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    transition:.3s;
}
.service-card:hover{
    transform:translateY(-7px);
}
.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:20px;
}
.service-card h3{
    color:#071d35;
    font-size:23px;
    margin-bottom:10px;
}
.service-card p{
    color:#4b5563;
    margin-bottom:8px;
}
.service-card strong{
    color:#071d35;
}
/* Representatives */
.representative-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
}
.representative-card,
.premium-rep-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #eef2f7;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    transition:.3s;
}
.representative-card:hover,
.premium-rep-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(15,23,42,.12);
}
.representative-card img,
.premium-rep-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    object-position:center top;
}
.rep-content{
    padding:22px;
}
.rep-content span{
    display:inline-block;
    background:#f8f4e8;
    color:#b08921;
    font-size:12px;
    font-weight:800;
    padding:6px 12px;
    border-radius:20px;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:.5px;
}
.rep-content h3{
    font-family:'Playfair Display',serif;
    color:#071d35;
    font-size:22px;
    margin-bottom:8px;
}
.rep-content p{
    color:#64748b;
    font-size:15px;
    line-height:1.6;
}
/* Values */
.values{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}
.value-box{
    background:#ffffff;
    padding:32px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    transition:.3s;
}
.value-box:hover{
    transform:translateY(-6px);
}
.value-box span{
    display:inline-flex;
    width:46px;
    height:46px;
    align-items:center;
    justify-content:center;
    background:#071d35;
    color:#d4af37;
    border-radius:50%;
    font-weight:800;
    margin-bottom:18px;
}
.value-box h3{
    color:#071d35;
    font-size:22px;
    margin-bottom:10px;
}
.value-box p{
    color:#4b5563;
}
/* Why Us */
.why-us{
    background:#071d35;
    color:#ffffff;
}
.section-title.light h2{
    color:#ffffff;
}
.section-title.light p{
    color:#d1d5db;
}
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
}
.feature-box{
    background:rgba(255,255,255,.06);
    padding:32px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
}
.feature-box span{
    display:inline-flex;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#d4af37;
    color:#071d35;
    font-weight:800;
    margin-bottom:16px;
}
.feature-box h3{
    color:#ffffff;
    margin-bottom:10px;
}
.feature-box p{
    color:#d1d5db;
}
/* Contact */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:35px;
}
.contact-info,
.contact-form{
    background:#ffffff;
    padding:38px;
    border-radius:15px;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
}
.contact-info h2,
.contact-form h2{
    font-family:'Playfair Display',serif;
    color:#071d35;
    font-size:34px;
    margin-bottom:20px;
}
.info-box{
    margin-top:18px;
}
label{
    display:block;
    margin-bottom:8px;
    font-weight:700;
    color:#071d35;
}
input,
textarea,
select{
    width:100%;
    padding:14px 15px;
    border:1px solid #d1d5db;
    border-radius:8px;
    margin-bottom:18px;
    font-family:inherit;
    font-size:15px;
}
input:focus,
textarea:focus,
select:focus{
    outline:none;
    border-color:#d4af37;
    box-shadow:0 0 0 3px rgba(212,175,55,.15);
}
/* CTA */
.cta,
.cta-section{
    background:#071d35;
    color:#ffffff;
    text-align:center;
}
.premium-cta{
    background:
    linear-gradient(rgba(7,29,53,.94),rgba(7,29,53,.94)),
    url('https://images.unsplash.com/photo-1589391886645-d51941baf7fb?auto=format&fit=crop&w=1800&q=80');
    background-size:cover;
    background-position:center;
}
.cta h2,
.cta-box h2{
    color:#ffffff;
}
.cta p{
    max-width:720px;
    margin:0 auto 25px;
    color:#e5e7eb;
}
.cta-box{
    background:#071d35;
    border-radius:18px;
    padding:45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    border-left:6px solid #d4af37;
}
.cta-box p{
    color:#d1d5db;
    max-width:720px;
}
.center-action{
    text-align:center;
    margin-top:38px;
}
/* Footer */
.site-footer,
footer{
    background:#06182c;
    color:#ffffff;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1.3fr;
    gap:35px;
    padding:55px 0;
}
.site-footer h3,
.site-footer h4{
    color:#ffffff;
    margin-bottom:15px;
}
.site-footer p,
.site-footer a,
footer p,
footer a{
    color:#d1d5db;
    font-size:14px;
}
.site-footer a{
    display:block;
    margin-bottom:8px;
}
footer{
    text-align:center;
    padding:30px 15px;
}
footer p{
    margin:6px 0;
}
.site-footer a:hover,
footer a:hover{
    color:#d4af37;
}
.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.12);
    padding:20px 10px;
}
.footer-bottom a{
    display:inline;
    color:#d4af37;
}
/* Tables */
table{
    width:100%;
    border-collapse:collapse;
}
table th,
table td{
    border:1px solid #e5e7eb;
    padding:12px;
}
/* Mobile */
@media(max-width:768px){
    .navbar{
        flex-direction:column;
        gap:14px;
    }
    .main-nav,
    nav{
        text-align:center;
    }
    .main-nav a,
    nav a{
        display:inline-block;
        margin:5px 9px;
        font-size:14px;
    }
    .hero{
        min-height:70vh;
        padding:90px 0;
    }
    .hero h1{
        font-size:40px;
    }
    .hero p,
    .hero-text{
        font-size:17px;
    }
    .trust-grid,
    .premium-trust-grid,
    .about-grid,
    .premium-about-layout,
    .footer-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }
    .premium-trust-grid div{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.12);
    }
    .cta-box{
        flex-direction:column;
        text-align:center;
    }
    .section-title h2,
    .about-content h2,
    .premium-about-content h2,
    .card h2,
    .cta-box h2,
    .cta h2{
        font-size:34px;
    }
    section{
        padding:70px 0;
    }
    .card,
    .contact-info,
    .contact-form{
        padding:30px;
    }
    .service-card img,
    .representative-card img,
    .premium-rep-card img{
        height:200px;
    }
}