/* Reset and Base Styles */
:root {
    --navbar-height: 60px;
    --header-text-color: white;
}

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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Header */
.header {
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    color: white;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 166, 106, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    animation: fadeInUp 0.8s ease-out;
    min-height: var(--navbar-height);
    height: var(--navbar-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 30px;
    gap: 15px;
    min-height: 60px;
}

.header-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: auto;
}

.header-center {
    flex: 0 0 auto;
    text-align: center;
    min-width: auto;
    margin: 0 15px;
}

.header-center h1 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    color: white;
}

.header-center p {
    font-size: 0.75rem;
    opacity: 0.85;
    font-weight: 400;
    color: white;
    margin: 0;
}

.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-title-section {
    flex-shrink: 0;
    text-align: center;
    min-width: 200px;
}

.header-title-section h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.header-title-section p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

.header-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0;
}

.header-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.nav-btn {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
    white-space: nowrap;
}

.book-btn:hover {
    background: linear-gradient(45deg, #ff5252, #ff7979);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 18px;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: white;
    color: #00a66a;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 106, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-brand {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-brand h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 166, 106, 0.1);
}

.hero-text h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(45deg, #00a66a, #00d084);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 166, 106, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 166, 106, 0.4);
}

.cta-button {
    background: linear-gradient(45deg, #00a66a, #00d084);
    color: white;
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 166, 106, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, #008a57, #00b870);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 166, 106, 0.6);
}

.hero-image {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.team-photo {
    width: 100%;
    max-width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.team-photo:hover {
    transform: scale(1.02) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
}

.about h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #00a66a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8f9fa;
}

.services h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #00a66a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: white;
}

.gallery h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 20px;
}

.gallery > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

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

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.label {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.before-label {
    background: #ff6b6b;
    color: white;
}

.after-label {
    background: #00a66a;
    color: white;
}

.gallery-item p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
}

.team-section {
    margin-top: 80px;
}

.team-photo-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-photo-large {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.team-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Blog Section */
.blog {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 20px;
}

.blog > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-date {
    color: #00a66a;
    font-weight: 600;
}

.blog-category {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    color: #666;
}

.blog-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    color: #00a66a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.blog-read-more:hover {
    color: #008a57;
    transform: translateX(-5px);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author strong {
    color: #333;
    font-size: 1rem;
}

.author span {
    color: #999;
    font-size: 0.9rem;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-section h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.video-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 166, 106, 0.2);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-info h3 {
    font-size: 1.8rem;
    color: #333;
    line-height: 1.4;
}

.video-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* Gallery Carousel Section */
.gallery-carousel-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
}

.gallery-carousel-section h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.gallery-carousel-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 166, 106, 0.15);
    background-color: #f5f5f5;
    min-height: 400px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-btn {
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 166, 106, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 166, 106, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #00a66a;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 166, 106, 0.3);
}

.indicator:hover {
    background: #00c77a;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact h2 {
    font-size: 2.5rem;
    color: #00a66a;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #00a66a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    margin-left: 15px;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-details p,
.contact-details a {
    color: #666;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

.contact-details a:hover {
    color: #00a66a;
}

/* Booking Section */
.booking-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.booking-section h2 {
    color: #00a66a;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.booking-form {
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
    background: white;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #999;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #00a66a;
    box-shadow: 0 0 0 3px rgba(0, 166, 106, 0.1);
}

.submit-btn {
    background: linear-gradient(45deg, #00a66a, #00d084);
    color: white;
    padding: 16px 50px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(0, 166, 106, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(45deg, #008a57, #00b870);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 166, 106, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.booking-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.booking-info h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.booking-info ul {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.booking-info li {
    color: #666;
    position: relative;
    padding-right: 25px;
}

.booking-info li:before {
    content: "✓";
    color: #00a66a;
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 1.2rem;
}

.emergency-contact {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    border-left: 4px solid #dc3545;
}

.emergency-contact h4 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.emergency-btn {
    background: #dc3545;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.emergency-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

/* Blog Post Page */
.blog-post {
    padding: 60px 0;
    background: white;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #00a66a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-meta {
    color: #999;
    font-size: 0.95rem;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    color: #00a66a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    margin-right: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content strong {
    color: #00a66a;
}

.back-to-blog {
    display: inline-block;
    color: #00a66a;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-to-blog:hover {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-brand h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .team-photo {
        height: 350px;
    }

    .nav-buttons {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .book-btn {
        padding: 10px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .booking-section {
        padding: 30px 20px;
    }

    .booking-info ul {
        grid-template-columns: 1fr;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-image {
        height: 250px;
    }

    .services-grid,
    .blog-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-buttons {
        gap: 5px;
        font-size: 0.8rem;
    }

    .nav-btn {
        padding: 8px 12px;
    }

    .header-logo {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .services h2,
    .gallery h2,
    .blog h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .booking-section {
        padding: 20px 15px;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }
}

/* 2x3 Gallery Grid Layout */
.gallery-2x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-descriptions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 20px;
}

.gallery-descriptions p {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gallery-2x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-descriptions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-2x3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-descriptions {
        grid-template-columns: 1fr;
    }
}

/* Before/After Gallery - Side by Side Magic Effect */
.before-after-gallery {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.transformation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out;
}

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

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.before-image, .after-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.before-image:hover, .after-image:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 166, 106, 0.25);
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.6s ease;
}

.before-image:hover img, .after-image:hover img {
    transform: scale(1.08);
}

.label {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.6s ease-out 0.3s backwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.before-label {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
}

.after-label {
    background: linear-gradient(135deg, #00a66a, #00d084);
    color: white;
}

.transformation-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .before-after-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .transformation-item {
        gap: 15px;
    }
    
    .before-after-gallery {
        gap: 40px;
    }
    
    .transformation-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .before-after-gallery {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .before-after-container {
        gap: 10px;
    }
    
    .label {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .transformation-title {
        font-size: 14px;
    }
}


/* Fix logo sizing for all pages */
.nav-logo img.logo {
    max-width: 80px !important;
    max-height: 80px !important;
    width: 80px !important;
    height: 80px !important;
}

.logo {
    max-width: 80px !important;
    max-height: 80px !important;
    width: 80px !important;
    height: 80px !important;
}


/* Blog page navigation styling */
.nav {
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 166, 106, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 20px;
    flex-direction: row-reverse; /* RTL: hamburger on left, logo on right */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img.logo {
    width: 60px !important;
    height: 90px !important;
    max-width: 60px !important;
    max-height: 90px !important;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.logo-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.phone-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}


/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.footer-logo-img {
    width: 60px !important;
    height: 90px !important;
    max-width: 60px !important;
    max-height: 90px !important;
    object-fit: contain;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-logo .logo-main {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.footer-logo .logo-sub {
    font-size: 0.75rem;
    opacity: 0.9;
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
}


/* Unified Footer Styling */
.footer {
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    color: white;
    padding: 25px 20px 15px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 15px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: white;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.footer-section p {
    margin: 3px 0;
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.4;
}

.footer-info p {
    margin: 2px 0;
}

.footer-info a,
.footer-contact a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-info a:hover,
.footer-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Social Icons Footer */
.social-icons-footer {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.social-icons-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons-footer .social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-icons-footer .social-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Blog Post Image Sizing */
.post-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 20px 15px 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
}

/* Blog Post Cover Image */
.post-cover {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .post-cover {
        height: 300px;
        margin-bottom: 20px;
    }
}


/* Social Media Icons */
.social-icons-header {
    display: flex;
    gap: 12px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.2) rotate(10deg);
}

/* Header social icons smaller size */
.social-icons-header .social-icon {
    width: 32px;
    height: 32px;
}

.social-icons-header .social-icon svg {
    width: 16px;
    height: 18px;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 30px 0 15px;
    margin-top: 40px;
    border-top: 3px solid #00a66a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #00a66a;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 6px;
}

.footer-section a {
    color: #00a66a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #00d084;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons-header {
        gap: 8px;
    }
    
    .social-icons-header .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icons-header .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .social-icons-footer {
        gap: 12px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .social-icons-header {
        gap: 6px;
    }
    
    .social-icons-header .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .social-icons-header .social-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
}


/* Floating WhatsApp Icon */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: floatIcon 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
}

.floating-whatsapp:active {
    transform: scale(0.95);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover svg {
    transform: scale(1.1);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Pulse animation for attention */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design for Floating WhatsApp Icon */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* Ensure floating icon doesn't block footer on small screens */
@media (max-width: 600px) {
    .floating-whatsapp {
        bottom: 80px;
    }
}


/* ============================================
   MOBILE NAVIGATION STYLES
   ============================================ */

/* Hamburger Menu Toggle Button */

/* ============================================
   ULTRA-SIMPLE MOBILE MENU
   ============================================ */

/* Mobile menu */
.menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 0;
}

.menu.active {
    left: 0;
}

.menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.menu a:active {
    background: rgba(0, 0, 0, 0.15);
}

.menu .book-link {
    background: white;
    color: #00a66a;
    font-weight: 600;
    margin: 20px;
    border-radius: 8px;
    text-align: center;
    border: none;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 998;
    transition: background 0.3s ease;
    pointer-events: none;
}

.overlay.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

/* Media query for mobile */
@media (max-width: 768px) {

    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu.active {
        display: block !important;
    }
}

/* ============================================
   RESPONSIVE HEADER - TABLET (768px and below)
   ============================================ */

/* Video Section Mobile Responsive */
@media (max-width: 768px) {
    .video-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-info {
        gap: 15px;
    }
    
    .video-info h3 {
        font-size: 1.4rem;
    }
    
    .video-features {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .video-content {
        gap: 20px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-features {
        font-size: 0.9rem;
        gap: 8px;
    }
}

/* Testimonials Carousel Mobile */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }

    .header-logo-wrapper {
        flex: 1;
        order: 2;
    }

    .header-logo {
        width: 45px;
        height: 45px;
    }

    .desktop-nav {
        display: none;
    }

    .header-right {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .social-icons-header {
        display: none;
    }
}

/* ============================================
   RESPONSIVE HEADER - MOBILE (480px and below)
   ============================================ */

/* Booking Form Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .booking-form {
        margin-bottom: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
        margin: 20px auto 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 0;
    }

    .header-container {
        padding: 8px 12px;
        gap: 8px;
    }

    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .header-logo {
        width: 40px;
        height: 40px;
    }

    .mobile-menu {
        max-width: 100%;
    }

    .mobile-menu-header {
        padding: 15px;
    }

    .mobile-menu-content {
        padding: 15px;
    }

    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .mobile-book-btn {
        padding: 12px 15px;
        font-size: 1rem;
        margin: 15px 0;
    }

    .mobile-social-icons {
        gap: 12px;
    }

    .mobile-social-icon {
        width: 36px;
        height: 36px;
    }

    .mobile-social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   DESKTOP ONLY STYLES (768px and above)
   ============================================ */

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

    .desktop-nav {
        display: flex;
    }

    .header-right {
        display: flex;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo-wrapper {
        flex: 0 0 auto;
    }
}


/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testimonial-carousel-btn {
    background: linear-gradient(45deg, #00a66a, #00d084);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 166, 106, 0.3);
}

.testimonial-carousel-btn:hover {
    background: linear-gradient(45deg, #008a57, #00b870);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 166, 106, 0.5);
}

.testimonial-carousel-btn:active {
    transform: scale(0.95);
}

.testimonials-carousel {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    scroll-snap-type: x mandatory;
}

.testimonials-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
}

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: #00a66a;
    border-color: #00a66a;
    transform: scale(1.2);
}

/* Testimonials Carousel Mobile */
@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        gap: 15px;
    }
    
    .testimonial-carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .testimonials-track {
        gap: 15px;
    }
    
    .testimonials-carousel {
        scroll-behavior: smooth;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-wrapper {
        gap: 10px;
    }
    
    .testimonial-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonials-track {
        gap: 10px;
    }
    
    .testimonial-card {
        padding: 15px;
        flex: 0 0 85%;
        min-width: 280px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    .testimonials-carousel {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}


/* ============================================
   DATE PICKER MOBILE OPTIMIZATION
   ============================================ */

/* Date input fixes for mobile */
input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 48px; /* Touch-friendly height */
    padding: 12px 16px;
    font-size: 16px; /* Prevents iOS zoom on focus */
    width: 100%;
    box-sizing: border-box;
    direction: ltr; /* Dates should be LTR even in RTL layout */
    text-align: right; /* Align for RTL */
    cursor: pointer;
}

/* Ensure date picker icon is visible */
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 10px; /* RTL adjustment */
    right: auto;
    cursor: pointer;
    padding: 5px;
    opacity: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 0.8;
}

/* Container for date inputs */
.date-input-wrapper {
    position: relative;
    width: 100%;
}

/* Mobile date picker optimization */
@media (max-width: 768px) {
    input[type="date"],
    input[type="time"],
    select {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 12px 16px;
        border-radius: 8px;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    input[type="date"],
    input[type="time"],
    select {
        font-size: 14px;
        padding: 10px 12px;
        width: 100%;
        box-sizing: border-box;
        min-height: 44px;
    }
}


/* Form container responsive fixes */
.reservation-form, .booking-form {
    padding: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.reservation-form input,
.reservation-form select,
.booking-form input,
.booking-form select {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .reservation-form,
    .booking-form {
        padding: 12px;
    }
    
    input[type="date"],
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select {
        font-size: 14px;
        padding: 10px 12px;
        min-height: 44px;
    }
}

/* ============================================
   MOBILE SPACING & ALIGNMENT OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    /* General spacing */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* Hero section */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    /* Services section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Blog section */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact section */
    .contact-section {
        padding: 50px 0;
    }
    
    .booking-section {
        padding: 30px;
    }
    
    /* Buttons */
    .cta-button,
    .submit-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* General spacing */
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 35px 0;
    }
    
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Hero section */
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero-content {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    /* Services section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    /* Blog section */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-card {
        padding: 15px;
    }
    
    /* Contact section */
    .contact-section {
        padding: 35px 0;
    }
    
    .booking-section {
        padding: 20px;
    }
    
    /* Buttons */
    .cta-button,
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Emergency contact */
    .emergency-contact {
        margin-top: 20px;
    }
    
    .emergency-btn {
        display: block;
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Margins */
    .section-subtitle {
        margin-bottom: 30px;
    }
    
    /* Padding */
    .testimonial-card {
        padding: 15px;
    }
    
    .booking-info ul {
        padding: 0;
        margin: 15px 0;
    }
    
    .booking-info li {
        padding: 8px 0;
        font-size: 0.95rem;
    }
}

/* Extra small screens (360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .cta-button,
    .submit-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* ============================================
   MOBILE OVERFLOW & VISIBILITY FIX
   ============================================ */

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }
    
    /* Ensure all elements fit */
    .header {
        overflow: visible;
    }
    
    .hero-content {
        overflow: hidden;
    }
    
    /* Fix text truncation */
    .hero h1,
    .hero p,
    .section-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure videos don't overflow */
    iframe {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Additional overflow prevention */
    .container {
        max-width: 100%;
    }
    
    /* Ensure proper text rendering */
    .testimonial-card p,
    .blog-card p {
        word-break: break-word;
    }
    
    /* Fix button overflow */
    button {
        max-width: 100%;
    }
    
    /* Fix form overflow */
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        max-width: 100%;
    }
}


/* ============================================
   ENHANCED MOBILE HEADER & SLIDING MENU
   ============================================ */

/* Mobile Header Optimization */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: linear-gradient(135deg, #00a66a 0%, #00d084 100%);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: 60px;
        padding: 0;
    }
    
    .header-container {
        height: 100%;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    
    .header-logo-wrapper {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .header-logo {
        width: 50px !important;
        height: 50px !important;
        object-fit: contain;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .header-right {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        margin-left: auto;
    }
}

/* Modern Sliding Menu from Left */
.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 60px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 998;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.2s ease;
}

.mobile-menu-close:active {
    color: #00a66a;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.mobile-nav-link:active {
    background: #f0f0f0;
    color: #00a66a;
}

.mobile-book-btn {
    display: block;
    margin: 20px 15px 10px;
    padding: 14px 20px;
    background: linear-gradient(45deg, #00a66a, #00d084);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 166, 106, 0.3);
}

.mobile-book-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 166, 106, 0.2);
}

.mobile-social-icons {
    display: flex;
    gap: 15px;
    padding: 20px;
    justify-content: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #00a66a;
    transition: all 0.3s ease;
}

.mobile-social-icon:active {
    background: #00a66a;
    color: white;
    transform: scale(1.1);
}

.mobile-social-icon svg {
    width: 20px;
    height: 20px;
}

/* Hamburger Menu Icon Animation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Ensure body doesn't scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile adjustments for content below header */
@media (max-width: 768px) {
    main {
        margin-top: 40px;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 56px;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .header-logo {
        width: 45px !important;
        height: 45px !important;
    }
    
    .mobile-menu {
        width: 90%;
        max-width: 300px;
    }
    
    .mobile-nav-link {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .mobile-book-btn {
        margin: 15px 12px 8px;
    }
    
    main {
        margin-top: 56px;
    }
}


/* ============================================
   LAZY LOADED VIDEO OPTIMIZATION
   ============================================ */

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover {
    opacity: 0.8;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

#youtubeIframe {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
}

/* Mobile video optimization */
@media (max-width: 768px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn::after {
        border-left: 18px solid white;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
    }
}

@media (max-width: 480px) {
    .video-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-play-btn::after {
        border-left: 15px solid white;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
}


/* ============================================
   GALLERY GRID & LIGHTBOX STYLES
   ============================================ */

.gallery-carousel-section .gallery-grid {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #1abc9c #f0f0f0;
    padding-bottom: 15px;
}

.gallery-carousel-section .gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-carousel-section .gallery-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.gallery-carousel-section .gallery-grid::-webkit-scrollbar-thumb {
    background: #1abc9c;
    border-radius: 4px;
}

.gallery-carousel-section .gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #16a085;
}

.gallery-carousel-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 200px;
    min-width: 200px;
    scroll-snap-align: start;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10002;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10002;
}

/* Mobile Gallery Responsive */
@media (max-width: 768px) {
    .gallery-carousel-section .gallery-grid {
        gap: 15px;
        margin: 30px 0;
    }
    
    .gallery-carousel-section .gallery-item {
        flex: 0 0 150px;
        min-width: 150px;
    }

    .gallery-overlay {
        font-size: 28px;
    }

    .lightbox-content {
        width: 95%;
        height: 70vh;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-counter {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .gallery-carousel-section .gallery-grid {
        gap: 10px;
        margin: 20px 0;
    }
    
    .gallery-carousel-section .gallery-item {
        flex: 0 0 120px;
        min-width: 120px;
    }

    .gallery-overlay {
        font-size: 20px;
    }

    .lightbox-content {
        width: 98%;
        height: 60vh;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .lightbox-counter {
        font-size: 11px;
        padding: 6px 12px;
    }
}


/* Mobile Navbar Height Adjustment */
@media (max-width: 480px) {
    :root {
        --navbar-height: 56px;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 56px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Touch-friendly tap targets */
button, a, input, select, .clickable {
    min-height: 44px;
    min-width: 44px;
}

/* Fix images overflowing */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* RTL specific fixes */
[dir="rtl"] .nav-menu {
    right: -100%;
    left: auto;
}

[dir="rtl"] .nav-menu.active {
    right: 0;
}

/* Safe area for notched phones */
.navbar {
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

main {
    padding-bottom: env(safe-area-inset-bottom);
}

/* Fix z-index stacking issues */
.navbar {
    z-index: 999;
}

.nav-menu {
    z-index: 1000;
}

.overlay {
    z-index: 998;
}

.modal, .lightbox {
    z-index: 1001;
}

/* Additional mobile optimizations */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Prevent text selection on long press */
body {
    -webkit-user-select: none;
    user-select: none;
}

/* Allow text selection in inputs and textareas */
input, textarea {
    -webkit-user-select: text;
    user-select: text;
}

/* Viewport meta tag optimization */
@viewport {
    width: device-width;
    zoom: 1;
}

/* Fix font size on mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    button, a, input, select, .clickable {
        min-height: 44px;
        min-width: 44px;
        font-size: 16px;
    }
}
/* ========================================
   BULLETPROOF RTL MOBILE MENU CSS
   ======================================== */

/* Mobile Toggle Button - LEFT for Arabic */
.mobile-toggle-btn {
    display: none;
    position: fixed;
    left: 15px;
    top: 15px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation - X shape */
.mobile-toggle-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Panel - slides from LEFT */
.mobile-menu-panel {
    position: fixed;
    left: -100%;
    top: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    z-index: 9998;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-top: 60px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

/* Menu Panel OPEN state */
.mobile-menu-panel.open {
    left: 0;
}

/* Close Button */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.mobile-menu-close:hover {
    opacity: 0.8;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Overlay Backdrop */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 9997;
    transition: background 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.open {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

/* Show mobile menu on small screens */
@media (max-width: 768px) {
    .mobile-toggle-btn {
        display: flex;
    }
}

/* ============================================
   MOBILE NAVIGATION MENU - COMPREHENSIVE FIX
   ============================================ */

/* RTL Support for the simple .menu slide-in */
/* Menu slides from left for RTL (Arabic) */
[dir="rtl"] .menu {
    left: -100%;
    right: auto;
}

[dir="rtl"] .menu.active {
    left: 0;
    right: auto;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

/* ============================================
   CONTENT VISIBILITY - NAVBAR SPACING FIX
   ============================================ */

/* Ensure content is never hidden behind fixed navbar */
section {
    scroll-margin-top: var(--navbar-height, 60px);
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }
    
    body {
        padding-top: var(--navbar-height, 60px);
    }
    
    section {
        scroll-margin-top: calc(var(--navbar-height, 60px) + 10px);
    }
    
    .hero {
        margin-top: 0;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-height: 56px;
    }
    
    body {
        padding-top: var(--navbar-height, 56px);
    }
    
    section {
        scroll-margin-top: calc(var(--navbar-height, 56px) + 10px);
    }
}

/* ============================================
   TESTIMONIALS CAROUSEL - SWIPE FIX
   ============================================ */

@media (max-width: 768px) {
    .testimonials-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }
    
    .testimonials-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-track {
        display: flex;
        gap: 15px;
        padding: 10px 0;
    }
    
    .testimonials-track .testimonial-card {
        flex: 0 0 85%;
        min-width: 280px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .testimonial-carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 90%;
        min-width: 260px;
    }
}

/* ============================================
   BOOKING FORM DATE PICKER - MOBILE FIX
   ============================================ */

/* Ensure date input is fully visible on mobile */
@media (max-width: 768px) {
    .booking-form input[type="date"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        min-height: 50px;
        padding: 14px 16px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        background: white;
        border: 2px solid #e1e8ed;
        border-radius: 10px;
        color: #333;
        direction: ltr;
        text-align: right;
    }
    
    .booking-form input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 1;
        cursor: pointer;
        padding: 5px;
        background: transparent;
    }
    
    .booking-form input[type="date"]:focus {
        outline: none;
        border-color: #00a66a;
        box-shadow: 0 0 0 3px rgba(0, 166, 106, 0.1);
    }
}

@media (max-width: 480px) {
    .booking-form input[type="date"] {
        font-size: 14px;
        min-height: 48px;
        padding: 12px 14px;
    }
}

/* ============================================
   GALLERY - HORIZONTAL CAROUSEL ON MOBILE
   ============================================ */

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        padding: 10px 0;
        margin: 20px -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-grid .gallery-item {
        flex: 0 0 75%;
        min-width: 250px;
        max-width: 280px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        aspect-ratio: 1;
    }
    
    /* Before/After Gallery - Horizontal Scroll */
    .before-after-gallery {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 20px;
        padding: 10px 0;
        margin: 20px -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .before-after-gallery::-webkit-scrollbar {
        display: none;
    }
    
    .before-after-gallery .transformation-item {
        flex: 0 0 90%;
        min-width: 300px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .before-after-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid .gallery-item {
        flex: 0 0 85%;
        min-width: 220px;
    }
    
    .before-after-gallery .transformation-item {
        flex: 0 0 95%;
        min-width: 280px;
    }
}

/* ============================================
   GENERAL MOBILE RESPONSIVENESS
   ============================================ */

/* Touch-friendly tap targets (min 44px) */
@media (max-width: 768px) {
    button,
    .nav-btn,
    .book-btn,
    .cta-button,
    .submit-btn,
    input[type="submit"],
    a.social-icon {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Readable font sizes */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.95rem;
    }
}

/* ============================================
   MOBILE COMPACT SPACING - REDUCE WIDE GAPS
   ============================================ */

@media (max-width: 768px) {
    /* Hero section - reduce vertical spacing */
    .hero {
        padding: 20px 0 30px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .hero-badges {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 15px;
    }
    
    .team-photo {
        height: auto;
        max-height: 350px;
        border-radius: 20px;
    }
    
    /* Sections - reduce padding */
    section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Section headings */
    section h2 {
        margin-bottom: 15px;
    }
    
    section > .container > p {
        margin-bottom: 20px;
    }
    
    /* Services grid */
    .services-grid {
        gap: 12px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    /* Features */
    .features {
        gap: 15px;
        margin-top: 20px;
    }
    
    .feature {
        padding: 15px;
    }
    
    /* About section */
    .about {
        padding: 25px 0;
    }
    
    .about p {
        margin-bottom: 12px;
    }
    
    /* Gallery */
    .gallery {
        padding: 25px 0;
    }
    
    .before-after-gallery {
        margin: 15px -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 25px 0;
    }
    
    /* Contact section */
    .contact {
        padding: 25px 0;
    }
    
    .contact-info {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .booking-section {
        padding: 20px 15px;
    }
    
    .booking-form .form-row {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* Extra compact for small screens */
    .hero {
        padding: 15px 0 25px;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .hero-badges {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .team-photo {
        max-height: 300px;
        border-radius: 15px;
    }
    
    section {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .service-card {
        padding: 12px;
    }
    
    .feature {
        padding: 12px;
    }
    
    .booking-section {
        padding: 15px 12px;
    }
    
    .contact-item {
        padding: 10px;
    }
}

/* MOBILE HAMBURGER BUTTON STYLES */
#menuBtn {
    display: none !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 10px !important;
    flex-direction: column !important;
    gap: 5px !important;
    z-index: 10000 !important;
    position: relative !important;
}

#menuBtn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Show button on mobile */
@media (max-width: 768px) {
    #menuBtn {
        display: flex !important;
    }
}

/* ============================================
   MOBILE BLOG CAROUSEL - SAVE SPACE
   ============================================ */

@media (max-width: 768px) {
    .blog-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        padding: 10px 0;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .blog-grid::-webkit-scrollbar {
        display: none;
    }
    
    .blog-grid .blog-card {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 320px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .blog-card {
        margin-bottom: 0;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .blog-grid .blog-card {
        flex: 0 0 90%;
        min-width: 260px;
    }
    
    .blog-image {
        height: 140px;
    }
}

/* ============================================
   DATE INPUT PLACEHOLDER FIX
   ============================================ */

/* Date input styling */
input[type="date"] {
    position: relative;
}

/* Alternative approach - use wrapper with label */
.date-input-container {
    position: relative;
    width: 100%;
}

.date-input-container input[type="date"] {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    background: white;
    color: transparent;
    transition: all 0.3s ease;
}

.date-input-container input[type="date"]:focus,
.date-input-container input[type="date"]:valid {
    color: #333;
}

.date-input-container .date-placeholder {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.date-input-container input[type="date"]:focus + .date-placeholder,
.date-input-container input[type="date"]:valid + .date-placeholder {
    display: none;
}

/* Mobile date input optimization */
@media (max-width: 768px) {
    .booking-form input[type="date"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        min-height: 50px;
        padding: 14px 16px;
        font-size: 16px;
        width: 100%;
        background: white;
        border: 2px solid #e1e8ed;
        border-radius: 10px;
        color: #333;
    }
    
    /* Show date picker icon */
    .booking-form input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 1;
        cursor: pointer;
        padding: 5px;
        background: transparent;
        position: relative;
    }
}

/* ============================================
   REDUCED WHITE SPACES - MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {
    /* Reduce section padding */
    .hero {
        padding: 15px 0 20px;
    }
    
    .about,
    .services,
    .gallery,
    .blog,
    .testimonials,
    .video-section,
    .gallery-carousel-section,
    .contact {
        padding: 25px 0;
    }
    
    /* Reduce container padding */
    .container {
        padding: 0 12px;
    }
    
    /* Reduce section title margins */
    section h2 {
        margin-bottom: 12px;
        font-size: 1.4rem;
    }
    
    section > .container > p {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    /* Hero section compact */
    .hero-text h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .hero-badges {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 10px;
    }
    
    .team-photo {
        max-height: 280px;
        border-radius: 15px;
    }
    
    /* Features compact */
    .features {
        gap: 12px;
        margin-top: 15px;
    }
    
    .feature {
        padding: 12px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .feature h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    /* Services compact */
    .services-grid {
        gap: 10px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Gallery compact */
    .before-after-gallery {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .transformation-title {
        font-size: 0.9rem;
        margin-top: 8px;
    }
    
    .team-section {
        margin-top: 20px;
    }
    
    .team-photo-large {
        height: 250px;
    }
    
    /* Testimonials compact */
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .stars {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    /* Contact compact */
    .contact-info {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .booking-section {
        padding: 20px 15px;
    }
    
    .booking-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .booking-form .form-row {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .booking-info {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .booking-info h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .booking-info ul {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .emergency-contact {
        padding: 15px;
        margin-top: 15px;
    }
    
    /* Video section compact */
    .video-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-features li {
        font-size: 0.9rem;
    }
    
    /* Footer compact */
    .footer {
        padding: 20px 0 15px;
        margin-top: 20px;
    }
    
    .footer-content {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Even more compact for small screens */
    .hero {
        padding: 10px 0 15px;
    }
    
    .about,
    .services,
    .gallery,
    .blog,
    .testimonials,
    .video-section,
    .gallery-carousel-section,
    .contact {
        padding: 20px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    section h2 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .team-photo {
        max-height: 240px;
    }
    
    .booking-section {
        padding: 15px 12px;
    }
    
    .footer {
        padding: 15px 0 10px;
    }
}


/* ========== LAZY LOADING STYLES ========== */

/* Placeholder for lazy loading images */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 2s infinite;
}

/* Shimmer animation for loading state */
@keyframes loading-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Fade-in animation when image loads */
@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply fade-in when image is loaded */
img.lazy-loaded {
    animation: fadeInImage 0.3s ease-in-out;
}

/* Blur-up effect for images */
img[data-src] {
    filter: blur(5px);
    transition: filter 0.3s ease-in-out;
}

img[data-src].lazy-loaded {
    filter: blur(0);
}

/* Optimize image loading for better performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Gallery images optimization */
.gallery-item img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img.lazy-loaded {
    transform: scale(1);
    opacity: 1;
}

/* Blog images optimization */
.blog-image {
    transition: opacity 0.3s ease;
}

.blog-image.lazy-loaded {
    opacity: 1;
}

/* Team photos optimization */
.team-photo {
    transition: opacity 0.3s ease;
}

.team-photo.lazy-loaded {
    opacity: 1;
}
