/* ===== FAQ SECTION ===== */
.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: var(--light-gray);
}

.faq__question h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq__icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq__answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #2c3e50; /* Dark Blue-Gray from logo */
    --secondary-color: #ff6b35; /* Orange from logo */
    --accent-color: #3498db; /* Blue from logo */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-3xl) 0;
}



.section__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--secondary-color), #ff8a65);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav__logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.nav__logo-img:hover {
    transform: scale(1.05);
}

.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-normal);
    z-index: var(--z-modal);
}

.nav__menu.show-menu {
    right: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav__link {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    height: 38px; /* Enforce consistent height */
}

.nav__link:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.nav__link.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.nav__link--whatsapp {
    background-color: #25D366;
    color: var(--white) !important;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: background-color var(--transition-fast);
}

.nav__link--whatsapp:hover {
    background-color: #1EAE56;
    color: var(--white) !important; /* Ensure text remains white on hover */
}

.nav__link--whatsapp::after {
    display: none; /* Remove the underline effect */
}

.nav__close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: var(--primary-color);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.language-switcher {
    display: flex;
    gap: var(--spacing-xs);
}

.lang-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nav__toggle {
    font-size: var(--font-size-xl);
    cursor: pointer;
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f1f3f4" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.5;
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}



/* ===== HERO SLIDESHOW ===== */
.hero__visual {
    perspective: 1000px;
}

.hero-slideshow {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    position: relative;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(50%) scale(0.8);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 1;
}

.hero-slide.prev {
    transform: translateX(-50%) scale(0.8);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.hero-slide.active .hero-slide-caption {
    transform: translateY(0);
}

.hero-slide-caption h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.hero-slide-caption p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.slideshow-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.slideshow-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slideshow-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    z-index: 2;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slideshow-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}


/* ===== SERVICES SECTION ===== */
.services {
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    font-size: var(--font-size-2xl);
}

.service-card__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.service-card__description {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.service-card__detail {
    color: var(--text-light);
    line-height: 1.6;
}

.services__footnote {
    text-align: center;
    margin-top: var(--spacing-2xl);
    font-style: italic;
    color: var(--text-light);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--light-gray);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.gallery__item {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery__card {
    position: relative;
    height: 300px; /* Uniform thumbnail height */
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Real image inside gallery */
.gallery__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover; /* enforce same size thumbnails */
    transition: transform var(--transition-normal);
}

.gallery__item:hover .gallery__thumb {
    transform: scale(1.06);
}

.placeholder-card {
    width: 200px;
    height: 120px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.service-card-demo {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.restaurant-card-demo {
    background: linear-gradient(135deg, #f39c12, #d35400);
}

.photo-card-demo {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.auto-card-demo {
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.demo-logo {
    font-size: var(--font-size-2xl);
}

.demo-text {
    flex: 1;
}

.demo-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.demo-subtitle {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: var(--spacing-xs);
}

.demo-phone {
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--spacing-xl);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__overlay h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

/* ===== LIGHTBOX (Fullscreen) ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none; /* Changed to flex when shown */
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    padding: var(--spacing-md);
    cursor: pointer;
}

.lightbox.show {
    display: flex;
}

.lightbox__content {
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    cursor: default;
}

.lightbox__image {
    max-width: 100%;
    max-height: calc(95vh - 80px); /* Adjust height to leave space for caption */
    object-fit: contain;
    border-radius: var(--border-radius-md);
}

.lightbox__caption {
    background: var(--white);
    color: var(--text-dark);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    font-size: var(--font-size-sm);
    max-width: 800px;
    margin: 0 auto;
}

.lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-gray));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="20" cy="20" r="1"/></g></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.cta__subtitle {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
}

.cta__description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about__content .section__header {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.about__text {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 600;
    color: var(--primary-color);
}

.feature i {
    color: var(--secondary-color);
    font-size: var(--font-size-lg);
}

.about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__image-container {
    padding: 5px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.about__avatar {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
}

.about__image-container {
    padding: 5px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    width: fit-content; /* Ensure container wraps the image */
}

.about__avatar {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
}

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--light-gray);
    padding: var(--spacing-3xl) 0;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.process__step {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.process__step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process__number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.process__image {
    width: 200px;
    height: 200px;
    margin: var(--spacing-lg) auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.process__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.process__step:hover .process__image img {
    transform: scale(1.05);
}

.process__title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.3rem;
    font-weight: 600;
}

.process__description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.process__cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .process__steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .process__step {
        padding: var(--spacing-xl);
    }
    
    .process__number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: -17px;
    }
    
    .process__image {
        width: 150px;
        height: 150px;
    }
    
    .process__title {
        font-size: 1.2rem;
    }
}

.testimonials__dots {
    display: flex;
    gap: var(--spacing-sm);
}

.testimonial__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.testimonial__dot.active {
    background: var(--secondary-color);
}

/* ===== QUOTE REQUEST SECTION ===== */
.quote-request {
    background: var(--light-gray);
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    width: 100%;
}

.form-row .form__group {
    min-width: 0; /* Allows flex items to shrink below content size */
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form__label--select {
    color: var(--text-light);
}

.form__select:focus + .form__label--select,
.form__select:valid + .form__label--select {
    transform: translateY(-35px) scale(0.85);
    color: var(--secondary-color);
}

.quote-form .btn {
    margin-top: var(--spacing-lg);
    gap: var(--spacing-sm);
}

.quote-form .btn i {
    font-size: var(--font-size-lg);
}

/* Enhanced form styling for quote form */
.quote-form .form__input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.quote-form .form__input:focus + .form__label {
    color: var(--accent-color);
}

/* Quantity input specific styling */
#quantity {
    text-align: center;
    font-weight: 600;
    font-size: var(--font-size-lg);
}

/* Industry select styling */
#industry {
    font-weight: 500;
}

#industry option {
    padding: var(--spacing-sm);
    font-size: var(--font-size-base);
}

/* Additional info textarea styling */
#additional-info {
    min-height: 100px;
    resize: vertical;
}

/* Form validation states - more subtle colors */
.form__input:valid {
    border-color: var(--accent-color);
}

.form__input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form__input:invalid:not(:placeholder-shown) + .form__label {
    color: #e74c3c;
}

/* Remove validation colors until user interacts */
.form__input:not(:focus):not(.user-interacted):valid {
    border-color: #e9ecef;
}

.form__input:not(:focus):not(.user-interacted):invalid {
    border-color: #e9ecef;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--white);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.contact__details h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact__details p {
    color: var(--text-light);
    line-height: 1.6;
}

.address-lines {
    color: var(--text-light);
    line-height: 1.6;
}

.address-lines div {
    margin-bottom: 2px;
}

.address-lines div:last-child {
    margin-bottom: 0;
}

.contact__social h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.social__links {
    display: flex;
    gap: var(--spacing-md);
}

.social__link {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social__link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* WhatsApp specific color */
.social__link .fa-whatsapp {
    color: #25D366;
}

.social__link:hover .fa-whatsapp {
    color: var(--white);
}

/* ===== FORM STYLES ===== */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form__group {
    position: relative;
}

.form__input {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-base);
    background: var(--white);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    transform: translateY(-35px) scale(0.85);
    color: var(--secondary-color);
}

.form__label {
    position: absolute;
    top: 50%;
    left: var(--spacing-md);
    transform: translateY(-50%);
    font-size: var(--font-size-base);
    color: var(--text-light);
    pointer-events: none;
    transition: all var(--transition-fast);
    background: var(--white);
    padding: 0 var(--spacing-xs);
    max-width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form__textarea + .form__label {
    top: var(--spacing-lg);
    transform: translateY(0);
}

.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
    transform: translateY(-35px) scale(0.85);
    color: var(--secondary-color);
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.form__checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox__label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

/* ===== OFFER SECTION ===== */
.offer-section {
    background: var(--primary-color);
    color: var(--white);
}

.offer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.offer-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.offer-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
}

.offer-form {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.offer-form .form__group {
    flex-grow: 1;
}

.offer-gdpr .checkbox__label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 600px) {
    .offer-form {
        flex-direction: column;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer__section h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer__logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.footer__logo-img:hover {
    transform: scale(1.05);
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer__title {
    color: var(--secondary-color);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--secondary-color);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__contact p {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer__contact i {
    color: var(--secondary-color);
    width: 20px;
}

.address-inline {
    display: flex;
    flex-direction: column;
}

.address-inline span {
    line-height: 1.4;
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

.footer__social .social__link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer__social .social__link:hover {
    background: var(--secondary-color);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer__legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--secondary-color);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: var(--light-gray);
}

.reviews-carousel-container {
    display: flex;
    width: max-content; /* Allow the container to be as wide as its content */
    animation: scroll 40s linear infinite;
}

.reviews-carousel-container:hover {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 auto; /* Prevent flex items from shrinking */
    width: 350px;
    margin: 0 var(--spacing-md);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-card__header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: var(--spacing-md);
    object-fit: cover;
}

.review-card__author-info {
    display: flex;
    flex-direction: column;
}

.review-card__author {
    font-weight: 700;
    color: var(--primary-color);
}

.review-card__rating {
    color: #f39c12; /* Gold color for stars */
}

.review-card__text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Scroll by half the width (since content is duplicated) */
    }
}

/* ===== WHATSAPP & BACK TO TOP BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px; /* Positioned above the back-to-top button */
    right: var(--spacing-xl);
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float i {
    margin-top: 15px;
}

.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: var(--font-size-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (min-width: 768px) {
    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
    
    .nav__list {
        flex-direction: row;
        gap: var(--spacing-xs);
    }
    
    .nav__link {
        font-size: var(--font-size-base);
    }
    
    .nav__close,
    .nav__toggle {
        display: none;
    }
    
    .hero__cta {
        flex-wrap: nowrap;
    }
}

@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }
    
    .hero__title {
        font-size: var(--font-size-4xl);
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about__content .section__header {
        text-align: center;
    }
    
    .contact__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .quote-form-container {
        padding: var(--spacing-2xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section__title {
        font-size: var(--font-size-3xl);
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
    }
    
    .hero__subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .floating-icon {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        animation: dvdBounceTablet 8s linear infinite, spinRotate 4s linear infinite, colorShift 6s ease-in-out infinite;
    }
    
    @keyframes dvdBounceTablet {
        0% { transform: translate(0px, 0px); }
        12.5% { transform: translate(90px, -60px); }
        25% { transform: translate(120px, 0px); }
        37.5% { transform: translate(60px, 50px); }
        50% { transform: translate(0px, 70px); }
        62.5% { transform: translate(-80px, 30px); }
        75% { transform: translate(-120px, 0px); }
        87.5% { transform: translate(-60px, -50px); }
        100% { transform: translate(0px, 0px); }
    }
    
    .cta__title {
        font-size: var(--font-size-3xl);
    }
    
    .cta__subtitle {
        font-size: var(--font-size-xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer__legal {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: var(--font-size-2xl);
    }
    
    .section__title {
        font-size: var(--font-size-2xl);
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .floating-icon {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        animation: dvdBounceMobile 8s linear infinite, spinRotate 4s linear infinite, colorShift 6s ease-in-out infinite;
    }
    
    .hero__floating-icon {
        height: 300px;
    }
    
    @keyframes dvdBounceMobile {
        0% { transform: translate(0px, 0px); }
        12.5% { transform: translate(70px, -40px); }
        25% { transform: translate(90px, 0px); }
        37.5% { transform: translate(45px, 35px); }
        50% { transform: translate(0px, 50px); }
        62.5% { transform: translate(-60px, 25px); }
        75% { transform: translate(-90px, 0px); }
        87.5% { transform: translate(-45px, -35px); }
        100% { transform: translate(0px, 0px); }
    }
    
    .testimonial__text {
        font-size: var(--font-size-lg);
    }
    
    .back-to-top {
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
    }
}

/* ===== AOS ANIMATION OVERRIDES ===== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader__circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader__text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .nav__toggle,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding-top: 0;
    }
    
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
}
