/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --primary-color: #1a365d;
    --secondary-color: #2d5a8c;
    --accent-color: #a67c52;
    --light-color: #f8f9fa;
    --dark-color: #333;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    font-variant-ligatures: no-common-ligatures;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; color: var(--secondary-color); }
p { margin-bottom: 15px; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul { list-style: none; }

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary { background-color: var(--accent-color); color: white; }
.btn-primary:hover { background-color: #8a6845; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3); }
.btn-secondary { background-color: var(--primary-color); color: white; }
.btn-secondary:hover { background-color: #152a47; transform: translateY(-3px); }

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000; /* Highest Z-index to stay on top */
    max-height: 100px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    margin-top: 5px;
    display: block;
}

.nav-right { flex: 0 0 auto; display: flex; align-items: center; gap: 30px; }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu li a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
    display: block;
}
.nav-menu li a:hover, .nav-menu li a.active { color: var(--accent-color); }

/* Dropdown */
.nav-menu .dropdown { position: relative; }
.nav-menu .dropdown-toggle { display: inline-flex; align-items: center; gap: 8px; }
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%; left: 0; min-width: 220px;
    background: #fff; border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 8px 0; display: none; z-index: 2000;
}
.nav-menu .dropdown-menu li a { display: block; padding: 10px 16px; color: var(--dark-color); font-weight: 600; }
.nav-menu .dropdown-menu li a:hover { background: var(--light-gray); color: var(--primary-color); }
.nav-menu .dropdown:hover .dropdown-menu { display: block; }

.booking-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.booking-btn:hover { background-color: #8a6845; transform: translateY(-2px); }

/* Hamburger */
.hamburger { display: none; cursor: pointer; background: none; border: none; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--dark-color); }

/* ========================================= */
/* HERO VIDEO PARALLAX EFFECT (UPDATED) */
/* ========================================= */
.hero-video {
    position: sticky; /* Sticky is key for the scroll effect */
    top: 0;
    z-index: 1; /* Low Z-index so content slides OVER it */
    height: 88vh; /* Must be full viewport height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Update the media class to handle images specifically */
.hero-video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This ensures the image covers the area without distortion */
    object-fit: cover; 
    /* Centers the image within the frame */
    object-position: center; 
    z-index: 0;
}

/* Optional: Add a slight zoom effect on page load for a premium feel */
@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-video img.hero-video__media {
    animation: heroZoom 10s ease-out forwards;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 107, 119, 0.75) 0%, rgba(166, 124, 82, 0.45) 100%);
    z-index: 1;
}

.hero-video__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
}

.hero-video__title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-video__subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

/* ========================================= */
/* MAIN CONTENT WRAPPER (NEW) */
/* ========================================= */
.main-content-wrapper {
    position: relative;
    z-index: 10; /* Higher than hero video (10 > 1) */
    background-color: white; /* Creates the opaque "curtain" */
    width: 100%;
    /* Add a slight shadow to enhance the depth effect */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1); 
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    position: relative;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; position: relative; display: inline-block; }
.section-header h2::after {
    content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 4px; background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}
.section-header p { color: var(--gray-color); font-size: 1.2rem; max-width: 700px; margin: 30px auto 0; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card {
    background-color: transparent; border-radius: 15px; overflow: hidden; position: relative;
    height: 380px; transition: all 0.4s ease; cursor: pointer;
}
.service-card .card-inner { position: relative; width: 100%; height: 100%; }
.service-card .card-front {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform 0.6s ease;
}
.service-card:hover .card-front { transform: scale(1.05); }
.service-card .card-front::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8)); }
.service-card .card-title {
    position: absolute; bottom: 0; padding: 25px; color: white; font-size: 1.3rem; font-weight: 600; z-index: 2;
}
.service-card .card-back {
    position: absolute; inset: 0; padding: 30px; background: white;
    transform: translateY(100%); transition: transform 0.5s ease;
    display: flex; flex-direction: column; justify-content: center; text-align: center; z-index: 3;
}
.service-card:hover .card-back { transform: translateY(0); }

/* About Section */
.about-image-section { position: relative; padding: 60px 0; background: #ffffff; overflow: hidden; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1300px; margin: 0 auto; }
.about-subtitle { color: var(--accent-color); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.about-text h2 { font-size: 3rem; line-height: 1.1; color: var(--primary-color); margin: 25px 0; }
.about-text p { color: #555; font-size: 1.1rem; }
.about-signature { display: flex; align-items: center; gap: 15px; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.sign-image { height: 45px; opacity: 0.9; }

.about-images { position: relative; height: 450px; }
.img-back { position: absolute; top: 0; right: 0; width: 65%; height: 85%; z-index: 1; }
.img-back img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.img-front { position: absolute; bottom: 0; left: 0; width: 55%; height: 65%; z-index: 2; border: 8px solid white; border-radius: 10px; }
.img-front img { width: 100%; height: 100%; object-fit: cover; }

/* USP Section Override */
.usp-section { padding:120px 0; background: #ffffff; }
.usp-section .about-image img { width: 100%; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

/* Gallery */
.gallery-section { padding: 60px 0; background: var(--primary-color); }
.gallery-section h2, .gallery-section p { color: white; }
.gallery-scroll-container { position: relative; padding: 20px 0; }
.gallery-scroll { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; }
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item { flex: 0 0 auto; width: 300px; position: relative; border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 350px; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item video,
.gallery-item .gallery-video {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: #000;
    border-radius: 12px;
}

.gallery-item:hover video,
.gallery-item:hover .gallery-video {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex; align-items: flex-end; padding: 30px; opacity: 0; transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: white; transform: translateY(20px); transition: 0.3s; }
.gallery-item:hover h4 { transform: translateY(0); }
.scroll-btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
    background: white; border: none; border-radius: 50%; cursor: pointer; color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 5;
}
.scroll-left { left: -20px; } .scroll-right { right: -20px; }
.view-all { text-align: center; margin-top: 40px; }

/* Testimonials */
.testimonials-section { padding: 120px 0; background: linear-gradient(135deg, #f8f8f8, #ffffff); }
.testimonials-carousel { max-width: 1000px; margin: 0 auto; position: relative; }
.testimonial-slide { display: none; text-align: center; animation: fadeUp 0.5s ease; }
.testimonial-slide.active { display: block; }
.testimonial-card { background: white; border-radius: 20px; padding: 60px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); position: relative; }
.testimonial-card::before { content: '❝'; position: absolute; top: 40px; left: 40px; font-size: 5rem; color: var(--accent-color); opacity: 0.1; }
.testimonial-text { font-size: 1.3rem; font-style: italic; color: #444; margin-bottom: 30px; }
.author-info h4 { color: var(--primary-color); margin-bottom: 5px; }
.stars { color: #ffc107; }
.testimonial-controls { display: flex; justify-content: center; align-items: center; gap: 30px; margin-top: 40px; }
.testimonial-prev, .testimonial-next { background: white; border: 2px solid var(--accent-color); width: 40px; height: 40px; border-radius: 50%; color: var(--accent-color); cursor: pointer; }
.indicator { width: 12px; height: 12px; border-radius: 50%; background: #ddd; cursor: pointer; }
.indicator.active { background: var(--accent-color); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer { background-color: #111; color: #aaa; padding: 80px 0 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-logo h2 { color: white; margin-bottom: 10px; }
.footer-social a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #aaa; align-items: center; justify-content: center; margin-right: 10px; }
.footer-links a { color: #aaa; display: block; margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; }

/* Responsive */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 350px; }
    .nav-right { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-right.active { display: flex; }
    .hamburger { display: block; }
}

@media (max-width: 576px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-video__title { font-size: 2rem; }
    .about-images { height: 280px; }
    .testimonial-card { padding: 30px; }
}

/* Service Pages Styles */
.service-hero {
    padding: 100px 0;
    color: white;
    text-align: center;
    background-size: cover !important;
    background-position: center !important;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.service-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.service-sections {
    padding: 80px 0;
}

.service-section {
    margin-bottom: 80px;
}

.service-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.service-section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-block;
    padding-bottom: 15px;
}

.service-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 20px;
}

/* Benefits Grid - 4 items in single line */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Procedure Steps */
.procedure-steps {
    display: grid;
    gap: 25px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
}

/* Risks Section */
.risks-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.warning-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-box i {
    color: #ffc107;
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-box-content {
    flex: 1;
}

.warning-box h4 {
    color: #d68910;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.warning-box p {
    color: #5d4037;
    margin: 0;
    line-height: 1.6;
}

/* Risks List - 2 items side by side */
.risks-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.risk-item h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
    font-size: 1.3rem;
}

.risk-item ul {
    list-style-type: disc;
    padding-left: 20px;
}

.risk-item li {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.safety-note {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px;
    margin-top: 30px;
}

.safety-note p {
    color: #1b5e20;
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Recovery Timeline - 4 items in single line */
.recovery-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.timeline-item {
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.timeline-item p {
    color: var(--gray-color);
    line-height: 1.7;
    margin: 0;
}

.aftercare-tips {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.aftercare-tips h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.aftercare-tips ul {
    list-style-type: disc;
    padding-left: 20px;
}

.aftercare-tips li {
    margin-bottom: 10px;
    color: var(--gray-color);
}

/* CTA Section */
.service-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.9));
    color: white;
    border-radius: 15px;
    margin-top: 80px;
}

.service-cta h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.cta-buttons .btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.cta-buttons .btn-primary:hover {
    background-color: #8a6845;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.3);
}

.cta-buttons .btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: #152a47;
    transform: translateY(-3px);
}

/* RESPONSIVE DESIGN FOR SERVICE PAGES */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .recovery-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .risks-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-hero h1 {
        font-size: 2.8rem;
    }
    
    .service-section-header h2 {
        font-size: 2.2rem;
    }
}

/* Mobile Devices (576px - 768px) */
@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .service-hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .service-sections {
        padding: 60px 0;
    }
    
    .service-section {
        margin-bottom: 60px;
    }
    
    .service-section-header {
        margin-bottom: 40px;
    }
    
    .service-section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .risks-content {
        padding: 25px 20px;
    }
    
    .warning-box {
        padding: 20px;
    }
    
    .recovery-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-item {
        padding: 25px 20px;
    }
    
    .aftercare-tips {
        padding: 25px 20px;
    }
    
    .service-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .service-cta h3 {
        font-size: 1.8rem;
    }
    
    .service-cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile Devices (up to 576px) */
@media (max-width: 576px) {
    .service-hero {
        padding: 70px 0;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-sections {
        padding: 50px 0;
    }
    
    .service-section {
        margin-bottom: 50px;
    }
    
    .service-section-header h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .risks-content {
        padding: 20px 15px;
    }
    
    .recovery-timeline {
        gap: 15px;
    }
    
    .timeline-item {
        padding: 20px 15px;
    }
    
    .service-cta {
        padding: 40px 15px;
        margin-top: 50px;
    }
    
    .service-cta h3 {
        font-size: 1.6rem;
    }
    
    .service-cta p {
        font-size: 1rem;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .service-section-content {
        max-width: 1300px;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .recovery-timeline {
        gap: 30px;
    }
    
    .benefit-item {
        padding: 35px 25px;
    }
    
    .timeline-item {
        padding: 35px 30px;
    }
}
/* --- New USP Grid Styles --- */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for desktop */
    gap: 60px 30px;
    margin-top: 30px;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.usp-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.usp-item strong {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usp-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 1.5;
    margin: 0;
}

/* --- Service Card Text Refinement --- */
.service-card .card-back h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-card .card-back p {
    font-size: 0.95rem;
    color: var(--gray-color);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
}

/* Ensuring the main content wrapper has enough padding */
.main-content-wrapper {
    padding-bottom: 0; /* Let sections handle their own padding */
}
/* Booking Form Container */
.booking-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.booking-form h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-size: 1.8rem;
}

/* Form Groups and Inputs */
.form-group {
    margin-bottom: 20px;
}

.booking-form input, 
.booking-form select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.booking-form input:focus, 
.booking-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(166, 124, 82, 0.1);
}

/* Specific styling for Date input to match theme */
.booking-form input[type="date"] {
    color: var(--gray-color);
}

/* Submit Button Override */
.booking-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    margin-top: 10px;
}

/* --- Booking Features Row --- */
.booking-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

.booking-feature {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.booking-feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.booking-feature span {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-form {
        padding: 30px 20px;
    }
    
    .booking-features {
        flex-direction: column;
        gap: 40px;
    }
}