/* Design System & Variables */
:root {
    --bg-color: hsl(36, 40%, 97%);        /* Soft Warm Cream/Beige */
    --primary-color: hsl(150, 24%, 18%);   /* Deep Forest Green */
    --primary-light: hsl(150, 24%, 25%);   
    --secondary-color: hsl(140, 20%, 93%); /* Light Sage Green */
    --accent-color: hsl(145, 20%, 45%);    /* Bright Sage Green */
    --highlight-color: hsl(45, 80%, 75%);  /* Mustard Yellow Highlight */
    --highlight-pink: hsl(340, 80%, 92%);  /* Soft Pink Accent */
    --text-dark: hsl(150, 30%, 12%);
    --text-muted: hsl(150, 10%, 40%);
    --white: #ffffff;
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
}

/* Reset & Core Styling */
* {
    margin: 0;
    padding: 0;
    box-box: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

@media (max-width: 768px) {
    .section-container {
        padding: 50px 16px;
    }
}

/* Headings & Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title-sub {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Highlights */
.highlight-underline {
    position: relative;
    white-space: nowrap;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--highlight-color);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.italic-highlight {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 43, 36, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

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

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

.btn-block {
    display: flex;
    width: 100%;
}

/* Arched Image Container */
.arched-frame {
    border-radius: 180px 180px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Header Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(246, 245, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 43, 36, 0.06);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: none;
}

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

.nav-link {
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    opacity: 0.7;
    transition: var(--transition-smooth);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.mobile-cta {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .nav-bar, .header-cta {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Ensure hero elements are visible even before GSAP loads */
.hero-info,
.hero-image-block {
    opacity: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 550px;
}

.tagline-pill {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--highlight-pink);
    color: hsl(340, 50%, 40%);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hero-cta-form {
    display: none; /* Removed email form */
}

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

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 16px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(27, 43, 36, 0.1);
}

.hero-credentials {
    border-top: 1px solid rgba(27, 43, 36, 0.08);
    padding-top: 16px;
    max-width: 550px;
}

.credentials-text {
    font-size: 0.85rem;
}

/* Hero Profile Card (Rectangle) */
.hero-image-block {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.rect-frame {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 380px;
    height: 480px;
    max-width: 100%;
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.svg-decorations {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: -1;
    color: var(--accent-color);
}

.decor-leaf {
    width: 100%;
    height: 100%;
    animation: sway 6s ease-in-out infinite alternate;
}

/* Hero Right Column */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.rotating-badge-container {
    position: relative;
    width: 160px;
    height: 160px;
}

.rotating-badge {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text-svg {
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

.badge-text-svg path {
    fill: none;
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 8.5px;
    font-weight: 700;
    fill: var(--primary-color);
    letter-spacing: 2px;
}

.badge-arrow {
    position: absolute;
    color: var(--accent-color);
    animation: bounce 2s infinite;
}

.hero-quote-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--accent-color);
    max-width: 280px;
}

.hero-quote-card .quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.client-avatars-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatars {
    display: flex;
    margin-left: 4px;
}

.avatar-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: -6px;
}

.avatar-info {
    display: flex;
    flex-direction: column;
}

.avatar-stars {
    color: #e5c558;
    font-size: 0.75rem;
}

.avatar-text {
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-right {
        grid-column: span 2;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-right {
        grid-column: span 1;
        flex-direction: column;
    }
    .hero-image-container {
        width: 240px;
        height: 360px;
    }
    .hero-cta-form {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }
    .cta-input {
        padding: 10px;
    }
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes sway {
    from { transform: rotate(-3deg); }
    to { transform: rotate(3deg); }
}

/* Mission Statement Section */
.mission-section {
    background-color: var(--secondary-color);
    text-align: center;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: -20px;
}

.mission-quote {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.4;
    max-width: 950px;
    margin: 0 auto;
    font-weight: 500;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mission-quote {
        font-size: 1.5rem;
    }
}

/* About Section */
.about-section {
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-frame-container {
    width: 320px;
    height: 480px;
    position: relative;
}

.about-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.years-experience-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 30px rgba(27, 43, 36, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.years-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
}

.years-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-paragraph {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        order: 2;
    }
    .years-experience-badge {
        left: 20px;
    }
}

/* Pillars Section */
.pillars-section {
    background-color: var(--white);
}

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

.pillar-card {
    background-color: var(--bg-color);
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(27, 43, 36, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 43, 36, 0.05);
}

.pillar-icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.pillar-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.pillar-body {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pillar-list {
    list-style: none;
    margin-bottom: 24px;
}

.pillar-list li {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-list li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.2rem;
}

.pillar-image-container {
    width: 100%;
    height: 200px;
    border-radius: 80px 80px 0 0;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

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

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

/* Programs Grid Section */
.programs-section {
    background-color: var(--bg-color);
}

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

.program-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(27, 43, 36, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
    border-color: rgba(27, 43, 36, 0.1);
}

.program-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.program-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.program-card-custom {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.program-card-custom h4 {
    color: var(--bg-color);
}

.program-card-custom p {
    color: rgba(246, 245, 240, 0.7);
}

.program-card-custom .btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* The Journey (Tabs System) */
.journey-section {
    background-color: var(--white);
}

.starting-points-card {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    margin-bottom: 50px;
    border: 1px solid rgba(27, 43, 36, 0.04);
}

.starting-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.starting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.starting-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.starting-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.journey-interactive {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.journey-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.journey-tab-btn {
    background-color: var(--white);
    border: 2px solid transparent;
    padding: 20px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition-smooth);
}

.journey-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.journey-tab-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.journey-tab-btn.active .tab-title {
    color: var(--bg-color);
}

.journey-tab-btn.active .tab-subtitle {
    color: rgba(246, 245, 240, 0.7);
}

.tab-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.tab-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.journey-tabs-content {
    position: relative;
}

.journey-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.journey-tab-pane.active {
    display: block;
    opacity: 1;
}

.pane-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.pane-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--highlight-pink);
    color: hsl(340, 50%, 40%);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
}

.pane-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pane-lead {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pane-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.pane-highlights li {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pane-highlights li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.hold-policy {
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    border-left: 3px solid var(--accent-color);
}

.inclusions-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.inclusions-card h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(27, 43, 36, 0.06);
    padding-bottom: 10px;
}

.inclusions-list {
    list-style: none;
}

.inclusions-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.inclusions-list li::before {
    content: '✦';
    color: var(--accent-color);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .journey-tabs-nav {
        grid-template-columns: 1fr;
    }
    .pane-grid {
        grid-template-columns: 1fr;
    }
    .journey-interactive {
        padding: 24px;
    }
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--bg-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: dashed rgba(27, 43, 36, 0.1);
    z-index: 1;
}

.step-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(27, 43, 36, 0.1);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.step-duration {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.step-desc {
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-steps::before {
        display: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--bg-color);
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(27, 43, 36, 0.02);
}

.testimonial-stars {
    color: #e5c558;
    font-size: 1rem;
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: normal;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(27, 43, 36, 0.08);
    padding-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-color);
}

.author-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-color);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(27, 43, 36, 0.03);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    outline: none;
}

.faq-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
}

/* Contact Us Section */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-desc {
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a.detail-value:hover {
    color: var(--accent-color);
}

.contact-form-container {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(27, 43, 36, 0.03);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(27, 43, 36, 0.15);
    background-color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(67, 126, 99, 0.1);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding-top: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(246, 245, 240, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-white {
    color: var(--white) !important;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(246, 245, 240, 0.7);
    max-width: 280px;
}

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

.footer-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(246, 245, 240, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 14px 24px;
    font-size: 0.8rem;
    color: rgba(246, 245, 240, 0.5);
}

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

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 43, 36, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-flex;
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Scroll Reveal Animations */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-bottom,
.scroll-reveal-center {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scroll-reveal {
    transform: translateY(30px);
}

.scroll-reveal-left {
    transform: translateX(-50px);
}

.scroll-reveal-right {
    transform: translateX(50px);
}

.scroll-reveal-bottom {
    transform: translateY(50px);
}

.scroll-reveal-center {
    transform: scale(0.95);
}

/* Revealed active states */
.scroll-reveal.revealed,
.scroll-reveal-left.revealed,
.scroll-reveal-right.revealed,
.scroll-reveal-bottom.revealed,
.scroll-reveal-center.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered transition delays for grids & sections */
.pillars-grid .pillar-card:nth-child(1) { transition-delay: 0.1s; }
.pillars-grid .pillar-card:nth-child(2) { transition-delay: 0.2s; }
.pillars-grid .pillar-card:nth-child(3) { transition-delay: 0.3s; }

.programs-grid .program-card:nth-child(1) { transition-delay: 0.05s; }
.programs-grid .program-card:nth-child(2) { transition-delay: 0.1s; }
.programs-grid .program-card:nth-child(3) { transition-delay: 0.15s; }
.programs-grid .program-card:nth-child(4) { transition-delay: 0.2s; }
.programs-grid .program-card:nth-child(5) { transition-delay: 0.25s; }
.programs-grid .program-card:nth-child(6) { transition-delay: 0.3s; }
.programs-grid .program-card:nth-child(7) { transition-delay: 0.35s; }
.programs-grid .program-card:nth-child(8) { transition-delay: 0.4s; }
.programs-grid .program-card:nth-child(9) { transition-delay: 0.45s; }
.programs-grid .program-card:nth-child(10) { transition-delay: 0.5s; }
.programs-grid .program-card:nth-child(11) { transition-delay: 0.55s; }
.programs-grid .program-card:nth-child(12) { transition-delay: 0.6s; }
.programs-grid .program-card:nth-child(13) { transition-delay: 0.65s; }

.process-steps .step-card:nth-child(1) { transition-delay: 0.1s; }
.process-steps .step-card:nth-child(2) { transition-delay: 0.2s; }
.process-steps .step-card:nth-child(3) { transition-delay: 0.3s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.faq-accordion-container .faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-accordion-container .faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-accordion-container .faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-accordion-container .faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-accordion-container .faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-accordion-container .faq-item:nth-child(6) { transition-delay: 0.3s; }
.faq-accordion-container .faq-item:nth-child(7) { transition-delay: 0.35s; }
.faq-accordion-container .faq-item:nth-child(8) { transition-delay: 0.4s; }
.faq-accordion-container .faq-item:nth-child(9) { transition-delay: 0.45s; }

/* Journey Timeline Layout & Graphics */
.journey-interactive {
    background-color: var(--white);
    padding: 70px 40px 60px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 45px rgba(27, 43, 36, 0.03);
    position: relative;
    overflow: hidden;
}

.journey-timeline-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-svg-container {
    position: relative;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 1;
    margin-bottom: 20px;
}

/* Journey Titles Row (above the line) */
.journey-titles-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.journey-title-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.journey-path {
    fill: none;
    transition: none;
}

.trough-dot {
    transform: scale(0);
    opacity: 0;
    transform-origin: center;
}

.timeline-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bubble-container {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    background-color: var(--white);
    border-radius: 50%;
    z-index: 3;
    opacity: 1; /* Fallback */
    transform: scale(1); /* Fallback */
}

.bubble {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 3.5px solid currentColor;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bubble:hover {
    transform: scale(1.08);
}

/* Bubble Theme Colors */
.bubble-sage { color: hsl(145, 12%, 45%); }
.bubble-blue { color: hsl(205, 55%, 48%); }
.bubble-green { color: hsl(125, 20%, 45%); }
.bubble-orange { color: hsl(38, 60%, 52%); }

.color-sage { color: hsl(145, 12%, 35%); }
.color-blue { color: hsl(205, 55%, 38%); }
.color-green { color: hsl(125, 20%, 35%); }
.color-orange { color: hsl(38, 60%, 42%); }

.col-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.col-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 24px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.col-bullets {
    list-style: none;
    text-align: left;
    width: 100%;
    padding: 0 10px;
}

.col-bullets li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    opacity: 1; /* Fallback */
}

.col-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.3rem;
    line-height: 1;
}

.bullet-sage li::before { color: hsl(145, 12%, 45%); }
.bullet-blue li::before { color: hsl(205, 55%, 48%); }
.bullet-green li::before { color: hsl(125, 20%, 45%); }
.bullet-orange li::before { color: hsl(38, 60%, 52%); }

@media (max-width: 900px) {
    .journey-timeline-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .timeline-svg-container {
        display: none;
    }
    .journey-titles-row {
        display: none;
    }
    /* On mobile, show titles inside columns */
    .timeline-col::before {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        font-weight: 800;
        display: block;
        margin-bottom: 8px;
        text-align: center;
    }
    .col-1::before { content: "This is you"; color: hsl(145, 12%, 35%); }
    .col-2::before { content: "3 Months"; color: hsl(205, 55%, 38%); }
    .col-3::before { content: "6 Months"; color: hsl(125, 20%, 35%); }
    .col-4::before { content: "12 Months"; color: hsl(38, 60%, 42%); }
    .bubble-container {
        width: 90px;
        height: 90px;
        margin-bottom: 16px;
    }
    .bubble {
        width: 80px;
        height: 80px;
    }
    .col-subtitle {
        height: auto;
        margin-bottom: 16px;
    }
    .col-bullets {
        max-width: 450px;
        margin: 0 auto;
    }
}


/* ============================================================
   MULTI-PAGE ADDITIONS - Navigation, Hero Rect, Page-specific
   ============================================================ */

/* Logo - bigger, transparent */
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 35px;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}

/* Rectangular Hero Image (replaces arched frame) */
.hero-rect-frame {
    width: 100%;
    max-width: 480px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    margin: 0 auto;
    position: relative;
}

.hero-rect-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--border-radius-md) + 4px);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    z-index: -1;
    opacity: 0.6;
}

.hero-profile-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Hero CTA Row */
.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0;
}

/* Hero trust row fix */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Page Hero Banner (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, hsl(150, 24%, 28%) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.page-hero .section-container {
    padding: 30px 24px;
}

.page-hero .section-title-sub {
    color: var(--highlight-color);
}

.page-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero-title { font-size: 2.2rem; }
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

.about-main-section {
    background-color: var(--bg-color);
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-rect-frame {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
}

.about-rect-frame::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid var(--accent-color);
    border-radius: calc(var(--border-radius-md) + 4px);
    opacity: 0.5;
    pointer-events: none;
}

.about-profile-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.credentials-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.cred-heading {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.cred-item:last-child { margin-bottom: 0; }

.cred-icon {
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cred-text {
    display: flex;
    flex-direction: column;
}

.cred-degree {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.cred-school {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.about-main-title {
    font-size: 2rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-para {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-values-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.about-value-chip {
    padding: 8px 16px;
    background: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--secondary-color);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

.philosophy-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
}

.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.philosophy-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.philosophy-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.philosophy-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   PROGRAMS & SERVICES PAGE STYLES
   ============================================================ */

.programs-cta-row {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--secondary-color);
    border-radius: var(--border-radius-md);
}

.programs-cta-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.program-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

/* Services Included Section */
.services-included-section {
    background: var(--white);
}

.services-checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

@media (max-width: 600px) {
    .services-checklist-grid { grid-template-columns: 1fr; }
}

.service-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--bg-color);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.service-check-item:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 1px;
}

.check-content {
    display: flex;
    flex-direction: column;
}

.check-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.check-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Journey Timeline (vertical) */
.journey-section {
    background: var(--bg-color);
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-track {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--highlight-color));
    z-index: 0;
}

@media (max-width: 600px) {
    .journey-track { left: 16px; }
}

.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 50px;
    position: relative;
    padding-left: 20px;
}

.journey-step:last-child { margin-bottom: 0; }

.journey-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent-color);
    margin-top: 4px;
    position: relative;
    z-index: 1;
    margin-left: -29px;
}

.journey-dot--mid {
    background: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.journey-dot--long {
    background: var(--highlight-color);
    box-shadow: 0 0 0 2px var(--highlight-color);
}

.journey-content {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 28px 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    flex: 1;
    transition: var(--transition-smooth);
}

.journey-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.journey-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.journey-badge--mid {
    background: hsl(150, 24%, 93%);
    color: var(--primary-color);
}

.journey-badge--long {
    background: hsl(45, 80%, 90%);
    color: hsl(45, 60%, 35%);
}

.journey-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.journey-desc {
    font-size: 0.97rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

.journey-list {
    list-style: none;
    padding: 0;
}

.journey-list li {
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 5px 0 5px 18px;
    position: relative;
}

.journey-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ============================================================
   FAQ PAGE STYLES
   ============================================================ */

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1000px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-sidebar {
        order: -1;
    }
}

.faq-sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.faq-sidebar-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-sidebar-body {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

.contact-note {
    background: var(--secondary-color);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-day-one-text {
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-color);
    margin: 20px 0 16px;
}

/* ============================================================
   NAVBAR LOGO - ensure it doesn't have any extra text
   ============================================================ */

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Hide any logo-text next to logo in header (keep only image) */
.header .logo-text {
    display: none;
}

/* Adjust header for bigger logo */
.header-container {
    min-height: 80px;
}

/* Logo text in footer stays visible */
.footer .logo-text {
    display: inline;
}



/* ============================================================
   ADDITIONAL FIXES - Footer, FAQ, Page Hero
   ============================================================ */

/* Footer section-container override - reduce excessive vertical padding */
.footer .section-container {
    padding: 30px 24px;
}

/* Footer grid - compact */
.footer-grid {
    padding-bottom: 20px !important;
}

/* FAQ Sidebar - Fix text visibility */
.faq-sidebar-card {
    background: var(--primary-color) !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-sidebar-title {
    color: var(--white) !important;
}

.faq-sidebar-body {
    color: rgba(255,255,255,0.8) !important;
}

.faq-sidebar-card .footer-link {
    color: var(--highlight-color) !important;
}

.faq-sidebar-card .footer-link:hover {
    color: var(--white) !important;
}

.faq-sidebar-card .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.faq-sidebar-card .btn-primary:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
}

/* Page hero - ensure it's below fixed navbar */
.page-hero {
    padding-top: 120px !important;
    padding-bottom: 60px !important;
    margin-top: 0;
}

/* GSAP Wavy Journey - services page */
.journey-wavy-section {
    background: var(--bg-color);
    overflow: hidden;
}

.journey-wavy-header {
    text-align: center;
    padding-bottom: 20px;
}

/* Journey wavy timeline SVG container */
.journey-wavy-wrap {
    width: 100%;
    overflow: hidden;
    padding: 30px 0 20px;
}

.journey-svg-canvas {
    width: 100%;
    height: auto;
    display: block;
}

/* Journey columns above/below SVG */
.journey-cols-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: -10px;
}

.journey-col-item {
    text-align: center;
    padding: 0 20px;
}

.journey-col-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.journey-col-badge--3 {
    background: hsl(145, 30%, 85%);
    color: hsl(145, 30%, 25%);
}

.journey-col-badge--6 {
    background: hsl(205, 40%, 85%);
    color: hsl(205, 40%, 25%);
}

.journey-col-badge--12 {
    background: hsl(38, 70%, 85%);
    color: hsl(38, 60%, 30%);
}

.journey-col-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.journey-col-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.journey-col-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.journey-col-list li {
    font-size: 0.82rem;
    color: var(--text-dark);
    padding: 4px 0 4px 16px;
    position: relative;
}

.journey-col-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Journey bubble pop */
.journey-bubble {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.journey-bubble--3 { background: hsl(145, 25%, 38%); }
.journey-bubble--6 { background: hsl(205, 50%, 45%); }
.journey-bubble--12 { background: hsl(38, 60%, 52%); }

@media (max-width: 768px) {
    .journey-cols-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .journey-wavy-wrap {
        display: none;
    }
}

/* WhatsApp CTA on contact page */
.whatsapp-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: hsl(142, 70%, 94%);
    border: 1px solid hsl(142, 40%, 75%);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    margin: 20px 0;
}

.whatsapp-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 0.9rem;
    color: hsl(142, 40%, 25%);
    line-height: 1.5;
}

.whatsapp-text strong {
    color: hsl(142, 50%, 20%);
}

/* ============================================================
   RESPONSIVENESS AND DEVICE LAYOUT OPTIMIZATIONS
   ============================================================ */

/* Medium screen / Tablet Landscape header adjustment (901px - 1080px) */
@media (min-width: 901px) and (max-width: 1080px) {
    .nav-bar {
        gap: 18px;
    }
    .nav-link {
        font-size: 0.88rem;
    }
    .header-cta .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Tablet / Mobile Hero section adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px !important;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(2.0rem, 6vw, 2.8rem);
    }
    .rect-frame {
        height: 380px;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-profile-img {
        height: 380px;
    }
}

/* Trust stats layout on smaller mobile screens */
@media (max-width: 576px) {
    .hero-trust-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        align-items: start;
        text-align: center;
        width: 100%;
        max-width: 420px;
        margin: 20px auto;
    }
    .trust-divider {
        display: none;
    }
    .trust-number {
        font-size: 1.6rem;
    }
    .trust-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* About page photo responsiveness */
@media (max-width: 900px) {
    .about-profile-img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-profile-img {
        height: 320px;
    }
}

