* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header + Wave Section */
.header-wave-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent; /* Make transparent so main background shows through */
    box-shadow: none; /* Remove shadow so it doesn't interfere */
}

/* Header Styles */
header {
    position: relative;
    background: white;
    z-index: 1002;
    min-height: 60px; /* Ensure consistent header height */
    width: 100%; /* Span full viewport width */
    padding-top: 1.8rem; /* Move logo down more */
}

/* Desktop header height reduction */
@media (min-width: 769px) {
    header {
        padding-top: 1rem; /* Reduce header height on desktop */
    }
    
    .header-content {
        padding-bottom: 0; /* Remove bottom padding on desktop */
    }
    
    .wave-bottom img {
        transform: scaleY(0.5); /* Make wave half height on desktop */
        transform-origin: top; /* Scale from top edge to maintain connection */
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px; /* Match container padding */
    padding-right: 50px; /* Move button further from right edge */
}

/* Wave Bottom - Allow background to show through */
.wave-bottom {
    position: relative;
    height: auto;
    overflow: visible;
    background: transparent;
    z-index: 1001;
    border: none;
}

.wave-bottom img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border: none;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0.5rem; /* Move logo slightly to the right */
}

.cn-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Header Book Now Button */
.header-book-now-btn {
    background: linear-gradient(135deg, #20c757 0%, #1ea750 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 199, 87, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.header-book-now-btn:hover {
    background: linear-gradient(135deg, #1ea750 0%, #17a047 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 199, 87, 0.4);
}

.header-book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(32, 199, 87, 0.3);
}

/* Main Section - Background starts from top to show behind header/wave */
.main {
    min-height: 100vh;
    background: 
        linear-gradient(180deg, rgba(51, 143, 191, 0.4) 0%, rgba(88, 48, 215, 0.4) 68%),
        url('images/bg.svg'),
        linear-gradient(180deg, #338fbf 0%, #5830d7 68%);
    background-size: 
        cover,
        cover,
        cover;
    background-repeat: 
        no-repeat,
        no-repeat,
        no-repeat;
    background-position: 
        center center,
        center center,
        center center;
    position: relative;
    background-attachment: scroll;
    /* Position main content to start from top so background shows behind header */
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    z-index: 1;
}

.main .content {
    position: relative;
    padding: 2rem;
    /* Add top padding to account for header height */
    padding-top: calc(60px + 2rem); /* Header + wave height + spacing */
    min-height: 100vh;
    background: transparent;
}

.main .content .container {
    position: relative;
    padding-bottom: 4rem;
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: white;
    padding: 3rem 0 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content .tagline {
    font-size: 1.6rem;
    color: #ffcc02;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}



/* Common star styling for all star elements */
.stars {
    color: #fbbc04 !important;
    letter-spacing: 1px;
}

.rating-stars {
    font-size: 1.4rem;
}

.rating-text {
    font-weight: 500;
    color: #202124;
}

.rating-text strong {
    font-size: 1.1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    line-height: 1.6;
    color: #f6f7f8;
}

/* Hero Video Styles */
.hero-video {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 2rem auto;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-video::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 13px; /* Slightly smaller than container for clean edges */
}

/* Social Proof Section - What Parents Think */
.social-proof-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.google-rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.google-rating-summary .google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #5f6368;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-summary .rating-stars {
    font-size: 1.2rem;
}

.rating-summary .rating-text {
    font-weight: 600;
    color: #202124;
    font-size: 1rem;
}

/* Trust Badges Inline */
.trust-badges-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.trust-badge-inline {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-weight: 600;
    color: #202124;
    font-size: 1rem;
}

.review-stars {
    font-size: 1rem;
}

.review-date {
    color: #5f6368;
    font-size: 0.85rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #202124;
    font-style: italic;
}

/* Read More Functionality */
.read-more-link,
.read-less-link {
    color: #4285f4;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    font-style: normal;
    transition: color 0.2s ease;
}

.read-more-link:hover,
.read-less-link:hover {
    color: #1a73e8;
    text-decoration: underline;
}

.more-reviews {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.more-reviews p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.more-reviews strong {
    color: #d4af37;
}

/* Simple Trust Badges */
.simple-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.simple-badge {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
    margin-top: 0.5rem;
}

/* Info Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.callout-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.callout-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.callout-card:nth-child(1) { animation-delay: 0.1s; }
.callout-card:nth-child(2) { animation-delay: 0.2s; }
.callout-card:nth-child(3) { animation-delay: 0.3s; }
.callout-card:nth-child(4) { animation-delay: 0.4s; }
.callout-card:nth-child(5) { animation-delay: 0.5s; }

.callout-card h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    position: relative;
}

.callout-card h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: #20c757;
    border-radius: 2px;
}

.callout-card h3 {
    font-size: 1.5rem;
    color: #0067be;
    margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 0;
}

.benefits-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.benefits-list.compact li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
    line-height: 1.3;
}

.benefits-list li::before {
    content: "✓";
    background: #20c757;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
}

.benefits-list.compact li::before {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
}

.benefit-description {
    margin-left: 0.5rem;
}



/* Guarantee Card */
.guarantee-card {
    background: rgba(32, 199, 87, 0.95) !important;
    color: white;
    border: 2px solid #20c757 !important;
}

.guarantee-card h3 {
    color: white !important;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.guarantee-note {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

/* Store Hours */
.store-hours h3 {
    color: #0067be;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.store-hours p {
    margin-bottom: 0.5rem;
    color: #333;
}

.store-hours strong {
    color: #0067be;
}

/* Form Column */
.form-column {
    position: relative;
}

.booking-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out 0.2s both;
    position: sticky;
    top: 120px;
}

.booking-card h2 {
    font-size: 2rem;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.booking-card h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #20c757;
    border-radius: 2px;
}

.booking-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.urgency-timer {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
    animation: urgencyPulse 3s infinite;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

@keyframes urgencyPulse {
    0% { 
        background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
        transform: scale(1);
    }
    50% { 
        background: linear-gradient(135deg, #ff3742 0%, #ff2731 100%);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
        transform: scale(1.02);
    }
    100% { 
        background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
        transform: scale(1);
    }
}

/* Form Styles */
.form-container {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #20c757;
    box-shadow: 0 0 0 3px rgba(32, 199, 87, 0.1);
    background: white;
    transform: translateY(-2px);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    accent-color: #20c757;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, #20c757 0%, #17a2b8 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(32, 199, 87, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(32, 199, 87, 0.4);
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.privacy-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Calendar Embed */
.calendar-embed {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Messages */
.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c757 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.error-message {
    background: #dc3545;
    color: white;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

/* Trust Section Footer */
.trust-section {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.trust-item {
    color: #333;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fbbc04;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

/* Stars in trust section inherit from common .stars class */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styling for better visual integration */
.field-error {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group input.focused,
.form-group select.focused {
    border-color: #20c757 !important;
    box-shadow: 0 0 0 3px rgba(32, 199, 87, 0.1) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-column {
        order: 2;
        position: static;
    }
    
    .booking-card {
        position: static;
        top: auto;
    }
    
    .info-column {
        order: 1;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .tagline {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .callout-card,
    .booking-card {
        padding: 1.5rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .trust-number {
        font-size: 1.8rem;
    }
    
    .header-content {
        padding: 0.15rem 1rem;
        padding-right: 30px; /* Move button further from right edge on mobile */
    }
    
    header {
        padding-top: 1.5rem;
    }
    
    .cn-logo {
        height: 30px;
    }
    
    .header-book-now-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    .main .content {
        padding: 1rem;
        padding-top: calc(60px + 1rem); /* Adjusted for smaller mobile header */
    }
    
    /* Mobile Hero Video Adjustments */
    .hero-video {
        max-width: 100%;
        margin: 1.5rem auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .hero-video iframe {
        border-radius: 10px;
    }
    
    /* Mobile Social Proof Adjustments */
    .social-proof-section {
        padding: 1.5rem;
        margin: 1.5rem auto;
        border-radius: 15px;
    }
    
    .google-rating-summary {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .trust-badges-inline {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .trust-badge-inline {
        width: 70px;
        height: 70px;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .more-reviews p {
        font-size: 1rem;
    }
    
    /* Mobile Simple Trust Badges */
    .simple-badge {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .tagline {
        font-size: 1.1rem;
    }
    
    .callout-card h2,
    .booking-card h2 {
        font-size: 1.6rem;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .benefits-list li > div {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }
    
    .benefit-description {
        display: block;
        font-weight: normal;
        margin-left: 0;
        line-height: 1.4;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.8rem;
    }
    
    .btn-primary {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .callout-card,
    .booking-card {
        padding: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .trust-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: #333;
    }
    
    .trust-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .header-content {
        padding-right: 25px; /* Move button further from right edge on smallest screens */
    }
    
    .header-book-now-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
    
    /* Very Small Mobile Hero Video */
    .hero-video {
        margin: 1rem auto;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    }
    
    .hero-video iframe {
        border-radius: 8px;
    }
    
    /* Very Small Mobile Social Proof */
    .social-proof-section {
        padding: 1.2rem;
        margin: 1rem auto;
        border-radius: 12px;
    }
    
    .google-rating-summary {
        padding: 0.6rem;
    }
    
    .trust-badges-inline {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .trust-badge-inline {
        width: 60px;
        height: 60px;
    }
    
    .google-rating-summary .google-logo {
        font-size: 1rem;
    }
    
    .rating-summary .rating-text {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    /* Mobile Read More Links */
    .read-more-link,
    .read-less-link {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .more-reviews p {
        font-size: 0.95rem;
    }
    
    /* Very Small Mobile Simple Trust Badges */
    .simple-badge {
        width: 35px;
        height: 35px;
    }
}

/* Simple Booking Interface */
.simple-booking {
    margin-top: 0.5rem;
}

.booking-days {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.day-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.time-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
}

.time-button {
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc((100% - 0.75rem) / 2);
    text-align: center;
    flex: 0 0 auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Available time slots - clickable */
.time-button.available {
    background: linear-gradient(135deg, #20c757 0%, #17a74a 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(32, 199, 87, 0.2);
}

.time-button.available:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 199, 87, 0.4);
    background: linear-gradient(135deg, #1da653 0%, #159447 100%);
}

.time-button.available:active {
    transform: translateY(0);
}

/* Booked time slots - not clickable, clearly marked */
.time-button.booked {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    cursor: not-allowed;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
}

.time-button.booked:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.time-button.booked .booked-indicator {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Unavailable time slots - for future use */
.time-button.unavailable {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.time-button.unavailable:hover {
    transform: none;
    box-shadow: none;
}

/* Phantom bookings - greyed out but visible */
.time-button.phantom {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: 0 2px 8px rgba(158, 158, 158, 0.2);
}

.time-button.phantom:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(158, 158, 158, 0.2);
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
}

.time-button.phantom .phantom-indicator {
    color: #e0e0e0;
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0.8;
}

.request-different-time {
    margin-top: 2rem;
    text-align: left;
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

/* Remove old booking widget styles - no longer needed */

.loading-slots {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #20c757;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes urgencyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.booking-form {
    background: rgba(45, 138, 189, 0.05);
    border: 2px solid #20c757;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.booking-form h3 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.field-note {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.request-time-section {
    margin-top: 2rem;
    text-align: center;
}

.request-time-divider {
    position: relative;
    margin: 1.5rem 0;
}

.request-time-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.request-time-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background: rgba(45, 138, 189, 0.1);
    border: 2px solid #2d8abd;
    color: #2d8abd;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

.btn-secondary:hover {
    background: #2d8abd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 138, 189, 0.3);
}

.request-note {
    color: #666;
    font-size: 0.85rem;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

/* Wide buttons to match full container width */
.btn-secondary.wide-button {
    width: 100%;
    max-width: 100%;
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .simple-booking {
        margin-top: 0.5rem;
    }
    
    .booking-days {
        gap: 1.5rem;
    }
    
    .day-section {
        gap: 0.75rem;
    }
    
    .day-title {
        font-size: 1.1rem;
    }
    
    .time-buttons {
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .time-button {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        width: calc((100% - 0.75rem) / 2);
        flex: 0 0 auto;
        max-width: none;
    }
    
    .request-different-time {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Wide buttons on mobile - full width */
    .btn-secondary.wide-button {
        width: 100%;
        max-width: 100%;
    }
    

}

/* No availability message styling */
.no-availability {
    text-align: center;
    padding: 1.5rem;
    background: rgba(128, 128, 128, 0.1);
    border: 2px dashed #ccc;
    border-radius: 12px;
    color: #666;
}

.no-availability p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Google Logo SVG as reusable CSS class */
.google-logo-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z' fill='%234285F4'/%3E%3Cpath d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z' fill='%2334A853'/%3E%3Cpath d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z' fill='%23FBBC05'/%3E%3Cpath d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z' fill='%23EA4335'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.google-logo-icon.small {
    width: 18px;
    height: 18px;
}