/* services-styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefaf5;
    color: #2d2a24;
    line-height: 1.5;
}

:root {
    --red: #b33a2c;
    --maroon: #7d2e24;
    --terracotta: #c96e4b;
    --wood: #a57c5c;
    --grey-dark: #2f2e2b;
    --grey-soft: #5c5a53;
    --bg-light: #fdf7f0;
    --shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
header {
    background: var(--grey-dark);
    color: white;
    padding: 0.8rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.9rem;
    color: white;
    line-height: 1.1;
}

.logo span {
    color: var(--red);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 3px;
    display: block;
}

.nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    border-bottom-color: var(--red);
    color: white;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--red) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge i {
    margin-right: 0.5rem;
}

/* Services Container */
.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-section {
    margin-bottom: 6rem;
    scroll-margin-top: 100px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 4px solid var(--red);
    padding-bottom: 1rem;
}

.service-icon-large {
    background: var(--red);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 20px rgba(179,58,44,0.3);
}

.service-header h2 {
    font-size: 2.5rem;
    color: var(--maroon);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-badge {
    background: #ffd700;
    color: var(--grey-dark);
    font-size: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse .service-description {
    direction: ltr;
}

/* Office Section Specific */
.office-section .lead-text {
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 2rem;
    line-height: 1.8;
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 5px solid var(--red);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--grey-soft);
    font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-table {
    margin: 3rem 0;
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 2rem;
}

.pricing-table h3 {
    color: var(--maroon);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.pricing-table h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 3px solid var(--red);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h4 {
    color: var(--maroon);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--grey-soft);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
    color: var(--grey-soft);
}

.pricing-card ul li i {
    color: var(--red);
    margin-right: 0.5rem;
}

.btn-book {
    background: var(--red);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-book:hover {
    background: var(--maroon);
    transform: scale(1.05);
}

.office-cta {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.office-cta i {
    font-size: 3rem;
    color: #4caf50;
}

.office-cta p {
    font-size: 1.1rem;
    color: #2e7d32;
    margin: 0;
}

/* Image Gallery */
.service-image-gallery {
    background: #f0f0f0;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 5px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails img:hover {
    opacity: 0.8;
}

/* Catering Section */
.catering-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.catering-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.catering-item i {
    font-size: 2rem;
    color: var(--red);
}

.catering-item h3 {
    color: var(--maroon);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.catering-item p {
    color: var(--grey-soft);
    font-size: 0.9rem;
}

.catering-menu-highlight {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.catering-menu-highlight h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
}

.catering-menu-highlight ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.catering-menu-highlight ul li {
    margin-bottom: 0.5rem;
    color: var(--grey-soft);
}

.btn-outline-catering {
    background: white;
    color: var(--red);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--red);
    transition: all 0.3s ease;
}

.btn-outline-catering:hover {
    background: var(--red);
    color: white;
}

.contact-catering {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-catering {
    background: var(--red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.btn-catering-secondary {
    background: white;
    color: var(--maroon);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--maroon);
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

/* Gaming Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.game-card h3 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.game-card p {
    color: var(--grey-soft);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-price {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.gaming-schedule {
    background: #e1f5fe;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

/* Kids Zone */
.kids-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.kids-feature {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.kids-feature i {
    font-size: 2rem;
    color: var(--red);
}

.kids-feature h4 {
    color: var(--maroon);
    margin-bottom: 0.3rem;
}

.kids-feature p {
    color: var(--grey-soft);
    font-size: 0.9rem;
}

.kids-pricing {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

/* Car Wash Section */
.wash-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.wash-package-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.wash-package-card:hover {
    transform: translateY(-5px);
}

.wash-package-card.premium {
    border: 3px solid var(--red);
    transform: scale(1.05);
}

.wash-package-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

.wash-package-card h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
}

.wash-package-card .package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.wash-package-card ul {
    list-style: none;
    text-align: left;
}

.wash-package-card ul li {
    margin-bottom: 0.5rem;
    color: var(--grey-soft);
}

.wash-package-card ul li i {
    color: var(--red);
    margin-right: 0.5rem;
}

.wash-cta {
    background: #e1f5fe;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.wash-cta p {
    margin-bottom: 0.5rem;
    color: #0288d1;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--red) 100%);
    color: white;
    text-align: center;
    padding: 4rem;
    border-radius: 3rem;
    margin: 4rem 0;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--red);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--grey-dark);
    color: white;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--maroon);
}

/* Footer (Matching Grill Menu) */
footer {
    background: var(--grey-dark);
    color: #aaa;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--red);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--red);
    transform: translateX(5px);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    color: var(--red);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #aaa;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--red);
    transform: translateY(-3px);
}

.parking-badge-footer {
    background: rgba(179, 58, 44, 0.2);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.parking-badge-footer i {
    color: var(--red);
    margin-right: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.95rem;
}

.footer-bottom i {
    color: var(--red);
    margin: 0 0.2rem;
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px #00000044;
    z-index: 99;
    transition: 0.2s;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .service-content,
    .service-content.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wash-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav ul {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-header h2 {
        font-size: 2rem;
        justify-content: center;
    }
    
    .feature-grid,
    .catering-options,
    .kids-features,
    .pricing-cards,
    .wash-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-catering {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        text-align: center;
    }
    
    .office-cta {
        flex-direction: column;
        text-align: center;
    }
}
/* Office Section - Full Width Layout */
.service-content-full {
    width: 100%;
}

.service-description-full {
    max-width: 1200px;
    margin: 0 auto;
}

/* Reorganized Feature Grid for Office */
.feature-grid-office {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item-office {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.feature-item-office:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px -10px rgba(179, 58, 44, 0.25);
}

.feature-icon {
    background: rgba(179, 58, 44, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--red);
}

.feature-text h3 {
    color: var(--maroon);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-text p {
    color: var(--grey-soft);
    line-height: 1.7;
    margin: 0;
}

/* Solar Highlight Banner */
.solar-highlight {
    background: linear-gradient(135deg, #fff8e7, #fff0d9);
    border-left: 8px solid var(--red);
    border-radius: 2rem;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.solar-icon {
    background: var(--red);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solar-icon i {
    font-size: 3rem;
    color: white;
}

.solar-text h4 {
    color: var(--maroon);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.solar-text p {
    color: var(--grey-soft);
    font-size: 1.1rem;
    margin: 0;
}

.solar-text strong {
    color: var(--red);
}

/* Office Summary */
.office-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 3rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.summary-item i {
    color: var(--red);
    font-size: 1.2rem;
}

.summary-item span {
    font-weight: 600;
    color: var(--grey-dark);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .feature-grid-office {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solar-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 700px) {
    .feature-item-office {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-icon {
        margin-bottom: 0.5rem;
    }
    
    .office-summary {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .solar-highlight {
        padding: 1.5rem;
    }
    
    .solar-icon {
        width: 60px;
        height: 60px;
    }
    
    .solar-icon i {
        font-size: 2rem;
    }
    
    .solar-text h4 {
        font-size: 1.3rem;
    }
    
    .solar-text p {
        font-size: 1rem;
    }
}
/* Updated Office Section Layout */
.office-section .service-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Side - Split Layout */
.office-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Feature Grid - 3x2 layout */
.office-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.office-features-grid .feature-item {
    background: #fdf7f0;
    padding: 1.2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    margin: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.03);
}

.office-features-grid .feature-item:hover {
    transform: translateY(-5px);
}

.office-features-grid .feature-item i {
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 0.8rem;
}

.office-features-grid .feature-item h3 {
    font-size: 1.1rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.office-features-grid .feature-item p {
    font-size: 0.9rem;
    color: var(--grey-soft);
    line-height: 1.5;
}

/* Image Buttons Section */
.office-image-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.image-button {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.image-button:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 10px 20px rgba(179,58,44,0.2);
}

.image-button.active {
    border-color: var(--red);
    background: #fff3e0;
}

.image-button img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 3px solid var(--terracotta);
}

.image-button span {
    display: block;
    font-weight: 600;
    color: var(--grey-dark);
    font-size: 0.9rem;
}

/* Image Display Area */
.office-image-display {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 0.5rem;
}

.office-image-display img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.image-caption {
    padding: 0.8rem;
    text-align: center;
    color: var(--grey-soft);
    font-size: 0.95rem;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

/* Right Side - Compact Pricing */
.office-right {
    background: white;
    border-radius: 1.5rem;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.pricing-table-compact h3 {
    color: var(--maroon);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
}

.pricing-table-compact h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.pricing-cards-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-card-compact {
    background: #fdf7f0;
    padding: 1.2rem;
    border-radius: 1rem;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #f0e0d0;
}

.pricing-card-compact:hover {
    transform: translateX(5px);
    border-color: var(--terracotta);
}

.pricing-card-compact.popular {
    border: 2px solid var(--red);
    background: #fff3e0;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--red);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card-compact h4 {
    color: var(--maroon);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding-right: 70px;
}

.pricing-card-compact .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 0.8rem;
}

.pricing-card-compact .price span {
    font-size: 0.9rem;
    color: var(--grey-soft);
    font-weight: 400;
}

.pricing-card-compact ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 1rem;
}

.pricing-card-compact ul li {
    font-size: 0.85rem;
    color: var(--grey-soft);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pricing-card-compact ul li i {
    color: var(--red);
    font-size: 0.8rem;
}

.office-cta-compact {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.office-cta-compact i {
    font-size: 2rem;
    color: #4caf50;
}

.office-cta-compact p {
    font-size: 0.95rem;
    color: #2e7d32;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .office-section .service-content {
        grid-template-columns: 1fr;
    }
    
    .office-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .office-right {
        position: static;
    }
}

@media (max-width: 700px) {
    .office-features-grid {
        grid-template-columns: 1fr;
    }
    
    .office-image-buttons {
        grid-template-columns: 1fr;
    }
    
    .image-button {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .image-button img {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
    
    .pricing-card-compact ul {
        grid-template-columns: 1fr;
    }
}
/* Gaming Arena - 3 Part Layout */
.gaming-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Left Part - Vertical Game Cards */
.gaming-cards-section {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: fit-content;
}

.games-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-card-vertical {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #fdf7f0;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.game-card-vertical:hover {
    transform: translateX(5px);
    border-left-color: var(--red);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-card-vertical i {
    font-size: 2.2rem;
    color: var(--red);
    width: 50px;
    text-align: center;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    color: var(--maroon);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.game-info p {
    color: var(--grey-soft);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.game-price {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Right Part - Split Layout */
.gaming-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Top Right - Image Gallery Table */
.gaming-gallery {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.gaming-gallery h3 {
    color: var(--maroon);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.gaming-gallery h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.gallery-table {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.gallery-cell {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 1rem;
    background: #fdf7f0;
}

.gallery-cell:hover {
    transform: translateY(-3px);
    background: #fff3e0;
}

.gallery-cell.active {
    border: 2px solid var(--red);
    background: #fff3e0;
}

.gallery-cell img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 0.3rem;
}

.gallery-cell span {
    font-size: 0.75rem;
    color: var(--grey-dark);
    font-weight: 500;
    display: block;
}

.gaming-image-display {
    margin-top: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #f5f5f5;
}

.gaming-image-display img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gaming-image-caption {
    padding: 0.8rem;
    text-align: center;
    color: var(--grey-soft);
    font-size: 0.85rem;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

/* Bottom Right - Live Match Schedule */
.gaming-schedule {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.gaming-schedule h3 {
    color: var(--maroon);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.gaming-schedule h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-day {
    background: #fdf7f0;
    border-radius: 1rem;
    overflow: hidden;
}

.day-header {
    background: var(--red);
    color: white;
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.match-list {
    padding: 0.8rem;
}

.match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0e0d0;
}

.match:last-child {
    border-bottom: none;
}

.match .league {
    background: #e0e0e0;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--grey-dark);
    min-width: 50px;
    text-align: center;
}

.match .teams {
    flex: 1;
    font-weight: 500;
    color: var(--grey-dark);
    font-size: 0.9rem;
    padding: 0 1rem;
}

.match .time {
    color: var(--red);
    font-weight: 600;
    font-size: 0.8rem;
}

.schedule-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: #fff3e0;
    border-radius: 0.8rem;
}

.schedule-note i {
    color: var(--red);
    font-size: 1.2rem;
}

.schedule-note p {
    color: var(--grey-soft);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Design for Gaming Section */
@media (max-width: 1000px) {
    .gaming-layout {
        grid-template-columns: 1fr;
    }
    
    .gaming-cards-section {
        order: 1;
    }
    
    .gaming-right {
        order: 2;
    }
}

@media (max-width: 700px) {
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-table {
        gap: 0.8rem;
    }
    
    .match {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .match .teams {
        flex: 1 1 100%;
        padding: 0;
        order: 2;
    }
    
    .match .league {
        order: 1;
    }
    
    .match .time {
        order: 3;
    }
}

@media (max-width: 480px) {
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-cell {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }
    
    .gallery-cell img {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
    
    .game-card-vertical {
        flex-direction: column;
        text-align: center;
    }
    
    .game-card-vertical i {
        width: auto;
    }
}
/* Gaming Arena - Layout */
.gaming-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Left Part - Vertical Game Cards */
.gaming-cards-section {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: fit-content;
}

.games-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-card-vertical {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #fdf7f0;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.game-card-vertical:hover {
    transform: translateX(5px);
    border-left-color: var(--red);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-card-vertical i {
    font-size: 2.2rem;
    color: var(--red);
    width: 50px;
    text-align: center;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    color: var(--maroon);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.game-info p {
    color: var(--grey-soft);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.game-price {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Right Part - Slideshow Section */
.gaming-slideshow-section {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slideshow-container {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--grey-dark);
    flex: 1;
    min-height: 450px;
}

.slideshow-main {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.slideshow-slide.active {
    opacity: 1;
}

.slide-caption {
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Navigation Buttons */
.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-prev {
    left: 15px;
}

.slideshow-next {
    right: 15px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: var(--red);
    transform: translateY(-50%) scale(1.1);
}

/* Dots/Indicators */
.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slideshow-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.slideshow-dots .dot.active {
    background: var(--red);
    transform: scale(1.2);
    border-color: var(--red);
}

/* Animation for slides */
.fade {
    animation: fadeEffect 0.6s ease;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Responsive Design for Gaming Section */
@media (max-width: 1000px) {
    .gaming-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .slideshow-container {
        min-height: 400px;
    }
    
    .slideshow-main {
        min-height: 400px;
    }
    
    .slide-caption {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .slideshow-container {
        min-height: 320px;
    }
    
    .slideshow-main {
        min-height: 320px;
    }
    
    .slide-caption {
        font-size: 0.9rem;
        padding: 1.2rem;
    }
    
    .slideshow-prev,
    .slideshow-next {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .slideshow-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .game-card-vertical {
        flex-direction: column;
        text-align: center;
    }
    
    .game-card-vertical i {
        width: auto;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        min-height: 280px;
    }
    
    .slideshow-main {
        min-height: 280px;
    }
    
    .slide-caption {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .slideshow-prev,
    .slideshow-next {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}
/* Kids Zone Image Resizing */
.service-image-gallery {
    background: #f0f0f0;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 100%;
}

.service-image-gallery img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

/* For smaller gallery images */
.service-image-gallery.small-gallery img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
}

/* Kids Zone specific */
#kids-zone .service-image-gallery {
    max-width: 100%;
    margin: 0 auto;
}

#kids-zone .service-image-gallery img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 1rem;
}
/* Book a Table Section - Grid Left, Slideshow Right */
.table-booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Left Side - Seating Options Grid (2x3) */
.seating-options-section {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: fit-content;
}

.seating-options-section h3 {
    color: var(--maroon);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.seating-options-section h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.seating-options-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seating-item {
    display: flex;
    gap: 0.8rem;
    background: #fdf7f0;
    padding: 0.9rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.seating-item:hover {
    transform: translateX(3px);
    border-left-color: var(--red);
    background: white;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

.seating-item i {
    font-size: 1.5rem;
    color: var(--red);
    min-width: 40px;
    margin-top: 0.2rem;
}

.seating-item h3 {
    color: var(--maroon);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.seating-item p {
    color: var(--grey-soft);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.seating-price {
    font-size: 0.7rem;
    color: var(--wood);
    font-weight: 500;
    display: inline-block;
    background: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.booking-cta-compact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0e0d0;
    text-align: center;
}

.booking-cta-compact .btn-book-table {
    background: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.booking-cta-compact .btn-book-table:hover {
    background: #20b859;
    transform: scale(1.05);
}

.booking-cta-compact p {
    color: var(--grey-soft);
    font-size: 0.75rem;
}

.booking-cta-compact p i {
    color: var(--red);
    margin-right: 0.3rem;
}

/* Right Side - Slideshow */
.table-slideshow-section {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.table-slideshow-section h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.table-slideshow-section h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

/* Slideshow Container for Table Section */
#tableSlideshow {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--grey-dark);
    min-height: 380px;
}

#tableSlideshow .slideshow-main {
    min-height: 380px;
}

/* Responsive */
@media (max-width: 1000px) {
    .table-booking-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #tableSlideshow {
        min-height: 350px;
    }
}

@media (max-width: 700px) {
    .seating-options-compact {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .seating-item {
        padding: 0.8rem;
    }
    
    .seating-item i {
        font-size: 1.3rem;
        min-width: 35px;
    }
    
    .seating-item h3 {
        font-size: 0.95rem;
    }
    
    #tableSlideshow {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    #tableSlideshow {
        min-height: 250px;
    }
    
    .btn-book-table {
        width: 100%;
        justify-content: center;
    }
}
/* Car Wash Section - Redesigned Layout */
.carwash-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Left Side - Cards Grid */
.carwash-left {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.carwash-left h3 {
    color: var(--maroon);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--red);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.carwash-left h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.carwash-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar */
.carwash-cards-grid::-webkit-scrollbar {
    width: 6px;
}

.carwash-cards-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.carwash-cards-grid::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

.carwash-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fdf7f0;
    padding: 0.8rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.carwash-card:hover {
    transform: translateX(3px);
    border-left-color: var(--red);
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.carwash-card i {
    font-size: 1.5rem;
    color: var(--red);
    min-width: 40px;
    text-align: center;
}

.carwash-card-info {
    flex: 1;
}

.carwash-card-info h4 {
    color: var(--maroon);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.carwash-card-info p {
    color: var(--grey-soft);
    font-size: 0.75rem;
    margin: 0;
}

.package-card {
    background: #fff3e0;
    border: 1px solid var(--terracotta);
}

.package-card i {
    color: #ff9800;
}

.package-price {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    margin-top: 0.3rem;
    font-weight: 600;
}

/* Right Side */
.carwash-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Slideshow Section */
.carwash-slideshow-section {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.carwash-slideshow-section h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.carwash-slideshow-section h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

#carwashSlideshow {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--grey-dark);
    min-height: 250px;
}

#carwashSlideshow .slideshow-main {
    min-height: 250px;
}

/* Bottom Info Cards */
.carwash-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.loyalty-card {
    background: linear-gradient(135deg, #fff3e0, #ffe6cc);
    border-radius: 1.5rem;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--terracotta);
}

.loyalty-card i {
    font-size: 2.5rem;
    color: #ff9800;
}

.loyalty-info h4 {
    color: var(--maroon);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.loyalty-info p {
    color: var(--grey-dark);
    font-size: 0.85rem;
    margin: 0;
}

.loyalty-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.quick-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.quick-info-card i {
    font-size: 2rem;
    color: var(--red);
}

.quick-info h4 {
    color: var(--maroon);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.quick-info p {
    color: var(--grey-soft);
    font-size: 0.8rem;
    margin: 0 0 0.2rem 0;
}

/* Responsive */
@media (max-width: 1000px) {
    .carwash-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .carwash-cards-grid {
        max-height: none;
        overflow-y: visible;
    }
    
    #carwashSlideshow {
        min-height: 300px;
    }
}

@media (max-width: 700px) {
    .carwash-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-card {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    #carwashSlideshow {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    #carwashSlideshow {
        min-height: 200px;
    }
    
    .carwash-card {
        padding: 0.6rem;
    }
    
    .carwash-card i {
        font-size: 1.2rem;
        min-width: 30px;
    }
}