:root {
    /* Premium Color Palette */
    --primary-teal: #0A877A; /* Slightly deeper, calmer teal */
    --primary-light: #F2FAFA; /* Softened light teal */
    --primary-gradient: linear-gradient(135deg, #0A877A 0%, #065F56 100%);
    --secondary-gold: #C9A227; /* More refined gold */
    
    /* Neutral Tones */
    --text-dark: #111827; /* Richer dark */
    --text-medium: #4B5563;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --light-gray: #F9FAFB; /* Pure cool gray */
    --border-soft: #E5E7EB;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Soft Shadows for Lift */
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 12px 35px rgba(201, 162, 39, 0.15);
    
    /* 8px Spacing System & Borders */
    --spacing-1: 8px;
    --spacing-2: 16px;
    --spacing-3: 24px;
    --spacing-4: 32px;
    --spacing-6: 48px;
    --spacing-8: 64px;
    --spacing-12: 96px;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-width: 1200px;
    --header-height: 88px; /* multiple of 8 approx */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--light-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600; /* Slightly softer than 700 for elegance */
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: inherit;
}

.container {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: var(--spacing-12) 0; /* 96px */
}

.bg-light { background-color: var(--light-gray); }
.bg-teal { background-color: var(--primary-teal); }
.text-white { color: var(--white); }
.teal-text { color: var(--primary-teal); }
.accent-text { color: var(--secondary-gold); }

/* Typography Helpers */
.section-tag {
    display: inline-block;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
}

h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px; /* 8px multiples */
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(10, 135, 122, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(10, 135, 122, 0.35);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-teal);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-teal);
    border: 2px solid rgba(13, 148, 136, 0.3);
}

.btn-outline:hover {
    background-color: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
    transform: translateY(-4px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-teal);
    box-shadow: var(--shadow-soft);
}

.btn-large {
    padding: 20px 45px;
    font-size: 1.1rem;
}

.btn-text {
    color: var(--primary-teal);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.btn-text:hover i {
    transform: translateX(8px);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-medium);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    color: var(--primary-teal);
    line-height: 0.9;
}

.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--text-medium);
    font-weight: 600;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.9rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height); /* LOWERED HERO */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--white);
    z-index: -2;
}

/* Modern Animated Background Shapes */
.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatShape 20s infinite ease-in-out alternate;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(10, 135, 122, 0.2); /* Soft Teal */
    top: -10%;
    right: -10%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(201, 162, 39, 0.15); /* Soft Gold */
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 50px) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.hero-text-box {
    max-width: 700px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(13, 148, 136, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 30px;
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 45px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--secondary-gold);
    vertical-align: super;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 10px;
    font-weight: 600;
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 160px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-medium);
    font-weight: 600;
}

.benefit-list {
    margin: 40px 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 1.05rem;
}

.benefit-list i {
    color: var(--primary-teal);
    background: var(--primary-light);
    padding: 6px;
    border-radius: 50%;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 135, 122, 0.2), 0 0 30px rgba(10, 135, 122, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(10, 135, 122, 0.2);
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 30px;
}

.service-price {
    display: block;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* --- Advanced Carousel System --- */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px; /* Space for dots */
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 15px; /* Slight padding so shadow isn't cut off */
    box-sizing: border-box;
}

/* Dots Pagination */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--primary-teal);
    transform: scale(1.3);
}

/* Results Grid */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
    margin-top: var(--spacing-6);
    max-width: 850px; /* Make cards smaller and centered */
    margin-left: auto;
    margin-right: auto;
}

.result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start; /* Prevents cards from stretching vertically and causing white gaps */
}

.result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--primary-teal); /* Distinct, elegant teal border */
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 135, 122, 0.2), 0 0 30px rgba(10, 135, 122, 0.1);
}

.collage-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0; /* Ensures no baseline gap below image */
}

.collage-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.collage-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.collage-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    top: auto;
    background: rgba(10, 135, 122, 0.15);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(10, 135, 122, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(10, 135, 122, 0.4);
    z-index: 10;
}

/* Doctor Carousel Adjustments */
.doctors-carousel .carousel-slide {
    display: flex;
    justify-content: center;
}

.doctors-carousel .doctor-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    transition: all 0.4s ease;
}

.doctor-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.doctor-placeholder i {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.doctor-img {
    height: 400px;
    overflow: hidden;
    background: #f1f5f9;
}


.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.1);
}

.doctors-carousel .doctor-card:hover {
    box-shadow: 0 20px 50px rgba(10, 135, 122, 0.2), 0 0 30px rgba(10, 135, 122, 0.1);
}

.doctor-info {
    padding: 40px;
}

.doctor-info h3 { font-size: 1.75rem; margin-bottom: 8px; }
.doctor-info span { color: var(--primary-teal); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.doctor-info p { margin-top: 20px; color: var(--text-medium); font-size: 1rem; line-height: 1.6; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 135, 122, 0.2), 0 0 30px rgba(10, 135, 122, 0.1);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(13, 148, 136, 0.1);
}

.quote-icon i {
    width: 60px;
    height: 60px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 18px;
    height: 18px;
    color: #FFC107 !important;
    fill: #FFC107 !important;
}

.stars svg path, .stars svg polygon, .stars svg line {
    fill: #FFC107 !important;
    stroke: #FFC107 !important;
}

/* Booking Section */
.booking-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px;
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-medium);
}

.booking-header h2 { font-size: 3.5rem; }

/* Premium Form Inputs */
.premium-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border-soft);
    background: var(--light-gray);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

.premium-input:focus {
    border-color: var(--primary-teal);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 135, 122, 0.1);
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.form-step {
    display: none;
    animation: fadeInStep 0.5s ease forwards;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.progress-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-medium);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.progress-step.active {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(10, 135, 122, 0.2);
}

.progress-line {
    width: 80px;
    height: 4px;
    background: var(--border-soft);
    border-radius: 10px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.option-content {
    background: var(--white);
    border: 2px solid var(--border-soft);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.option-card input:checked + .option-content {
    border-color: var(--primary-teal);
    background: var(--primary-light);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.05);
}

/* Contact Section */
.contact-info {
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-item:hover .icon-circle {
    transform: scale(1.1) rotate(10deg);
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(10, 135, 122, 0.2);
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: var(--text-medium);
    transition: all 0.4s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer { 
    background: #0f172a; 
    color: var(--white); 
    padding-top: 100px;
    padding-bottom: 40px; 
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--secondary-gold));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand .logo-text { color: var(--white); }
.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--white);
    margin-right: 12px;
    transition: all 0.3s ease;
}
.footer .social-links a:hover {
    background: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(10, 135, 122, 0.3);
}

.footer h4 { font-size: 1.25rem; margin-bottom: 30px; color: var(--white); position: relative; padding-bottom: 10px;}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-teal);
}

.footer p { color: #94a3b8; line-height: 1.8; }
.footer-links ul li { margin-bottom: 15px; }
.footer-links a { color: #94a3b8; transition: all 0.3s ease; display: inline-block;}
.footer-links a:hover { color: var(--primary-teal); transform: translateX(5px); }

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--primary-teal);
}

.newsletter-form button {
    padding: 12px 25px;
}

.footer-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: #94a3b8;
    margin-left: 20px;
    font-size: 0.9rem;
}
.footer-legal a:hover { color: var(--primary-teal); }

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Scroll Reveal Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Swapped to left for typical Arabic/RTL setups or just variation, but keeping right is usually better. Let's put it bottom right */
    right: 30px;
    left: auto;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-whatsapp i {
    width: 32px;
    height: 32px;
}

.sticky-whatsapp:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    background-color: #20BA56;
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .result-row { 
        grid-template-columns: 1fr; 
        gap: 15px; /* Tighter gap on mobile */
    }
    .booking-card { padding: 40px 20px; }
    .hero-stats { gap: 30px; flex-wrap: wrap; }
    .navbar { height: 75px; }
    .hero { padding-top: 100px; }
    .footer-grid { grid-template-columns: 1fr; }
    
    /* Enhance mobile font sizes */
    body { font-size: 16px; }
    h2 { font-size: 2.2rem; }
    
    .contact-info { padding: 30px; }
}

