/* ========================================
   CSS VARIABLES - DESIGN SYSTEM
   ======================================== */

:root {
    /* Colors */
    --coral: #FF6B6B;
    --coral-hover: #ff5252;
    --light-blue: #D4F1F4;
    --dark-gray: #2D3748;
    --text-gray: #4A5568;
    --light-gray: #A0AEC0;
    --border-gray: #E2E8F0;
    --white: #FFFFFF;
    --bg-page: #F5F5F5;
    --bg-container: #FFFFFF;
    --bg-elevated: #FAFAFA;
    --bg-interactive: #FCFCFC;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12), 0 6px 12px rgba(0, 0, 0, 0.06);
    --shadow-2xl: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-coral: 0 8px 20px rgba(255, 107, 107, 0.25), 0 4px 10px rgba(255, 107, 107, 0.15);
    --shadow-coral-hover: 0 12px 30px rgba(255, 107, 107, 0.35), 0 6px 15px rgba(255, 107, 107, 0.2);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 60px;
    --container-max-width: 1320px;
    --grid-gap: 40px;
    --grid-gap-small: 30px;
    --card-padding: 40px;
    --card-padding-mobile: 30px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    background-color: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-gray);
    line-height: 1.3;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(34px, 5vw, 46px);
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: clamp(18px, 2vw, 20px);
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 60px;
}

/* Extra spacing for section titles without subtitles */
.service-overview-section > .container > .section-title,
.whats-included-section > .container > .section-title,
.why-choose-section > .container > .section-title,
.sample-meals-section > .container > .section-title,
.faq-section > .container > .section-title {
    margin-bottom: 60px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background-color: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
    background-color: var(--coral-hover);
    box-shadow: var(--shadow-coral-hover);
    transform: translateY(-2px);
}

.btn-primary:focus,
.btn-primary:focus-visible {
    outline: 3px solid var(--white) !important;
    outline-offset: 3px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--coral);
}

.btn-secondary:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

.btn-full {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero-parallax-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-image: url('https://meals-by-emily.com/wp-content/uploads/2025/10/easy-salmon-meal-prep-bowl-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translateY(0);
    will-change: transform;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.85) 0%, rgba(45, 55, 72, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-section .btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section .btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, #ff5252 100%);
    box-shadow: var(--shadow-coral);
}

.hero-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-coral-hover);
}

.hero-section .btn-primary:focus,
.hero-section .btn-primary:focus-visible {
    outline: 3px solid var(--white) !important;
    outline-offset: 3px;
}

.hero-section .btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.hero-section .btn-secondary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--coral);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SERVICE OVERVIEW - MAGAZINE LAYOUT
   ======================================== */

.service-overview-section {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.mobile-featured-image {
    display: none;
}

.magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.magazine-block {
    position: relative;
}

/* Block 1: Large text with overlay image */
.block-1 {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
    align-items: center;
    position: relative;
}

.block-1 .text-content {
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--white) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.body-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

.overlay-image {
    width: 280px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 6px solid var(--white);
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overlay-image:hover img {
    transform: scale(1.1);
}

/* Block 2: Split with callout */
.block-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 40px;
}

.image-feature {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 3;
}

.image-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-feature:hover img {
    transform: scale(1.05);
}

.callout-box {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-coral);
    position: relative;
}

.callout-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    border-radius: 12px;
    opacity: 0.2;
    z-index: -1;
}

.callout-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.callout-box p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Block 3: Full width statement */
.block-3 {
    margin-top: 20px;
}

.transparency-statement {
    background: var(--bg-container);
    border: 2px solid var(--border-gray);
    border-left: 6px solid var(--coral);
    padding: 40px 40px 40px 60px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.statement-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--light-blue), #b8e9ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.transparency-statement p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    flex: 1;
}

/* ========================================
   HOW IT WORKS - TIMELINE FLOW
   ======================================== */

.how-it-works-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-elevated);
    position: relative;
    z-index: 2;
}

.timeline-flow {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
    align-items: center;
}

.timeline-step.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 50%;
    width: 3px;
    height: calc(50% + 50px);
    background: linear-gradient(180deg, var(--coral) 0%, var(--border-gray) 100%);
    transform: translateY(40px);
}

.timeline-step:last-child .step-connector {
    display: none;
}

.step-badge {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral), var(--coral-hover));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    box-shadow: var(--shadow-coral);
    border: 5px solid var(--white);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-coral-hover);
}

.step-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--coral);
    transition: all 0.3s ease;
}

.timeline-step:hover .step-content {
    box-shadow: var(--shadow-xl);
    transform: translateX(5px);
}

.step-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ========================================
   WHAT'S INCLUDED - BENTO BOX GRID
   ======================================== */

.whats-included-section {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(135deg, var(--bg-container) 0%, var(--bg-elevated) 100%);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-gray);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
    min-height: 280px;
}

.bento-card.fade-in {
    opacity: 1;
    transform: scale(1);
}

.bento-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--coral);
}

.bento-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-blue), #b8e9ee);
    border-radius: 16px;
    color: var(--coral);
    flex-shrink: 0;
}

.bento-title {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--dark-gray);
}

.bento-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ========================================
   DIETARY APPROACHES - PILL CLOUD
   ======================================== */

.dietary-approaches-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-elevated);
    position: relative;
    z-index: 2;
}

.pill-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-pill {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 60px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.approach-pill.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.approach-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.approach-pill:hover::before {
    left: 100%;
}

.approach-pill:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.pill-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--light-blue), #b8e9ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.approach-pill:hover .pill-icon {
    background: linear-gradient(135deg, var(--coral), var(--coral-hover));
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.approach-title {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
    margin: 0;
}

.approach-hover-text {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a202c 100%);
    color: var(--white);
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0 0 60px 60px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.approach-pill:hover .approach-hover-text {
    bottom: -90px;
    opacity: 1;
}

/* ========================================
   SAMPLE MEALS - MASONRY GALLERY
   ======================================== */

.sample-meals-section {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.masonry-item.fade-in {
    opacity: 1;
    transform: scale(1);
}

.masonry-tall {
    grid-row: span 2;
}

.masonry-wide {
    grid-column: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.15);
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
}

.meal-type {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-caption {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   WHY CHOOSE - TWO COLUMN PARAGRAPH
   ======================================== */

.why-choose-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-elevated);
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-paragraph {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.why-paragraph:first-child {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gray);
}

.why-choose-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 6px solid var(--white);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   FAQ SECTION - ENHANCED ACCORDION
   ======================================== */

.faq-section {
    padding: var(--section-padding) 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-container);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
    position: relative;
    padding-left: 80px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--coral);
}

.faq-item.active {
    border-color: var(--coral);
    box-shadow: var(--shadow-lg);
}

.faq-number {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.faq-question {
    width: 100%;
    padding: 24px 28px 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--coral);
}

.faq-question:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: -3px;
}

.faq-question-text {
    flex: 1;
    padding-right: 32px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 400;
    color: var(--coral);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 28px 24px 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a202c 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 24px;
    color: var(--white);
}

.cta-description {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Final CTA Button Overrides - Match Hero Style */
.final-cta-section .btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-section .btn-primary {
    background: linear-gradient(135deg, var(--coral) 0%, #ff5252 100%);
    box-shadow: var(--shadow-coral);
}

.final-cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-coral-hover);
}

.final-cta-section .btn-primary:focus,
.final-cta-section .btn-primary:focus-visible {
    outline: 3px solid var(--white) !important;
    outline-offset: 3px;
}

.final-cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.final-cta-section .btn-secondary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--coral);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

@media (max-width: 1200px) {
    .block-1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .block-1 .text-content {
        padding: 40px;
    }

    .block-1 .overlay-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 4 / 3;
        margin: 0 auto;
    }

    .block-2 {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    /* Disable parallax on tablets */
    .hero-parallax-bg {
        position: absolute;
        top: 0;
        height: 100%;
        transform: none !important;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-wide {
        grid-column: span 1;
    }

    .why-choose-grid {
        gap: 40px;
    }

    /* Ensure no horizontal overflow */
    .container {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --card-padding: 30px;
        --grid-gap: 30px;
    }

    /* Prevent horizontal scroll */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Reduce section title spacing on mobile */
    .service-overview-section > .container > .section-title,
    .whats-included-section > .container > .section-title,
    .why-choose-section > .container > .section-title,
    .sample-meals-section > .container > .section-title,
    .faq-section > .container > .section-title {
        margin-bottom: 40px;
    }

    /* Better touch targets for mobile */
    .btn {
        min-height: 44px;
        padding: 14px 32px;
    }

    .faq-question {
        min-height: 44px;
    }

    .magazine-layout {
        gap: 40px;
    }

    /* Show mobile featured image */
    .mobile-featured-image {
        display: block;
        margin: 0 auto 40px;
        max-width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
    }

    .mobile-featured-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .block-1 .text-content {
        padding: 30px;
    }

    /* Hide the original overlay image on mobile since we're showing it at the top */
    .block-1 .overlay-image {
        display: none;
    }

    .lead-text {
        font-size: 20px;
    }

    .body-text {
        font-size: 16px;
    }

    .transparency-statement {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .timeline-flow {
        padding-left: 0;
    }

    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        line-height: 1;
    }

    .step-connector {
        left: 30px;
        top: 50%;
        height: calc(100% + 10px);
        transform: translateY(30px);
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .pill-cloud {
        flex-direction: column;
        align-items: stretch;
    }

    .approach-pill {
        border-radius: 12px;
        justify-content: center;
    }

    /* Disable hover effects on touch devices */
    .approach-pill:hover .approach-hover-text {
        display: none;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-content {
        order: 2;
    }

    .why-choose-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .faq-item {
        padding-left: 60px;
    }

    .faq-number {
        width: 60px;
        font-size: 24px;
    }

    .faq-question {
        padding: 20px 20px 20px 16px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 16px 20px 20px 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-section .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 32px;
        font-size: 0.9375rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 50px;
        --card-padding: 24px;
    }

    /* Further reduce section title spacing on small mobile */
    .service-overview-section > .container > .section-title,
    .whats-included-section > .container > .section-title,
    .why-choose-section > .container > .section-title,
    .sample-meals-section > .container > .section-title,
    .faq-section > .container > .section-title {
        margin-bottom: 32px;
    }

    .hero-section {
        min-height: 90vh;
    }

    /* Disable parallax on mobile for performance */
    .hero-parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        transform: none !important;
        background-attachment: scroll;
    }

    .hero-section .btn {
        padding: 12px 28px;
        font-size: 0.875rem;
    }

    .block-1 .text-content {
        padding: 24px;
    }

    /* Keep overlay image hidden on small mobile */
    .block-1 .overlay-image {
        display: none;
    }

    .lead-text {
        font-size: 18px;
    }

    .callout-box {
        padding: 24px;
    }

    .callout-box h3 {
        font-size: 24px;
    }

    .final-cta-section {
        padding: 70px 0;
    }
}

/* ========================================
   ANIMATION UTILITIES
   ======================================== */

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.timeline-step:nth-child(1) { transition-delay: 0.1s; }
.timeline-step:nth-child(2) { transition-delay: 0.2s; }
.timeline-step:nth-child(3) { transition-delay: 0.3s; }
.timeline-step:nth-child(4) { transition-delay: 0.4s; }
.timeline-step:nth-child(5) { transition-delay: 0.5s; }

.bento-card:nth-child(1) { transition-delay: 0.1s; }
.bento-card:nth-child(2) { transition-delay: 0.2s; }
.bento-card:nth-child(3) { transition-delay: 0.3s; }

.approach-pill:nth-child(1) { transition-delay: 0.05s; }
.approach-pill:nth-child(2) { transition-delay: 0.1s; }
.approach-pill:nth-child(3) { transition-delay: 0.15s; }
.approach-pill:nth-child(4) { transition-delay: 0.2s; }
.approach-pill:nth-child(5) { transition-delay: 0.25s; }
.approach-pill:nth-child(6) { transition-delay: 0.3s; }

.masonry-item:nth-child(1) { transition-delay: 0.1s; }
.masonry-item:nth-child(2) { transition-delay: 0.2s; }
.masonry-item:nth-child(3) { transition-delay: 0.3s; }
.masonry-item:nth-child(4) { transition-delay: 0.4s; }

.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-item:nth-child(6) { transition-delay: 0.3s; }
