:root {
    --navy: #001d3d;
    --charcoal: #1b263b;
    --silver: #8e9aaf;
    --gold-accent: #cc952e;
    --light-bg: #f4f7f9;
    --white: #ffffff;
    --text-main: #2b2d42;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
.site-header {
    padding: 20px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--navy);
    opacity: 85%;
}

.flex-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.header-left { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.logo { 
    height: 100px; 
    width: auto; 
}

.header-text { 
    display: flex; 
    flex-direction: column; 
}

.header-name { 
    font-weight: 800; 
    color: var(--navy); 
    font-size: 0.95rem; 
    letter-spacing: 1px; 
}

.header-tagline { 
    font-size: 0.7rem; 
    color: var(--navy); 
    text-transform: uppercase; 
    font-weight: 600; 
    letter-spacing: 1.5px; 
}

.cta-header {
    background: var(--navy);
    color: var(--white);
    padding: 10px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    border: 1px solid var(--navy);
    transition: var(--transition);
    border-radius: 20px;
}

.cta-header:hover {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(0, 29, 61, 0.15);
}

/* Hero Section (Light Background) */
.hero-split { 
    padding: 60px 0 100px; 
    background-color: var(--light-bg); 
    border-bottom: 1px solid #e9ecef;
}


.hero-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 60px; 
    align-items: center; 
}

.eyebrow { 
    color: var(--gold-accent); 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-size: 0.7rem; 
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--gold-accent);
}

h1 { 
    font-size: 4rem; 
    line-height: 1.1; 
    color: var(--navy); 
    margin-bottom: 30px; 
    font-weight: 800; 
}

.silver-text { 
    color: var(--silver); 
    font-weight: 300; 
}

.hero-intro { 
    font-size: 1.2rem; 
    color: #4a4e69; 
    margin-bottom: 40px; 
    max-width: 500px; 
}

/* Add to style.css */
.cert-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cert-badge {
    height: 100px; /* Adjust based on original image aspect ratio */
    width: auto;
    transition: var(--transition);
}

.cert-block:hover .cert-badge {
    filter: none; /* Pops into color on hover */
}

.cert-block span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--charcoal);
}

.hero-actions { 
    display: flex; 
    gap: 20px; 
}

/* Reusable Button Logic */
.btn {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    border-radius: 20px;
}

.btn-primary { 
    background: var(--navy); 
    color: var(--white); 
    padding: 20px 35px; 
    border: 2px solid var(--navy);
}

.btn-primary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 18px 33px;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

/* Portrait Blending */
.melani-img { 
    width: 100%; 
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%), 
                        linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%), 
                linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

/* Partnership Section (Pure White Background) */
.partnership-pillar { 
    padding: 140px 0; 
    background-color: var(--white);
}

.pillar-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 100px; 
    align-items: center; 
}

.section-heading { 
    font-size: 2.8rem; 
    color: var(--navy); 
    margin-bottom: 20px; 
}

.section-heading em { 
    font-style: italic; 
    color: var(--silver); 
    font-weight: 300; 
}

.accent-line { 
    width: 60px; 
    height: 4px; 
    background: var(--gold-accent); 
    margin-bottom: 30px; 
}

.workspace-img { 
    width: 100%; 
    box-shadow: 30px 30px 0 var(--light-bg); 
}

/* Testimonials (Deep Navy Background) */
.testimonials { 
    padding: 120px 0; 
    background: var(--navy); 
    color: var(--white); 
}

.section-title { 
    text-align: center; 
    margin-bottom: 80px; 
    font-weight: 300; 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    font-size: 1rem; 
}

.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 50px; 
}

.test-card { 
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 4px;
    transition: var(--transition);
}

.test-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

.test-card::before { 
    content: "“"; 
    position: absolute; 
    top: -40px; 
    left: 20px; 
    font-size: 5rem; 
    color: var(--gold-accent); 
    opacity: 0.3; 
}

.quote { 
    font-size: 1.05rem; 
    margin-bottom: 30px; 
    line-height: 1.8; 
    font-weight: 400; 
}

.attribution { 
    font-weight: 700; 
    color: var(--silver); 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

/* Footer Section (Back to White) */
.site-footer { 
    padding: 120px 0 60px; 
    text-align: center; 
    background: var(--white); 
    border-top: 1px solid #edf2f4;
}

.footer-cta h2 { 
    font-size: 3rem; 
    margin-bottom: 50px; 
    color: var(--navy); 
}

.footer-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
}

.btn-footer-call { 
    background: var(--navy); 
    color: var(--white); 
    padding: 22px 40px; 
}

.btn-footer-call:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

.btn-footer-book { 
    border: 2px solid var(--navy); 
    color: var(--navy); 
    padding: 20px 38px; 
}

.btn-footer-book:hover {
    background: var(--light-bg);
    transform: scale(1.02);
}

.footer-bottom { 
    margin-top: 100px; 
    padding-top: 40px; 
    border-top: 1px solid #edf2f4; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.8rem; 
    color: var(--silver); 
}

.footer-email, .footer-social a { 
    color: var(--navy); 
    text-decoration: none; 
    font-weight: 700; 
}

.footer-links a, .footer-email {
    position: relative;
    transition: color 0.3s ease;
}

.footer-links a::after, .footer-email::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover::after, .footer-email:hover::after { 
    width: 100%; 
}

/* Responsive */
/* Locate this section at the bottom of style.css */
@media (max-width: 900px) {
    h1 { font-size: 2.8rem; }
    
    .hero-grid, 
    .pillar-grid, 
    .testimonial-grid, 
    .footer-buttons, 
    .footer-bottom { 
        grid-template-columns: 1fr; 
        flex-direction: column; 
        /* REMOVE THIS LINE: text-align: center; */
    }
    
    .hero-actions { 
        flex-direction: column;
        /* Ensure buttons stay left-aligned */
        align-items: flex-start; 
    }
    
    .hero-intro {
        /* Prevent the max-width from making left-aligned text look lopsided */
        max-width: 100%; 
    }

    .eyebrow {
        /* Keep the accent line aligned to the left */
        justify-content: flex-start;
    }
}


/* Update your .test-card or add to a new feature class */
.test-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px); /* This gives that premium glass feel */
    border: 1px solid rgba(142, 154, 175, 0.2); /* Subtle silver border */
    box-shadow: 0 8px 32px 0 rgba(0, 29, 61, 0.2);
}

@media (max-width: 900px) {
    /* ... your existing mobile styles ... */


}