/* ============================================
   MILJÖTAXI - WEBFLOW EXACT COPY
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Webflow Style */
    --primary: #1a1a1a;
    --secondary: #28a745;
    --secondary-dark: #218838;
    --accent: #ffc107;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #212529;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary);
    background: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1.25rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo i {
    font-size: 1.75rem;
    color: var(--secondary);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: none;
}

.logo-img.active {
    display: block;
}

.nav-logo:has(.logo-img.active) i {
    display: none;
}

.nav-logo:has(.logo-img.active) span {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION - EXACT WEBFLOW STYLE
   ============================================ */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('3a164657-3d82-4a0f-bb54-e8c41e43770b.jpeg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 200px 0 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Exact match to webflow - background image sizing */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center bottom;
        padding: 160px 0 100px;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        display: none; /* Hide short version on tablet */
    }
    
    .hero-subtitle-full {
        display: block;
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
        opacity: 1;
        color: var(--white);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: cover;
        background-position: center bottom;
        padding: 140px 0 80px;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        display: block; /* Show short version on small mobile */
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 0 var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
        opacity: 1;
        color: var(--white);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
        font-weight: 400;
    }
    
    .hero-subtitle-full {
        display: none; /* Hide full text on small mobile */
    }
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    opacity: 1;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    padding: 0 var(--spacing-sm);
}

.hero-subtitle-full {
    display: none; /* Hide full text on desktop */
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-icons i {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.btn-booking-hero {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
    position: relative;
    z-index: 10;
}

.btn-booking-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
    background: var(--secondary-dark);
}

.btn-booking-hero i {
    font-size: 1.25rem;
}

.btn-phone-hero {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.btn-phone-hero:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-phone-hero i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }
    
    .btn-booking-hero,
    .btn-phone-hero {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* ============================================
   SECTIONS - EXACT WEBFLOW STYLE
   ============================================ */
section {
    padding: var(--spacing-xxl) 0;
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--primary);
    text-align: center;
    letter-spacing: -0.5px;
}

section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about {
    background: #1b1b1b;
    padding: var(--spacing-xxl) 0;
    margin-top: 0;
}


.about h2 {
    color: var(--white) !important;
}

.about p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.about-image {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding-top: var(--spacing-md);
}

.image-placeholder {
    max-width: 100%;
    width: 100%;
    height: 500px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin: 0 auto;
    object-fit: cover;
}

    .about-img {
        max-width: 100%;
        width: 100%;
        height: 500px;
        border-radius: 12px;
        object-fit: cover;
        object-position: center center;
        margin: 0 auto;
        display: block;
    }

/* ============================================
   RECENSIONER SECTION
   ============================================ */
.reviews-section {
    background: var(--light-gray);
    padding: var(--spacing-xl) 0;
    margin-top: 0;
}

.reviews-section h2 {
    margin-bottom: var(--spacing-xl);
}

.reviews-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto; /* Must be auto for programmatic scrolling to work */
    scroll-snap-type: none; /* Disable snap for smooth auto-scroll */
    scroll-behavior: auto; /* Changed to auto for programmatic scrolling */
    -webkit-overflow-scrolling: touch;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    scrollbar-width: none; /* Hide scrollbar */
    -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
    position: relative;
}

.reviews-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome/Safari */
}

.review-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
    display: block;
    min-height: 200px;
}

/* Show all 10 reviews on desktop with horizontal scroll */
@media (min-width: 769px) {
    .reviews-carousel {
        display: flex;
        overflow-x: auto; /* Must be auto for programmatic scrolling to work */
        scroll-snap-type: none; /* Disable snap for smooth auto-scroll */
        scroll-behavior: auto; /* Changed to auto for programmatic scrolling */
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-md);
        padding-bottom: var(--spacing-md);
        scrollbar-width: none; /* Hide scrollbar */
        -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
    }
    
    .reviews-carousel::-webkit-scrollbar {
        display: none; /* Hide scrollbar in Chrome/Safari */
    }
    
    .review-card {
        min-width: 300px;
        max-width: 350px;
        flex-shrink: 0;
    }
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-sm);
}

.review-stars i {
    color: #ffc107;
    font-size: 1.125rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    text-align: left;
    font-style: italic;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    margin: 0;
}

.carousel-controls {
    display: none;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.carousel-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.carousel-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: 5px;
}

/* ============================================
   BRA ATT VETA
   ============================================ */
.bra-att-veta {
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.info-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: left;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(40, 167, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--secondary);
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.info-card p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

.cta-button {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   FÖRETAG
   ============================================ */
.foretag {
    background: var(--white);
}

.foretag p {
    text-align: center;
}

/* ============================================
   VI ERBJUDER
   ============================================ */
.vi-erbjuder {
    background: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(40, 167, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--secondary);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.service-card p {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

.video-section {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-embed {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.video-placeholder {
    max-width: 900px;
    aspect-ratio: 16/9;
    background: var(--dark-gray);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: var(--spacing-sm);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--white);
}

.video-placeholder span {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

.video-placeholder:hover {
    background: var(--primary);
    transform: scale(1.02);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    background: var(--white);
    text-align: center;
    padding: var(--spacing-lg) 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--white);
}

.contact-info {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.phone-number {
    font-size: 1.5rem !important;
    color: var(--primary) !important;
    font-weight: 700;
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.availability {
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-top: var(--spacing-md);
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking {
    background: var(--white);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.booking-form .btn {
    width: 100%;
    margin-top: var(--spacing-sm);
    justify-content: center;
}

/* ============================================
   FOOTER - EXACT WEBFLOW STYLE
   ============================================ */
.footer {
    background: #1b1b1b;
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-wrapper-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand-wrapper-main {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper-main {
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-brand-2 {
    display: inline-block;
    text-decoration: none;
}

.footer-brand-description-main {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-contact-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--spacing-sm);
}

.footer-contact-icon {
    color: var(--white);
    font-size: 1rem;
}

.footer-contact-icon i {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links-wrapper-main {
    display: flex;
    flex-direction: column;
}

.white-text {
    color: var(--white);
}

.mb-15 {
    margin-bottom: 1rem;
}

.footer-links-wrapper-main h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-main {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link-main:hover {
    color: var(--white);
}

.footer-link-main strong {
    color: var(--white);
    font-weight: 600;
}

.footer-link-main.primary {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links-wrapper-cta {
    display: flex;
    flex-direction: column;
}

.footer-bottom-wrapper-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons-wrapper-main {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social-icon-main {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon-main:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-social-icon-main i {
    font-size: 1.125rem;
}

.footer-rights-wrapper-main {
    display: flex;
    align-items: center;
}

.footer-copyright-main {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .footer-wrapper-main {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-links-wrapper-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-wrapper-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-bottom-wrapper-main {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-brand-description-main {
        font-size: 0.9rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        padding: var(--spacing-md) 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding: 160px 0 100px;
        background-attachment: scroll;
        min-height: 100vh;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .gallery-item {
        aspect-ratio: 1;
        overflow: hidden;
    }
    
    .about-img {
        height: 350px;
        min-height: 300px;
        border-radius: 8px;
        object-fit: cover;
        object-position: center center;
        width: 100%;
    }
    
    .about-image {
        padding: 0 var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .about .container {
        padding: 0 var(--spacing-sm);
    }
    
    .about h2 {
        padding: 0 var(--spacing-sm);
    }
    
    .about p {
        padding: 0 var(--spacing-sm);
    }
    
    .info-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-carousel {
        display: flex;
        overflow-x: auto; /* Must be auto for programmatic scrolling to work */
        scroll-snap-type: none; /* Disable snap for smooth auto-scroll */
        scroll-behavior: auto; /* Changed to auto for programmatic scrolling */
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
        gap: 0;
        padding-bottom: var(--spacing-md);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .reviews-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-container {
        padding: 0;
        overflow: hidden;
    }
    
    .reviews-carousel {
        padding-left: var(--spacing-sm);
        padding-right: 0;
        margin: 0;
    }
    
    .review-card {
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        width: calc(100vw - 4rem);
        flex-shrink: 0; /* Prevent cards from shrinking */
        margin-right: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .review-card:last-child {
        margin-right: var(--spacing-sm);
    }
    
    .carousel-controls {
        display: none; /* Hide buttons on mobile - auto-scroll is automatic */
    }
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        padding: var(--spacing-md) 0;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .review-author {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        gap: 0;
    }
    
    .trust-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .hero-icons {
        gap: var(--spacing-sm);
    }
    
    .hero-icons i {
        font-size: 1.25rem;
    }
}





