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

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.announcement-icon {
    font-size: 1.2rem;
}

.announcement-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.announcement-text strong {
    color: #ffea00;
}

.announcement-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 5px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.announcement-close:hover {
    opacity: 1;
}

.announcement-banner.hidden {
    display: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Navigation */
.navbar {
    background: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    /* Remove black background and blend with navbar */
    background-color: transparent;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.2);
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

.book-btn {
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #a01729;
    color: var(--text-light) !important;
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.nav-social a {
    color: var(--text-light);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.nav-social a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.7)), 
                url('https://cloudimg-professional-services.s3.amazonaws.com/asad-barbers/asad-barber-front.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    color: var(--accent-color);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #a01729;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--secondary-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    /* Shop front image styling */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    height: auto;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

/* Refreshments Banner */
.pricing-disclaimer {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pricing-disclaimer p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-dark);
}

.pricing-disclaimer strong {
    color: var(--primary-color);
}

.pricing-disclaimer a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.pricing-disclaimer a:hover {
    color: #9a1829;
}

.refreshments-banner {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.refreshments-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.refreshments-content i {
    font-size: 1.8rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.refreshments-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.refreshments-content p {
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

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

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #666;
}

.service-card ul li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-images {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

/* Service Pricing Styles */
.service-pricing {
    margin-top: 1.5rem;
    text-align: left;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background-color: #f9f9f9;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 5px;
}

.service-name {
    font-weight: 500;
    color: var(--secondary-color);
    flex: 1;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-images img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-images img:hover {
    transform: scale(1.05);
}

/* Opening Hours Section */
.opening-hours {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.opening-hours .section-title {
    color: var(--text-light);
}

.hours-grid {
    max-width: 600px;
    margin: 0 auto;
}

.hours-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day-row:last-child {
    border-bottom: none;
}

.day-row.appointment-only {
    opacity: 0.9;
}

.day-row.appointment-only .time {
    color: var(--accent-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-book {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white !important;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.whatsapp-book:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.whatsapp-book svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.social-links a:hover {
    transform: scale(1.1);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: white;
}

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

.rating-summary {
    display: inline-block;
}

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

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: #666;
    font-size: 1.1rem;
}

.reviews-cta {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-cta h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.reviews-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.review-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-facebook {
    background: #1877f2;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

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

.review-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.reviewer-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.review-rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--gray-light);
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-medium);
}

.gallery-scroll::-webkit-scrollbar {
    height: 10px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--gray-medium);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: #a01729;
}

.gallery-item {
    flex: 0 0 350px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-empty,
.gallery-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #666;
    background: white;
    border-radius: 10px;
}

.gallery-error {
    color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
}

.lightbox-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    opacity: 0.8;
}

/* Book Section */
.book-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), #a01729);
    color: var(--text-light);
    text-align: center;
}

.book-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.book-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.book-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.book-methods .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.book-methods .btn-primary {
    background: var(--secondary-color);
}

.book-methods .btn-primary:hover {
    background: #000;
}

.book-methods .btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.book-methods .btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
    /* Remove black background for footer logo too */
    background-color: transparent;
    mix-blend-mode: screen;
    filter: brightness(1.1) contrast(1.2);
    border-radius: 8px;
}

.footer-logo p {
    color: #999;
}

.footer-links h3,
.footer-social h3 {
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #999;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social .social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social .social-icons a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social .social-icons a:hover {
    background: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    /* Announcement Banner - Tablet */
    .announcement-banner {
        padding: 10px 2rem;
    }

    .announcement-text {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Announcement Banner - Mobile */
    .announcement-banner {
        padding: 12px 45px 12px 15px;
    }

    .announcement-content {
        justify-content: flex-start;
        text-align: left;
    }

    .announcement-text {
        font-size: 0.85rem;
    }

    .announcement-close {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1.1rem;
    }
    
    .nav-menu .book-btn {
        margin-top: 1rem;
        background: var(--primary-color);
        border-radius: 25px;
        border: none;
    }
    
    .nav-social {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section */
    .hero {
        padding: 6rem 0 4rem;
        min-height: 70vh;
        background-attachment: scroll; /* Fixed backgrounds don't work well on mobile */
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* About Section */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        justify-content: space-around;
        gap: 1.5rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    /* Services Section */
    .services {
        padding: 4rem 0;
    }
    
    /* Refreshments Banner Mobile */
    .refreshments-banner {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .refreshments-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .refreshments-content i {
        font-size: 1.5rem;
    }
    
    .refreshments-content h3 {
        font-size: 1.1rem;
    }
    
    .refreshments-content p {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-pricing {
        margin-top: 1.5rem;
    }
    
    .price-item {
        padding: 1rem 0;
        font-size: 0.95rem;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
    
    /* Service Images - Hide on mobile */
    .service-images {
        display: none;
    }
    
    /* Opening Hours */
    .opening-hours {
        padding: 4rem 0;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-card {
        padding: 2rem 1.5rem;
    }
    
    .day-row {
        padding: 1rem 0;
        font-size: 1rem;
    }
    
    .whatsapp-book {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        margin-left: 1rem;
    }
    
    /* Reviews Section */
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews-cta {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .review-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .review-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
    
    /* Gallery Section */
    .gallery {
        padding: 4rem 0;
    }

    .gallery-scroll {
        padding: 1rem 0 1.5rem 0;
    }

    .gallery-item {
        flex: 0 0 280px;
    }

    .gallery-item img {
        height: 300px;
    }

    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        background: var(--gray-light);
        border-radius: 10px;
    }
    
    .contact-item i {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Book Section */
    .book-section {
        padding: 4rem 0;
    }
    
    .book-methods {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .book-methods .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
    
    /* Lightbox Mobile Optimization */
    .lightbox .lightbox-prev,
    .lightbox .lightbox-next {
        left: 10px !important;
        right: 10px !important;
        bottom: 100px !important;
        top: auto !important;
        transform: none !important;
        position: fixed !important;
        padding: 12px 15px !important;
        font-size: 20px !important;
    }
    
    .lightbox .lightbox-next {
        right: 10px !important;
        left: auto !important;
    }
    
    .lightbox-content {
        max-width: 95% !important;
        max-height: 85% !important;
    }
    
    .lightbox-close {
        top: -30px !important;
        font-size: 25px !important;
    }
}

@media (max-width: 480px) {
    /* Announcement Banner - Small Mobile */
    .announcement-banner {
        padding: 10px 40px 10px 1rem;
    }

    .announcement-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .announcement-icon {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Typography */
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 1rem 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    /* Hero */
    .hero {
        padding: 5rem 0 3rem;
        min-height: 60vh;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .price-item {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
    
    /* Hours Card */
    .hours-card {
        padding: 1.5rem 1rem;
    }
    
    .day-row {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
    
    .whatsapp-book {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin-left: 0.5rem;
        margin-top: 0.5rem;
        display: block;
    }
    
    /* Contact Items */
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Reviews */
    .reviews-cta {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .reviews-cta h3 {
        font-size: 1.3rem;
    }
    
    .reviews-cta p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-logo p {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    /* Lightbox Ultra Mobile */
    .lightbox-content {
        max-width: 98% !important;
        max-height: 80% !important;
    }
    
    .lightbox-caption {
        margin-top: 10px !important;
    }
    
    .lightbox-caption h3 {
        font-size: 1.1rem !important;
    }
    
    .lightbox-caption p {
        font-size: 0.9rem !important;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}