:root {
    --gold: #C5A059;
    --gold-hover: #A38445;
    --white: #ffffff;
    /* Updated to the deep green accent from the screenshot */
    --dark-green: #0B1412; 
    --glass: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-green);
    color: var(--white);
    overflow-x: hidden;
}

/* --- Navbar Styling --- */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    /* Matching the dark green header from the image */
    background-color: var(--dark-green);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px; /* Reduced gap to fit all items */
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.apply-btn {
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #142622; /* Forest green hover */
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* --- Dropdown Styling --- */
.dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11, 20, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    min-width: 280px;
    list-style: none !important;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-top: none;
    z-index: 1000;
}
.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu { 
    display: block; 
}
.dropdown-menu li { 
    padding: 12px 25px; 
    border-bottom: none;
}
.dropdown-menu li::before {
    content: none !important;
    display: none !important;
}
.dropdown-menu a {
    color: var(--white);
    font-size: 0.8rem;
    display: block;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dropdown-menu a:hover { 
    color: var(--gold); 
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/couples/happy-couple-hugging-over-natural-background_Cliparto-4724653-Small.jpg') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark green mask to match original design style */
    background: rgba(11, 20, 18, 0.75); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    margin-top: 80px; /* Offset for fixed navbar */
}

.award-badge {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--gold); /* Gold title like the screenshot */
}

h1 span {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-subtext {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-green);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: #142622; /* Forest green hover */
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background-color: #142622; /* Forest green hover */
    color: var(--gold);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-links {
        display: none; /* You'll want a hamburger menu for mobile later */
    }
}


/* --- LUXURY EDITORIAL WHITE SECTION --- */

.service-detail-luxury {
    background-color: #FFFFFF; /* High contrast white */
    padding: 140px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    color: #0B1412;
    font-family: 'Playfair Display', serif;
}

.luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asymmetric split */
    gap: 80px;
    align-items: start;
}

.gold-accent-subtitle {
    display: block;
    text-transform: uppercase;
    color: #C5A059;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.editorial-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    color: #0B1412;
    font-weight: 700;
}

.gold-text {
    color: #C5A059;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* CONTENT STYLING */
.luxury-content-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lead-paragraph {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #0B1412;
    font-weight: 500;
    border-left: 3px solid #C5A059;
    padding-left: 30px;
}

.supporting-text {
    font-family: 'Inter', sans-serif; /* Clean sans-serif for long text */
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.integrity-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-style: italic;
    font-size: 0.95rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .luxury-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .lead-paragraph {
        font-size: 1.3rem;
    }
}

/* --- Global Section Styles --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 20px;
}

.alternate-bg {
    background-color: #0F1D1A; /* Subtle shift from the main dark green */
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 25px;
}

h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 30px;
}

h2 { font-size: 3rem; }
h3 { font-size: 2.2rem; }

p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* --- Luxury Quote Styling --- */
.luxury-quote {
    border-left: 2px solid var(--gold);
    padding-left: 30px;
    margin: 50px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--white);
}

/* --- Modern Audience Section --- */
.audience-section {
    text-align: center;
    background: linear-gradient(rgba(11, 20, 18, 0.85), rgba(11, 20, 18, 0.9)), url('../images/couples/happy-couple-buying-car-in-auto-show-or-salon_Cliparto-4867093-Small.webp') center/cover no-repeat;
}

.audience-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.luxury-tag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 50px auto;
    max-width: 900px;
}

.luxury-tag {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(197, 160, 89, 0.4); /* Faded gold border */
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.luxury-tag:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
    color: var(--gold);
}

.highlight-text-modern {
    margin-top: 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.highlight-text-modern span {
    display: block;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    margin-top: 10px;
}

/* Responsive adjust for tags */
@media (max-width: 768px) {
    .luxury-tag {
        padding: 10px 20px;
        font-size: 0.75rem;
        width: 100%; /* Stack on small mobile */
    }
}

/* --- Bespoke Card Grid (01-04 Sequence) --- */
.luxury-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 40px;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 60px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    background: rgba(197, 160, 89, 0.03);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.07;
    pointer-events: none;
}

.emphasized {
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 20px;
    margin-top: auto; /* Pushes to bottom of card for consistency */
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
}

/* Luxury List Styling */
.luxury-list {
    list-style: none;
    margin: 25px 0;
}

.luxury-list li {
    padding: 12px 0 12px 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    opacity: 0.9;
}

.luxury-list li::before {
    content: '✦';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* --- Responsive Layout --- */
@media (max-width: 850px) {
    .luxury-card-grid {
        grid-template-columns: 1fr; /* Stack into single column on mobile */
    }
}
/* --- The Focus Box (Final Steps) --- */
.focus-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    padding: 80px 60px;
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, rgba(11, 20, 18, 0.9), rgba(20, 38, 34, 0.9)), url('../images/couples/man-with-wristwatch-driving-car_Cliparto-5370836-Small.jpg') center/cover no-repeat;
    position: relative;
}

/* --- Membership Highlight Section --- */
.membership-highlight {
    padding: 120px 0;
    background: linear-gradient(rgba(11, 20, 18, 0.9), rgba(11, 20, 18, 0.95)), url('../images/couples/happy-couple-with-car-in-auto-show-or-salon_Cliparto-5454371-Small.jpg') center/cover no-repeat fixed;
    text-align: center;
}

.membership-star-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 40px;
    border: 1px solid rgba(197, 160, 89, 0.3); /* Subtle gold frame */
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

/* The Central Star Divider */
.star-divider {
    color: var(--gold);
    font-size: 1.8rem;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-green);
    padding: 0 20px;
}

.membership-star-box h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.bespoke-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 40px 0;
    line-height: 1.4;
}

/* The "Quality over Quantity" Stamp */
.quality-stamp {
    display: inline-block;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 15px 40px;
    margin-bottom: 40px;
}

.quality-stamp span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0.8;
}

/* Luxury Button Style */
.gold-btn-outline {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.gold-btn-outline:hover {
    background: var(--gold);
    color: var(--dark-green);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

/* Responsive adjust */
@media (max-width: 768px) {
    .membership-star-box {
        padding: 60px 20px;
        margin: 0 15px;
    }
    .membership-star-box h3 {
        font-size: 1.8rem;
    }
}

/* --- Why Choose Us Grid --- */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.usp-luxury-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.usp-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s ease;
}

.usp-card:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.usp-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.usp-card p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-bottom: 0;
}

.final-statement {
    text-align: center;
    margin-top: 100px;
}

.final-statement p {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
}

.final-statement span {
    color: var(--gold);
    font-style: italic;
    display: block;
}

/* --- Founder Section --- */
.flex-founder {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.founder-image {
    flex: 1;
    position: sticky;
    top: 120px;
}

.image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border: 1px solid var(--gold);
    position: relative;
    z-index: 2;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.founder-text { flex: 1.5; }

.signature {
    margin-top: 60px !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.signature span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 10px;
    color: var(--white);
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .usp-luxury-grid { grid-template-columns: repeat(3, 1fr); }
    .luxury-feature { flex-direction: column; gap: 60px; }
}

@media (max-width: 850px) {
    .luxury-card-grid { grid-template-columns: 1fr; }
    .flex-founder { flex-direction: column; }
    .founder-image { position: static; margin-bottom: 60px; }
    .usp-luxury-grid { grid-template-columns: 1fr 1fr; }
    h2 { font-size: 2.2rem; }
    .focus-box { padding: 40px 20px; }
}

@media (max-width: 480px) {
    .usp-luxury-grid { grid-template-columns: 1fr; }
}

/* --- REFINED LUXURY MINIMALIST DESIGN --- */

.premium-white-expertise {
    background-color: #FFFFFF;
    padding: 100px 0;
    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    font-family: 'Playfair Display', serif;
    overflow-x: hidden;
}

.full-page-container {
    width: 85% !important; /* Narrower container for better focus */
    max-width: 1400px !important; /* Capped width to keep it elegant, not giant */
    margin: 0 auto;
}

/* EDITORIAL HEADER */
.editorial-header {
    text-align: center;
    margin-bottom: 70px;
}

.gold-accent-line {
    display: block;
    text-transform: uppercase;
    color: #C5A059;
    letter-spacing: 3px;
    font-size: 0.75rem; /* Smaller, more refined */
    font-weight: 500;
    margin-bottom: 12px;
}

.main-title-dark {
    color: #0B1412;
    font-size: 2.8rem; /* Scaled down from the "giant" size */
    margin-bottom: 20px;
    font-weight: 600;
}

.sub-lead-dark {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif; /* Cleaner font for body */
}

/* THE GRID SYSTEM */
.expertise-grid-fluid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px; /* Tighter gaps for a cleaner look */
    width: 100%;
}

/* LUXURY CARDS - REFINED */
.luxury-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px 40px; /* Reduced padding for better proportions */
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    min-height: 380px; /* Shorter cards */
    text-align: left;
}

/* THE FOREST GREEN HOVER EFFECT */
.luxury-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 4px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.luxury-card:hover .luxury-card-img {
    filter: brightness(0.85);
}
.luxury-card:hover {
    background: #0B1412; /* Your deep Forest Green/Black color */
    border-color: #0B1412;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Change text colors on hover */
.luxury-card:hover h3, 
.luxury-card:hover p, 
.luxury-card:hover .card-number {
    color: #FFFFFF !important;
}

.luxury-card:hover .icon-wrap {
    color: #C5A059; /* Keeps icon gold against green */
}

.card-number {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 2.5rem; /* Smaller and subtle */
    color: rgba(0, 0, 0, 0.03);
    font-weight: 700;
    transition: 0.4s;
}

.icon-wrap {
    color: #C5A059;
    font-size: 1.5rem; /* Smaller icon */
    margin-bottom: 25px;
    transition: 0.4s;
}

.luxury-card h3 {
    color: #0B1412;
    font-size: 1.4rem; /* More professional title size */
    margin-bottom: 18px;
    font-weight: 600;
    transition: 0.4s;
}

.luxury-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem; /* Smaller body text */
    margin-bottom: auto;
    transition: 0.4s;
}

.luxury-link {
    text-decoration: none;
    color: #C5A059;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-top: 30px;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.luxury-card:hover .luxury-link {
    color: #C5A059;
    border-bottom: 1px solid #C5A059;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .expertise-grid-fluid { grid-template-columns: repeat(2, 1fr); }
    .main-title-dark { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .premium-white-expertise { width: 100%; margin: 0; left: 0; padding: 60px 0; }
    .expertise-grid-fluid { grid-template-columns: 1fr; }
    .full-page-container { width: 90% !important; }
}

/* --- WHAT WE STAND FOR: LUXURY REDESIGN --- */
/* --- WHAT WE STAND FOR: EDGE-TO-EDGE FIX --- */

.values-section {
    /* Forces the background to span the full viewport width regardless of parents */
    background-color: #0B1412; 
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    padding: 120px 0;
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
}

/* Internal wrapper to keep the text centered and aligned with the rest of your site */
.values-container {
    max-width: 1200px; /* Adjust this to match your site's standard width */
    margin: 0 auto;
    padding: 0 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-bottom: 80px;
    text-align: left;
}

/* Ensure body doesn't cause a horizontal scrollbar */
body {
    overflow-x: hidden;
}

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-bottom: 80px;
}

.value-item {
    display: flex;
    gap: 25px;
    transition: 0.4s ease;
    padding: 20px;
    border-left: 1px solid rgba(197, 160, 89, 0.1); /* Subtle gold left border */
}

.value-item:hover {
    border-left: 1px solid #C5A059; /* Brightens on hover */
    transform: translateX(10px);
}

.value-number {
    font-size: 0.85rem;
    color: #C5A059;
    font-weight: 700;
    letter-spacing: 2px;
    padding-top: 5px;
}

.value-content h3 {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif; /* Cleaner body font */
}

/* VISION FOOTER */
.vision-footer {
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-footer p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.vision-footer strong {
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .main-title-light { font-size: 2.2rem; }
    .value-item:hover { transform: none; }
}

/* --- FULL-PAGE EDGE-TO-EDGE MEMBERSHIP FORM --- */

.application-section {
    background-color: #FFFFFF;
    padding: 140px 0;
    
    /* --- THE FIX: Break out of any parent containers --- */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* -------------------------------------------------- */
    
    color: #0B1412;
}

/* Internal wrapper to keep content centered and safe from edges */
.application-section .luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: block; /* Overriding previous flex if necessary */
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* Sidebar Styling */
.application-info {
    position: sticky;
    top: 120px;
}

.gold-accent-subtitle {
    display: block;
    text-transform: uppercase;
    color: #C5A059;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.editorial-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.application-lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
}

/* Form Fields */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    border: none;
    border-bottom: 1px solid rgba(11, 20, 18, 0.15);
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 0; /* Prevents mobile rounding */
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-bottom: 1px solid #C5A059;
    padding-left: 10px; /* Subtle "nudge" effect on focus */
}

/* Submit Button */
.submit-btn-gold {
    background-color: #0B1412;
    color: #FFFFFF;
    border: none;
    padding: 22px 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: fit-content;
    margin-top: 20px;
}

.submit-btn-gold:hover {
    background-color: #C5A059;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Contact Details */
.contact-footer-minimal {
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.luxury-link {
    color: #C5A059;
    text-decoration: none;
    font-weight: 600;
}

.direct-contact {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 700;
}

/* Prevent horizontal scroll on the whole page */
body {
    overflow-x: hidden;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .application-grid { grid-template-columns: 1fr; gap: 60px; }
    .application-info { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .editorial-title-dark { font-size: 2.8rem; }
}

/* --- HEADQUARTERS: DEEP EMERALD THEME --- */

.headquarters-section {
    background-color: #0B1412; /* Deep Emerald/Black Green */
    /* Break out of parent containers to go full-bleed */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.hq-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    width: 100%;
}

.hq-content {
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0B1412;
}

.editorial-title-light {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.gold-accent-subtitle {
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.hq-address {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* GOLD BUTTON */
.hq-map-btn {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid #C5A059;
    color: #C5A059;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.hq-map-btn:hover {
    background-color: #C5A059;
    color: #0B1412;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.hq-footer-notes {
    margin-top: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* THE MAP CONTAINER */
.hq-map-container {
    width: 100%;
    height: 100%;
}

.hq-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* Luxury filter to match the dark theme */
    filter: grayscale(0.5) contrast(1.1) brightness(0.8);
    transition: all 0.6s ease;
}

.hq-map-container:hover iframe {
    filter: grayscale(0) brightness(1);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hq-split-grid { grid-template-columns: 1fr; }
    .hq-content { padding: 80px 40px; }
    .hq-map-container { height: 450px; }
}

/* In your index.css */
.headquarters-section, 
.map-section {
    margin-bottom: 0; /* No gap before footer */
}

/* Footer */

/* --- FULL STRETCH & CLEANUP --- */

/* Kill horizontal scroll and bottom white space */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.hseia-footer {
    background-color: #0B1412; /* Deep Emerald Green */
    color: #FFFFFF;
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
    
    /* THE STRETCH: Forces breakout of parent containers */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
    margin-bottom: 0 !important;
    padding-bottom: 40px;
    display: block;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* 4 Columns horizontal */
    gap: 40px;
    margin-bottom: 60px;
}

/* --- LOGO & MISSION --- */
.footer-logo {
    font-family: 'Playfair Display', serif;
    color: #C5A059;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-mission {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- HEADINGS & LINKS (No Blue Hyperlinks) --- */
.footer-heading {
    color: #C5A059;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none; /* Removes underline */
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #C5A059;
}

/* --- CONTACT TEXT --- */
.contact-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-gold {
    color: #C5A059;
    font-weight: 600;
    margin-top: 5px;
}

/* --- SOCIAL MEDIA FIX --- */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059 !important; /* Force gold color */
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background-color: #C5A059;
    color: #0B1412 !important;
}

/* --- BOTTOM COPYRIGHT --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* --- RESPONSIVE FIX (Stacks ONLY on small screens) --- */
@media (max-width: 850px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* --- RECOGNITION / AWARDS SECTION --- */
.recognition-section {
    padding: 100px 0;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recognition-item {
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.recognition-item:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.recognition-item img {
    max-height: 100px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.recognition-item:hover img {
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .recognition-grid {
        grid-template-columns: 1fr;
    }
}

/* --- VALUES & VISION SECTION --- */
.values-section {
    background: linear-gradient(180deg, #0B1412 0%, #142622 100%);
    padding: 120px 0;
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-4px);
}

.value-item:hover::before {
    opacity: 1;
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.value-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.vision-footer {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.vision-footer p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.vision-footer strong {
    color: var(--gold);
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Prevent any extra scroll after footer */
.hseia-footer:last-child {
    margin-bottom: 0;
    padding-bottom: 40px;
}

body > *:last-child {
    margin-bottom: 0;
}