/* Clementina Health - Main Styles */

/* CSS Variables */
:root {
    --orange: #C46c67;
    --orange-dark: #b25f5b;
    /* Warm golden tan */
    --peach: #e6c2bf;
    /* Soft peachy cream */
    --cream: #F5F1EB;
    /* Very light cream */
    --lavender: #C8D5D0;
    /* Soft sage green */
    --charcoal: #2B3A42;
    /* Deep slate blue */
    --gray: #E5E5E5;
    /* Neutral supporting gray */
    --green: #8B9B7A;
    /* Muted olive green */
    --accent: #EDE4D3;
    /* Light beige accent */
    --white: #FFFFFF;
    --success: #7F9F7F;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Crimson Text', serif;

    /* Spacing */
    --section-padding: clamp(3rem, 8vw, 5rem);
    --container-padding: clamp(1rem, 4vw, 1.5rem);

    /* Additional derived colors */
    --light-gray: #F9FAFB;
    --text-gray: #6B7280;
}

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

html {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    touch-action: manipulation;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

.value-icon i {
    color: var(--orange);
}

.service-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card img {
    width: 300px;
    height: 200px;
    object-fit: cover; /* Ensures the image fills the box without distortion */
    display: block;
}


.hero img {
    max-width: 100%;
    width: 600px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    object-fit: cover;
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
    object-fit: cover;
}

.certifications img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.final-cta img {
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
}

/* Icons */
.icon-check::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
}

.icon-shield::before {
    content: "🛡";
}

.icon-clock::before {
    content: "🕐";
}

/* CTA System */
.cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cta-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.cta-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.cta-secondary {
    background: var(--white);
    color: var(--orange);
    border-color: var(--orange);
}

.cta-secondary:hover {
    background: var(--orange);
    color: var(--white);
}

.cta-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--gray);
}

.cta-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.cta-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    background: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hide header on scroll down (optional) */
.header.header-hidden {
    transform: translateY(-100%);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 100px; /* Reduced from 100px */
    width: auto;
}
@media (max-width: 768px) {
    .logo img {
        height: 65px;
        /* Slightly smaller on mobile */
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Reduced from 2rem */
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

/* Hover underline effect - FIXED */
.nav-links a:not(.cta)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links a:not(.cta):hover::before {
    transform: scaleX(1);
}

/* Better CTA distinction */
.nav-links .cta-outline {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
}

.nav-links .cta-primary {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    box-shadow: 0 2px 4px rgba(212, 165, 116, 0.2);
    color: var(--white);
}

.nav-links .cta-primary:hover {
    box-shadow: 0 4px 8px rgba(212, 165, 116, 0.3);
}

.nav-links .cta-secondary {
    padding: 0.5rem 1.25rem;
    color: var(--orange);
    border-color: var(--orange);
}

.nav-links .cta-secondary:hover {
    background: var(--orange);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

.mobile-toggle:active {
    transform: scale(0.95);
    opacity: 0.7;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-open .mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-open .mobile-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.close-btn-li {
    display: none;
}

/* Hero */
.hero {
   position: relative;
    padding: calc(8rem + 60px) 0 var(--section-padding);
    text-align: center;
    background: url('../images/photography/baby-feet-hands.png') no-repeat center center/cover;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 58, 66, 0.7); /* Charcoal overlay */
    z-index: 1;
}

main {
    flex: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-cream);
}

/* Problem Acknowledgment */
.problem-acknowledgment {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
    text-align: center;
}

.problem-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.service-card h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

/* Why Clementina */
.why-clementina {
    padding: var(--section-padding) 0;
    background: var(--white);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    padding: 2rem;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

/* How It Works Summary */
.how-it-works-summary {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid #E5E7EB;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Membership */
.membership {
    padding: var(--section-padding) 0;
    background: var(--accent);
    text-align: center;
}

.pricing-subtitle {
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-comparison {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    border: 1px solid #E5E7EB;
}

/* Social Proof Stats */
.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--lavender);
    text-align: center;
}

.carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--orange);
    min-width: 100%;
    box-sizing: border-box;
}

.testimonial p {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.btn {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 0.5rem;
}

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

.dots {
    display: flex;
}

.dot {
    cursor: pointer;
    font-size: 2rem;
    color: var(--peach);
    margin: 0 0.2rem;
}

.dot--active {
    color: var(--orange);
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.about .about-content {
    text-align: left;
}

.about-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--orange);
    border-left: 3px solid var(--peach);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.founder-signature {
    font-style: italic;
    font-weight: 500;
    color: var(--charcoal);
    text-align: right;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mission-card, .values-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--accent);
}

.mission-card h4, .values-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.certifications-bar {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.certifications-bar p {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.certifications {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.certifications img {
    height: 45px;
    opacity: 0.8;
}

/* Unified card style */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Grid wrapper */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

/* Resources */
.resources {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.resource-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.resource-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.resource-link:hover {
    color: var(--orange-dark);
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    text-align: left;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--orange);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Interactive FAQ */
.faq-interactive {
    margin-top: 4rem;
    padding: 2rem 1rem;
    position: relative;
}

.faq-interactive::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(43, 58, 66, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-interactive h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    font-size: 2rem;
}

.phone-container {
    max-width: 450px;
    margin: 2rem auto;
    position: relative;
    filter: drop-shadow(0 8px 25px rgba(43, 58, 66, 0.12));
}

.phone-frame {
    background: #1c1c1e; /* iPhone-like dark grey */
    border-radius: 40px; /* Rounded corners for the phone */
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 2px #333;
}

.chat-container {
    border: 1px solid #E5E7EB;
    border-radius: 28px; /* Inner screen rounded corners */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* This is important to contain the children */
}

.chat-window {
    padding: 1.5rem;
    height: 400px;
    overflow-y: auto;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.chat-bubble {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 1.25rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    animation: bubble-in 0.3s ease forwards;
    text-align: left;
}

@keyframes bubble-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-bubble.question {
    background: #007AFF;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 0.5rem;
}

.chat-bubble.answer {
    background: #E5E5EA;
    color: black;
    margin-right: auto;
    border-bottom-left-radius: 0.5rem;
}

.sender-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6D6D72;
    margin-bottom: 0.25rem;
}

.faq-questions {
    padding: 1.5rem;
    background: var(--white);
}

.faq-questions ul {
    list-style: none;
    padding: 0;
}

.faq-question-item {
    cursor: pointer;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s;
    border: 1px solid #E5E7EB;
}

.faq-question-item:hover {
    background: #F3F4F6;
}

.typing-indicator {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #BDBDBD;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: typing 1.2s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.3s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.15s; }

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: var(--section-padding) 0;
    text-align: center;
    background: url('../images/photography/parent-text.png') no-repeat center center/cover;
    color: var(--white);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 58, 66, 0.7); /* Charcoal overlay */
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--cream);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.final-cta .cta {
    background: var(--white);
    color: var(--orange);
}

.final-cta .cta:hover {
    transform: translateY(-2px);
}

.final-disclaimer {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-content {
    padding: var(--section-padding) 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    color: var(--text-gray);
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--orange);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--section-padding) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--peach);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--peach);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--peach);
}

.newsletter-signup {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h4 {
    color: var(--peach);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hamburger improvements */
    .mobile-toggle {
        position: relative;
        z-index: 1101;
        transition: transform 0.2s ease;
    }

    .mobile-toggle:active {
        transform: scale(0.9);
    }

    .mobile-toggle span {
        display: block;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Hamburger animation when open */
    body.menu-open .mobile-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    body.menu-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    body.menu-open .mobile-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .mobile-toggle {
        display: flex;
    }

    /* Backdrop improvements */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0s 0.3s;
        -webkit-tap-highlight-color: transparent;
    }

    .menu-backdrop.visible {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease, visibility 0s 0s;
    }

    /* Menu panel improvements */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(85vw, 340px);
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 0 2rem 0;
        z-index: 1100;
        gap: 0;

        /* Performance optimizations */
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;

        /* Scroll behavior */
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    /* Only add will-change during animation */
    .nav-links.animating {
        will-change: transform;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Menu items */
    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.125rem;
        min-height: 56px;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        border-bottom: 1px solid #F3F4F6;
        transition: background-color 0.15s ease;
        color: var(--charcoal) !important; /* FIXED: Force charcoal color */
        position: relative;
        z-index: 1101; /* FIXED: Ensure links are clickable */
    }

    .nav-links a:active {
        background-color: #F9FAFB;
    }

    /* Remove hover underline on mobile */
    .nav-links a:not(.cta)::before {
        content: none !important; /* FIXED: Added !important */
        display: none !important; /* FIXED: Added !important */
    }
    
    /* ADDED: Also remove ::after pseudo-element */
    .nav-links a:not(.cta)::after {
        content: none !important;
        display: none !important;
    }

    /* Prevent hover color change on touch devices */
    .nav-links a:hover {
        color: var(--charcoal) !important; /* FIXED: Added !important */
    }

/* Desktop active link styling */
.nav-links a.active {
    color: var(--orange) !important;
    font-weight: 600;
}

/* Mobile active link styling - keep it charcoal! */
@media (max-width: 768px) {
    .nav-links a.active {
        color: var(--charcoal) !important;
        font-weight: 600;
        border-left: 3px solid var(--orange);
    }
}

    /* CTA buttons in mobile menu - keep them properly styled */
    .nav-links .cta {
        margin: 0.5rem 24px;
        text-align: center;
        color: var(--white) !important; /* CTAs should be white text */
    }
    
    .nav-links .cta-primary {
        color: var(--white) !important;
    }
    
    .nav-links .cta-secondary,
    .nav-links .cta-outline {
        color: var(--orange) !important;
    }

    .nav-links li:has(> .cta-secondary) {
        margin-bottom: 0.5rem;
    }

    .nav-links .cta-outline {
        color: var(--orange);
        border-color: var(--orange);
    }

    .hero {
        padding: calc(3rem + 60px) 0 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .trust-bar {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-stats {
        gap: 2rem;
    }

    .cta-section {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    :root {
        --section-padding: 3rem;
    }

    .service-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .hero img {
        width: 100%;
        max-width: 400px;
    }

    .final-cta img {
        width: 100%;
        max-width: 500px;
    }
}

/* Enhanced FAQ Styles */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 4px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    background: #000;
    border-radius: 32px 32px 0 0;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 2px;
}

.signal-dots {
    display: flex;
    gap: 2px;
}

.signal-dot {
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
}

.battery {
    width: 24px;
    height: 12px;
    border: 1px solid white;
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 0 1px 1px 0;
}

.battery-fill {
    width: 80%;
    height: 100%;
    background: #34c759;
    border-radius: 1px;
}

.chat-header {
    background: #f8f8f8;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    display: block;
    text-align: center;
}

.profile-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: url('../images/logo/thumbnail-logo.png') no-repeat center center/cover;
    margin: 0 auto;
}

.chat-info {
    display: none;
}

.chat-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.chat-info p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.message-group {
    margin-bottom: 16px;
}

.message-meta {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.message-meta.question {
    justify-content: flex-end;
}

.read-receipt {
    color: #007AFF;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.read-receipt.visible {
    opacity: 1;
}

.timestamp {
    opacity: 0.7;
}

.questions-header {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--charcoal);
    font-size: 14px;
}

.show-more-btn {
    width: 100%;
    padding: 12px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.show-more-btn:hover {
    background: var(--orange-dark);
}

.show-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Update existing styles */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 6px;
    background: #1c1c1e;
    border-radius: 3px;
    z-index: 10;
}

.chat-container {
    border-radius: 0 0 32px 32px;
}

.chat-window {
    padding: 16px;
}

.chat-bubble {
    padding: 12px 16px;
    margin-bottom: 2px;
    position: relative;
    word-wrap: break-word;
}

.faq-questions {
    padding: 16px;
    background: #f8f8f8;
    border-radius: 0 0 32px 32px;
}

.faq-question-item {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
    background: white;
    font-size: 14px;
    line-height: 1.3;
}

.faq-question-item:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.faq-question-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Focus visible for keyboard navigation */
.nav-links a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
    border-radius: 0.25rem;
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Focus States for Accessibility */
.cta:focus,
.nav-links a:focus,
.logo:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --orange: #e6684a;
        --text-gray: #1F2937;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .cta,
    .pricing-card,
    .service-card,
    .step-card,
    .value-card {
        transition: none;
    }

    .cta:hover,
    .pricing-card:hover {
        transform: none;
    }

    .nav-links,
    .menu-backdrop,
    .mobile-toggle span {
        transition: none;
    }
}

/* --- Wisdom Wall Page Styles --- */
.wisdom-wall-page {
  background: linear-gradient(180deg, #FFFBF5 0%, #F8FBFF 100%);
}

.wisdom-wall-header {
    padding: calc(4rem + 60px) 0 2rem;
    text-align: center;
    background: var(--cream);
}

.wisdom-wall {
    padding: var(--section-padding) 0;
}

.wisdom-form-section {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray);
    border-radius: 0.5rem;
    font-family: var(--font-primary);
    font-size: 16px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.invisible-line {
  border: none;
  margin: 1rem 0;
}

/* ==========================================
   REALISTIC BREAST MILK STORAGE BAG DESIGN
   with VISIBLE milk fill levels
   ========================================== */

.milk-bag {
  position: relative;
  width: 280px;
  height: 380px;
  background: linear-gradient(to right,
    rgba(245, 245, 245, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 50%,
    rgba(245, 245, 245, 0.95) 100%);
  border: 2px solid rgba(180, 180, 180, 0.6);
  border-radius: 12px;
  box-shadow:
    /* Plastic bag depth */
    inset -3px 0 8px rgba(0, 0, 0, 0.08),
    inset 3px 0 8px rgba(255, 255, 255, 0.7),
    /* External shadow */
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: gentleFloat 6s ease-in-out infinite;
}

.milk-bag:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    inset -3px 0 8px rgba(0, 0, 0, 0.08),
    inset 3px 0 8px rgba(255, 255, 255, 0.7),
    0 12px 32px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Zip seal at top */
.milk-bag::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 15px;
  right: 15px;
  height: 12px;
  background: linear-gradient(to bottom,
    #e8e8e8 0%,
    #d5d5d5 30%,
    #c0c0c0 50%,
    #d5d5d5 70%,
    #e8e8e8 100%);
  border: 1px solid #a8a8a8;
  border-radius: 2px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 15;
}

/* Zip seal ridges */
.milk-bag::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 15px;
  right: 15px;
  height: 8px;
  background: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 3px
  );
  z-index: 16;
  pointer-events: none;
}

/* Left side seam/fold */
.milk-bag-seam-left {
  position: absolute;
  left: 22px;
  top: 50px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.08) 100%);
  box-shadow:
    1px 0 2px rgba(255, 255, 255, 0.6),
    -1px 0 2px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

/* Right side seam/fold */
.milk-bag-seam-right {
  position: absolute;
  right: 22px;
  top: 50px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.08) 100%);
  box-shadow:
    1px 0 2px rgba(255, 255, 255, 0.6),
    -1px 0 2px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

/* Measurement markings on left side */
.milk-bag-measurements {
  position: absolute;
  left: 35px;
  top: 80px;
  bottom: 40px;
  width: 25px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.measurement-line {
  height: 1px;
  background: rgba(150, 150, 150, 0.4);
  position: relative;
}

.measurement-line::before {
  content: attr(data-oz);
  position: absolute;
  right: 8px;
  top: -8px;
  font-size: 10px;
  color: rgba(100, 100, 100, 0.6);
  font-family: Arial, sans-serif;
}

/* THE MILK - This is the key element that fills! */
.milk-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--milk-level, 0%);
  background: linear-gradient(to bottom,
    rgba(255, 250, 235, 0.95) 0%,
    rgba(255, 245, 220, 0.98) 20%,
    rgba(255, 240, 210, 1) 100%);
  border-top: 2px solid rgba(255, 235, 190, 0.8);
  box-shadow:
    inset 0 4px 12px rgba(255, 255, 255, 0.6),
    inset 0 -2px 8px rgba(200, 180, 140, 0.3);
  transition: height 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 2;
}

/* Milk surface shimmer */
.milk-fill::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(2px);
}

/* Content area for text */
.milk-bag-content {
  position: relative;
  padding: 55px 35px 25px;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Handwritten text area */
.milk-bag-text {
  flex: 1;
  font-family: 'Permanent Marker', 'Comic Sans MS', cursive;
  font-size: 16px;
  line-height: 1.4;
  color: #2c2c2c;
  margin-bottom: 15px;
  text-align: left;
  word-wrap: break-word;
  min-height: 120px;
}

/* Author signature */
.milk-bag-author {
  font-family: 'Permanent Marker', cursive;
  font-size: 13px;
  font-style: italic;
  color: #555;
  text-align: right;
  margin-top: auto;
  margin-bottom: 10px;
}

/* Upvote section at bottom */
.milk-bag-upvote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin-top: auto;
  z-index: 10;
  position: relative;
}

.upvote-button {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.upvote-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
  background: linear-gradient(135deg, #5A9FED 0%, #4589CD 100%);
}

.upvote-button.upvoted {
  background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

.droplet-icon {
  font-size: 16px;
}

/* Floating animation */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(0.5deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
  75% { transform: translateY(-5px) rotate(-0.5deg); }
}

/* Container grid */
#wisdom-wall-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Instructions overlay */
.instructions-banner {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-left: 4px solid #2196F3;
  padding: 20px 25px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.instructions-banner h3 {
  margin: 0 0 12px 0;
  color: #1976D2;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.instructions-banner p {
  margin: 8px 0;
  color: #424242;
  font-size: 15px;
  line-height: 1.6;
}

.instructions-banner strong {
  color: #1565C0;
}

/* --- Signup Page Styles --- */

.signup-section {
  padding: 2rem 0;
  background-color: var(--light-gray);
}

.signup-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Login prompt styling */
.login-prompt {
  text-align: center;
  margin-bottom: 2rem;
}

.login-prompt p {
    color: var(--text-gray);
}

.login-prompt a {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
}

.login-prompt a:hover {
    text-decoration: underline;
}

.email-link {
    color: var(--orange);
    font-weight: 500;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* Custom form header */
.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.form-header h2 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.form-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* The "paper" inside the clipboard */
.signup-section .card {
  padding: 0;
  border: 1px solid var(--gray);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--white);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* Loading state */
.iframe-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--white);
  min-height: 400px;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--gray);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.iframe-loader p {
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0;
}

/* Error state */
.iframe-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--light-gray);
  min-height: 400px;
  text-align: center;
}

.iframe-error p {
  color: var(--charcoal);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

/* Iframe styling */
.signup-iframe {
  width: 100%;
  height: 80vh;
  max-height: 750px;
  min-height: 500px;
  border: none;
  display: block;
  background: var(--white);
}

/* Footer text below the clipboard */
.form-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.form-footer a {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .signup-section {
    padding: 1.5rem 0;
  }

  .form-header {
    margin-bottom: 2rem;
  }

  .form-header h2 {
    font-size: 1.75rem;
  }

  .form-header p {
    font-size: 1rem;
  }

  .clipboard {
    padding: 2rem 1rem 1rem;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
  }

  .clipboard-clip {
    width: 100px;
    height: 30px;
    top: -1rem;
  }

  .clipboard-clip::before {
    left: 10px;
    width: 10px;
    height: 10px;
  }

  .clipboard-clip::after {
    right: 10px;
    width: 10px;
    height: 10px;
  }

  .clip-spring {
    width: 45px;
  }

  .signup-iframe {
    height: 70vh;
    max-height: 600px;
    min-height: 450px;
  }

  .iframe-loader,
  .iframe-error {
    padding: 3rem 1.5rem;
    min-height: 350px;
  }

  .loader-spinner {
    width: 40px;
    height: 40px;
  }
}

/* Very small mobile devices */
@media (max-width: 480px) {
  .clipboard {
    padding: 1.75rem 0.75rem 0.75rem;
    margin: 0 0.25rem;
  }

  .clipboard-clip {
    width: 80px;
    height: 25px;
  }

  .clip-spring {
    width: 35px;
    height: 2px;
  }

  .signup-iframe {
    height: 65vh;
    min-height: 400px;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-header p {
    font-size: 0.95rem;
  }
}

/* Accessibility: Focus states */
.signup-iframe:focus {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .clipboard {
    transition: none;
  }

  .clipboard:hover {
    transform: none;
  }

  .loader-spinner {
    animation: none;
    border-top-color: var(--gray);
  }
}

/* Print styles */
@media print {
  .clipboard,
  .clipboard-clip,
  .clipboard-shadow {
    box-shadow: none;
    background: white;
  }

  .signup-iframe {
    display: none;
  }

  .iframe-loader,
  .iframe-error {
    display: none;
  }

  .form-footer::after {
    content: ' - Please visit our website to complete booking';
  }
}
/* Header */

/* Footer */