/* ==========================================================================
   DESIGN SYSTEM - MOTEL NORDIC (MODERN VANILLA CSS)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Premium Styling */
:root {
    /* Color Palette */
    --color-primary: #0b1d33;        /* Deep Navy Blue */
    --color-primary-light: #162e49;  /* Soft Navy */
    --color-primary-dark: #061121;   /* Dark Navy */
    --color-accent: #c68a26;         /* Warm Gold/Amber */
    --color-accent-hover: #a86c1d;   /* Darker Gold */
    --color-accent-light: #fef5e7;   /* Soft Amber/Cream */
    --color-bg: #f8fafc;             /* Premium Light Blue/Gray Background */
    --color-bg-card: #ffffff;        /* Pure White for Cards */
    --color-text: #2c3e50;           /* Slate for readable body copy */
    --color-text-light: #708090;     /* Muted grey for descriptions */
    --color-border: #e2e8f0;         /* Soft borders */
    
    /* Fonts */
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows and Glows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(11, 29, 51, 0.08), 0 4px 6px -2px rgba(11, 29, 51, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(11, 29, 51, 0.12), 0 10px 10px -5px rgba(11, 29, 51, 0.04);
    --shadow-accent-glow: 0 4px 14px rgba(198, 138, 38, 0.4);
    
    /* Borders and Transitions */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base CTA Button Layout */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Container Wrapper */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   NAVIGATION BAR & HEADER (GLASSMORPHISM)
   ========================================================================== */
header {
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 55px;
    object-fit: contain;
}

.logo-text h1 {
    color: #ffffff;
    font-size: 1.45rem;
    letter-spacing: 1px;
    font-weight: 800;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item a {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item.active a {
    color: var(--color-accent);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

/* Active State for Hamburger Menu */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5deg, -5deg);
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO BANNER & SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 480px;
    background-color: var(--color-primary-dark);
    overflow: hidden;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide-item.active {
    opacity: 1;
    z-index: 10;
}

/* Dark overlay for rich contrast */
.slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 29, 51, 0.4) 0%, rgba(11, 29, 51, 0.75) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 1.5rem;
    transform: translateY(20px);
    transition: transform 1s ease-out;
}

.slide-item.active .slide-content {
    transform: translateY(0);
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

/* ==========================================================================
   SERVICES / CARDS SECTION
   ========================================================================== */
.section {
    padding: 6rem 0;
}

.section-bg {
    background-color: #ffffff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

/* Service Cards Grid */
.grid-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(198, 138, 38, 0.2);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-accent);
    transform: rotateY(360deg);
}

.service-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    filter: brightness(0) invert(1);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.alert-text {
    color: #e53e3e;
    font-weight: 600;
}

/* ==========================================================================
   FEATURE BANNER SECTION
   ========================================================================== */
.feature-banner {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #ffffff;
    text-align: center;
    padding: 5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-accent-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ==========================================================================
   CAROUSEL GALLERY SECTION
   ========================================================================== */
.gallery-container {
    position: relative;
    margin-top: 1rem;
}

.gallery-track {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none; /* Hide default scrollbar Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none; /* Hide default scrollbar Chrome/Safari */
}

.gallery-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 29, 51, 0.4);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-overlay-icon {
    color: #ffffff;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
    transform: scale(1);
}

/* Navigation dots for gallery */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-dot.active {
    background-color: var(--color-accent);
    width: 25px;
    border-radius: 10px;
}

/* ==========================================================================
   CHAMBRES PAGE - PRICING TABLES & TESTIMONIALS
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-header {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.pricing-title {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.pricing-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-label {
    font-weight: 500;
}

.pricing-value {
    color: var(--color-primary);
    font-weight: 700;
}

.pricing-disclaimer {
    font-size: 0.8rem;
    color: #e53e3e;
    text-align: center;
    background-color: #fff5f5;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid #fed7d7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-author::before {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    background-color: var(--color-accent);
}

/* ==========================================================================
   CONTACT PAGE - DETAILS & FORM & MAP
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

.contact-info-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.contact-info-details h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-details p,
.contact-info-details a {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-details a:hover {
    color: var(--color-accent);
}

/* Contact Form */
/* Embedded Google Maps Container */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   RESERVATION PAGE - IFRAME CONTAINER
   ========================================================================== */
.reservation-panel {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    padding: 1rem;
}

.reservation-iframe {
    width: 100%;
    height: 1800px; /* Base height */
    border: none;
    display: block;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem 0;
    border-top: 4px solid var(--color-accent);
}

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

.footer-column h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 1.5rem;
}

.footer-badge-img {
    max-height: 100px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Bottom Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-5px);
}

/* ==========================================================================
   LIGHTBOX COMPONENT (IMAGE EXPANSION GALLERY)
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 29, 51, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    width: 100%;
    height: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVE STYLING
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-services {
        gap: 1.5rem;
    }
    .pricing-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .nav-container {
        height: 75px;
    }
    
    /* Toggle Mobile Navigation */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 4rem 1.5rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item a {
        font-size: 1.35rem;
    }
    
    /* Hero Adjustments */
    .hero-slider {
        height: 400px;
    }
    .slide-title {
        font-size: 2.35rem;
    }
    .slide-subtitle {
        font-size: 1.25rem;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
    .slider-prev { left: 1rem; }
    .slider-next { right: 1rem; }
    
    /* Structure grids */
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .section-title {
        font-size: 1.85rem;
    }
    .gallery-item {
        flex: 0 0 calc(50% - 0.75rem);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .grid-services {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        flex: 0 0 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        padding: 1.75rem 1.25rem;
    }
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    .slide-title {
        font-size: 1.85rem;
    }
}
