/* ===== CSS Variables - Modern Hacienda ===== */
:root {
    --deep-teal: #0E5E4B;
    --bright-teal: #1FAE9A;
    --gold: #C3A76B;
    --warm-beige: #F6F4F1;
    --warm-gray: #ECE8E1;
    --gray: #6F7782;
    --charcoal: #202124;
    --white: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Montserrat', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--warm-beige);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--deep-teal);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-teal);
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--deep-teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0a4a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 94, 75, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-teal);
    border: 2px solid var(--deep-teal);
}

.btn-secondary:hover {
    background-color: var(--deep-teal);
    color: var(--white);
}

.btn-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(246, 244, 241, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--warm-gray);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 0;
    height: 0;
    border-left: 10px solid var(--gold);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

.logo-text strong {
    font-weight: 800;
    color: var(--deep-teal);
}

.logo-text span {
    font-weight: 600;
    color: var(--deep-teal);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

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

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    font-size: 0.875rem;
    font-weight: 600;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--charcoal);
    background: transparent;
    border: 1px solid var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-dropdown-toggle:hover {
    border-color: var(--deep-teal);
    color: var(--deep-teal);
}

.lang-dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 4px;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--white);
    border: 1px solid var(--warm-gray);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
}

.lang-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--charcoal);
    transition: all 0.2s ease;
}

.lang-dropdown-menu a:hover {
    background: var(--warm-beige);
    color: var(--deep-teal);
}

.lang-dropdown-menu a.active {
    color: var(--deep-teal);
    font-weight: 700;
}

/* Legacy support */
.lang-switch {
    display: flex;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.lang-switch a {
    padding: 6px 10px;
    border-radius: 4px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.lang-switch a:hover {
    color: var(--deep-teal);
}

.lang-switch a.active {
    background: var(--deep-teal);
    color: var(--white);
}

.nav-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(195, 167, 107, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 640px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 640px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--warm-gray);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray);
}

.trust-item span {
    font-size: 1.25rem;
}

/* ===== Page Hero (for inner pages) ===== */
.page-hero {
    padding: 140px 0 60px;
    background: var(--white);
}

.page-hero .hero-eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.page-hero h1 {
    margin-bottom: 24px;
    max-width: 800px;
}

.page-hero .subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 640px;
    line-height: 1.7;
}

/* About Page Hero */
.about-hero {
    padding: 140px 0 80px;
    background: var(--beige);
}

.about-hero-content {
    max-width: 800px;
}

.about-hero h1 {
    margin-bottom: 24px;
}

.about-hero .subtitle {
    margin-bottom: 32px;
}

.about-hero .btn {
    margin-bottom: 40px;
}

.about-trust {
    max-width: 700px;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-white {
    background: var(--white);
}

.section-teal {
    background: var(--deep-teal);
}

.section-teal h2,
.section-teal h3 {
    color: var(--white);
}

.section-teal .section-title {
    color: var(--white);
}

.section-beige {
    background: var(--warm-beige);
}

/* ===== Problem Section ===== */
.problem-content {
    max-width: 800px;
}

.problem-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== Two Paths Section ===== */
.paths-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.paths-intro p {
    font-size: 1.1rem;
    color: var(--gray);
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.path-card {
    padding: 48px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--warm-gray);
    transition: all 0.3s ease;
}

.path-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.path-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.path-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ===== Why Me Section ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    padding: 32px;
    background: var(--warm-beige);
    border-radius: 12px;
}

.section-white .why-card {
    background: var(--warm-beige);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--deep-teal);
}

.why-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== Services Preview ===== */
.services-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--warm-gray);
    transition: all 0.3s ease;
}

.section:not(.section-white) .service-card {
    background: var(--white);
}

.section-white .service-card {
    background: var(--warm-beige);
}

.service-card:hover {
    border-color: var(--deep-teal);
}

.service-card h4 {
    font-size: 1.25rem;
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.service-card .meta {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.service-card .btn {
    margin-top: 16px;
}

/* ===== Content Section (for inner pages) ===== */
.content-section {
    max-width: 800px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    margin-top: 48px;
    margin-bottom: 16px;
}

/* ===== Feature List ===== */
.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid var(--warm-gray);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--deep-teal);
    font-weight: 700;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--warm-gray);
}

.section-white .testimonial-card {
    background: var(--warm-beige);
}

.testimonial-card blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-teal);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--deep-teal);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.cta-section .btn-primary:hover {
    background: #d4b97a;
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--deep-teal);
}

/* ===== Contact Form ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--warm-beige);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--warm-gray);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--deep-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.contact-method-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method-text p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text strong,
.footer-brand .logo-text span {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .paths-grid,
    .why-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .page-hero {
        padding: 120px 0 40px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 16px;
    }
    
    .path-card {
        padding: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .lang-switch {
        display: none;
    }
}

/* ===== Services Preview Section ===== */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-group h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.service-group-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Ensure text visibility on teal sections */
.section-teal .service-group h3,
.section-teal .service-group-desc {
    color: rgba(255, 255, 255, 0.9);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card .flag,
.service-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.service-card .timeline {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 12px;
    font-weight: 500;
}

/* Services Subtitle */
.services-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-teal);
    margin: 32px 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-teal .services-subtitle {
    color: var(--white);
}

/* ===== Pillars Grid (Why Me Section) ===== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.pillar {
    text-align: center;
    padding: 24px;
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pillar h3 {
    font-size: 1.25rem;
    color: var(--deep-teal);
    margin-bottom: 12px;
}

.pillar p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== Service Hero Badge ===== */
.service-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.section-white .service-hero-badge {
    background: var(--warm-beige);
    color: var(--deep-teal);
}

/* ===== Large Flags and Icons (Services Page) ===== */
.flag-large,
.icon-large {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

/* ===== Contact Icons ===== */
.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* ===== Footer Location ===== */
.footer-location {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
}

/* ===== Testimonials Grid ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial,
.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--warm-gray);
}

.section-white .testimonial,
.section-white .testimonial-card {
    background: var(--warm-beige);
}

.testimonial-text,
.testimonial-card blockquote {
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-card blockquote {
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-teal);
}

.testimonial-author span,
.testimonial-role {
    font-weight: 400;
    color: var(--gray);
    display: block;
    font-size: 0.9rem;
}

/* ===== Path Cards (Two Paths Section) ===== */
.paths-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: var(--gray);
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.path-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--warm-gray);
    text-align: center;
}

.path-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ===== Phases Grid (Wealth Architecture) ===== */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.phase-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--warm-gray);
    position: relative;
}

.phase-number {
    width: 48px;
    height: 48px;
    background: var(--deep-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.phase-card h3 {
    color: var(--deep-teal);
    margin-bottom: 12px;
}

.phase-deliverable {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--warm-gray);
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== Note Box ===== */
.note-box {
    background: var(--warm-beige);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    margin: 32px 0;
}

.placeholder-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* ===== Section Intro ===== */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===== Service Card Large ===== */
.service-card-large {
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--warm-gray);
    margin-bottom: 24px;
}

.service-card-large h4 {
    color: var(--deep-teal);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* ===== Service Meta & Note ===== */
.service-meta {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-note {
    background: var(--warm-beige);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
}

/* ===== Service Section Header ===== */
.service-section-header {
    margin-bottom: 24px;
}

.service-section-header h3 {
    color: var(--deep-teal);
    margin-bottom: 8px;
}

.service-section-intro {
    color: var(--gray);
    margin-bottom: 24px;
}

/* ===== Contact Grid ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-option {
    background: var(--warm-beige);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.contact-option h3 {
    color: var(--deep-teal);
    margin-bottom: 12px;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ===== Contact Info Grid ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-info-item {
    text-align: center;
    padding: 24px;
}

/* ===== Info Block ===== */
.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    color: var(--deep-teal);
    margin-bottom: 12px;
}

/* ===== Intro Text ===== */
.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 32px;
}

/* ===== Highlight Box ===== */
.highlight-box {
    background: var(--warm-beige);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--deep-teal);
    margin: 32px 0;
}

.highlight-box h3 {
    color: var(--deep-teal);
    margin-bottom: 12px;
}

/* ===== Page Hero Subtitle ===== */
.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* ===== CTA Note ===== */
.cta-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 16px;
}

.section-teal .cta-note {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Calendly Placeholder ===== */
.calendly-placeholder {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    border: 2px dashed var(--warm-gray);
    text-align: center;
    color: var(--gray);
}

/* ===== Contact Form Area (Future) ===== */
.contact-form-area {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}
