﻿/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --background-light: #F9F9F9;
    --background-lighter: #EEEEEE;
    --accent-red: #D62828;
    --secondary-dark: #333333;
    --text-dark: #222222;
    --card-white: #FFFFFF;
    --highlight-orange: #E53E3E;
    
    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Responsive typography for different screen sizes */
@media (min-width: 1024px) and (max-width: 1440px) {
    h1 {
        font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    }
    
    h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    h3 {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    h1 {
        font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    }
    
    h2 {
        font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    }
    
    h3 {
        font-size: clamp(1.7rem, 3.5vw, 2.2rem);
    }
}

@media (min-width: 1921px) {
    h1 {
        font-size: clamp(3rem, 6vw, 5rem);
    }
    
    h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    h3 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Responsive container widths for different screen sizes */
@media (min-width: 1024px) and (max-width: 1440px) {
    .container {
        max-width: 1000px;
        padding: 0 2rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .container {
        max-width: 1400px;
        padding: 0 2.5rem;
    }
}

@media (min-width: 1921px) {
    .container {
        max-width: 1600px;
        padding: 0 3rem;
    }
}

.section {
    padding: var(--section-padding);
}

/* Responsive section padding */
@media (min-width: 1024px) and (max-width: 1440px) {
    .section {
        padding: 4rem 0;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .section {
        padding: 6rem 0;
    }
}

@media (min-width: 1921px) {
    .section {
        padding: 8rem 0;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.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: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: var(--accent-red);
    color: white;
}

.btn--primary:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--secondary {
    background: var(--card-white);
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

.btn--secondary:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--outline:hover {
    background: white;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn--small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* ===== TOP BAR ===== */
.top-bar__link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.top-bar__link:hover {
    color: white;
    text-decoration: underline;
}
.top-bar {
    background: var(--secondary-dark);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__social {
    display: flex;
    gap: 1rem;
}

.top-bar__social-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.top-bar__social-link:hover {
    color: var(--accent-red);
}

.top-bar__promo {
    text-align: center;
}

.top-bar__promo strong {
    text-decoration: underline;
    color: var(--accent-red);
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 2.5rem;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.nav__logo:hover {
    transform: scale(1.02);
}

.nav__logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav__logo-text {
    display: flex;
    flex-direction: column;
}

.nav__logo-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav__link:hover {
    color: var(--accent-red);
}

.nav__icons {
    display: flex;
    gap: 1.5rem;
}

.nav__icon {
    color: var(--text-dark);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav__icon:hover {
    color: var(--accent-red);
}

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

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-red);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 80vh;
    background: white;
    overflow: visible;
    margin-bottom: 0;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    padding: 0.5rem 0;
}

.hero__speed-banner {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-200%) rotate(-10deg);
    background: var(--accent-red);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 280px;
    text-align: center;
    z-index: 10;
    animation: pulse-banner 2s ease-in-out infinite;
}

/* Responsive positioning for speed banner */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero__speed-banner {
        transform: translateX(-180%) rotate(-10deg);
        max-width: 260px;
        padding: 1.25rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .hero__speed-banner {
        transform: translateX(-220%) rotate(-10deg);
        max-width: 300px;
        padding: 1.75rem;
    }
}

@media (min-width: 1921px) {
    .hero__speed-banner {
        transform: translateX(-240%) rotate(-10deg);
        max-width: 320px;
        padding: 2rem;
    }
}

@keyframes pulse-banner {
    0% {
        transform: translateX(-200%) rotate(-10deg) scale(1);
        box-shadow: var(--shadow-medium);
    }
    50% {
        transform: translateX(-200%) rotate(-10deg) scale(1.05);
        box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
    }
    100% {
        transform: translateX(-200%) rotate(-10deg) scale(1);
        box-shadow: var(--shadow-medium);
    }
}

/* Responsive keyframes for different screen sizes */
@media (min-width: 1024px) and (max-width: 1440px) {
    @keyframes pulse-banner {
        0% {
            transform: translateX(-180%) rotate(-10deg) scale(1);
            box-shadow: var(--shadow-medium);
        }
        50% {
            transform: translateX(-180%) rotate(-10deg) scale(1.05);
            box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
        }
        100% {
            transform: translateX(-180%) rotate(-10deg) scale(1);
            box-shadow: var(--shadow-medium);
        }
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    @keyframes pulse-banner {
        0% {
            transform: translateX(-220%) rotate(-10deg) scale(1);
            box-shadow: var(--shadow-medium);
        }
        50% {
            transform: translateX(-220%) rotate(-10deg) scale(1.05);
            box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
        }
        100% {
            transform: translateX(-220%) rotate(-10deg) scale(1);
            box-shadow: var(--shadow-medium);
        }
    }
}

@media (min-width: 1921px) {
    @keyframes pulse-banner {
        0% {
            transform: translateX(-240%) rotate(-10deg) scale(1);
            box-shadow: var(--shadow-medium);
        }
        50% {
            transform: translateX(-240%) rotate(-10deg) scale(1.05);
            box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
        }
        100% {
            transform: translateX(-240%) rotate(-10deg) scale(1);
            box-shadow: var(--shadow-medium);
        }
    }
}

.speed__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.speed__content p {
    font-size: 0.95rem;
    margin: 0;
    color: white;
    font-weight: 500;
}

/* Hide mobile CTA on desktop */
.hero__mobile-cta {
    display: none;
}

.hero__discount-banner {
    position: absolute;
    top: 2rem;
    right: 4rem;
    background: var(--accent-red);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 300px;
    text-align: center;
}

/* Responsive positioning for discount banner */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero__discount-banner {
        right: 2rem;
        max-width: 280px;
        padding: 1.75rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .hero__discount-banner {
        right: 5rem;
        max-width: 320px;
        padding: 2.25rem;
    }
}

@media (min-width: 1921px) {
    .hero__discount-banner {
        right: 6rem;
        max-width: 350px;
        padding: 2.5rem;
    }
}

.discount__content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.discount__content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.discount__content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero__location-search {
    position: absolute;
    bottom: 12rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 500px;
    width: 90%;
}

/* Responsive positioning for location search */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero__location-search {
        max-width: 450px;
        padding: 1.75rem;
        bottom: 10rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .hero__location-search {
        max-width: 550px;
        padding: 2.25rem;
        bottom: 14rem;
    }
}

@media (min-width: 1921px) {
    .hero__location-search {
        max-width: 600px;
        padding: 2.5rem;
        bottom: 16rem;
    }
}

.location__content h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    text-align: center;
}

.location__search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location__search-box i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.location__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--background-lighter);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.location__input:focus {
    outline: none;
    border-color: var(--accent-red);
}

.location__note {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    text-align: center;
    margin: 0;
}

.hero__image {
    position: relative;
    width: 100vw;
    height: 70vh;
    margin-left: calc(-50vw + 50%);
    margin-top: 2rem;
}

.hero__slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero__img.active {
    opacity: 1;
}

.hero__slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero__indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero__indicator.active {
    background: white;
    border-color: white;
}


/* Responsive hero image adjustments */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero__image {
        height: 65vh;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .hero__image {
        height: 75vh;
    }
}

@media (min-width: 1921px) {
    .hero__image {
        height: 80vh;
    }
}

/* ===== OFFERTE SECTION ===== */
.offerte-section {
    background: var(--background-lighter);
    padding: 4rem 0;
    min-height: 100vh;
}

.offerte__form-panel {
    background: var(--card-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.offerte__title {
    color: var(--highlight-orange);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.offerte__step-title {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form__label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form__select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--background-lighter);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    cursor: pointer;
}

.form__select:focus {
    outline: none;
    border-color: var(--accent-red);
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form__checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-red);
}

.form__checkbox-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.offerte__navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.btn--prev {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--background-lighter);
}

.btn--prev:hover {
    background: var(--background-lighter);
    color: var(--text-dark);
}

.btn--next,
.btn--submit {
    background: var(--highlight-orange);
    color: white;
}

.btn--next:hover,
.btn--submit:hover {
    background: #C53030;
}

/* ===== SLIDER STYLING ===== */
.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form__slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--background-lighter);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-red);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.form__slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-red);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-input {
    width: 80px;
    text-align: center;
}

.slider-unit {
    color: var(--secondary-dark);
    font-weight: 500;
    min-width: 30px;
}

/* ===== CONFIRMATION POPUP ===== */
.confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 0 1rem;
    animation: slideIn 0.3s ease;
}

.popup-icon {
    font-size: 4rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.popup-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--secondary-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== SECTION TITLES ===== */
.section__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* ===== CONFETTI ===== */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    animation: confetti-fall linear infinite;
    z-index: 1001;
    pointer-events: none;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== FORM VALIDATION ===== */
.error-message {
    color: #D62828;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.form__input:invalid,
.form__select:invalid,
.form__textarea:invalid {
    border-color: #D62828;
}

.form__input:valid,
.form__select:valid,
.form__textarea:valid {
    border-color: #28a745;
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1002;
    animation: slideInRight 0.3s ease;
    max-width: 300px;
}

.notification--error {
    background: #D62828;
}

.notification--success {
    background: #28a745;
}

.notification--info {
    background: #17a2b8;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== LIGHT SHOWCASE SECTION ===== */
.light-showcase {
    background: var(--background-light);
    padding: 4rem 0;
}

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

.light-showcase__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.light-showcase__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.light-showcase__img:hover {
    transform: scale(1.02);
}

.light-showcase__text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.light-showcase__text p {
    color: var(--secondary-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.light-showcase__features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.light-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    font-weight: 600;
}

.light-feature i {
    font-size: 1.2rem;
}

/* Responsive Light Showcase */
@media (max-width: 768px) {
    .light-showcase__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .light-showcase__img {
        height: 300px;
    }
    
    .light-showcase__text h2 {
        font-size: 2rem;
    }
    
    .light-showcase__features {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* ===== LOCATION CONFIRMATION SECTION ===== */
.location-confirmation {
    background: var(--background-lighter);
    text-align: center;
    margin-top: 0;
    padding-top: 4rem;
}

.location-confirmation__description {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-confirmation__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature__item {
    background: var(--card-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature__item i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.feature__item h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.feature__item p {
    color: var(--text-dark);
}

.location-confirmation__cta {
    margin-top: 2rem;
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    background: linear-gradient(135deg, var(--accent-red), #C41E3A);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.about-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about-hero__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--card-white);
}

.about__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Responsive about container */
@media (min-width: 1024px) and (max-width: 1440px) {
    .about__container {
        gap: 2rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .about__container {
        gap: 4rem;
    }
}

@media (min-width: 1921px) {
    .about__container {
        gap: 5rem;
    }
}

.about__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 600px;
}

.about__img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.about__image:hover .about__img {
    transform: scale(1.03);
}

.about__content {
    padding: 1.5rem 0 1.5rem 1.5rem;
}

.about__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.stat__item {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== MISSION SECTION ===== */
.mission {
    background: var(--background-lighter);
}

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

.mission__item {
    background: var(--card-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.mission__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), #C41E3A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.mission__item h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.mission__item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--card-white);
}

.team__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team__member {
    text-align: center;
    padding: 2rem 1rem;
}

.team__photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--background-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-red);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.team__photo:hover {
    transform: scale(1.05);
}

.team__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.team__photo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(214, 40, 40, 0.9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team__photo:hover .team__photo-overlay {
    opacity: 1;
}

.team__photo-overlay i {
    font-size: 1rem;
}

.team__member h3 {
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.team__role {
    color: var(--highlight-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team__member p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== WHY US SECTION ===== */
.why-us {
    background: var(--background-lighter);
}

.why-us__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us__item {
    background: var(--card-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.why-us__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why-us__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.why-us__item h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.why-us__item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--accent-red), #C41E3A);
    color: white;
    text-align: center;
}

.cta__content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta__content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

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

/* ===== PRODUCTS SECTION ===== */
.products {
    background: var(--background-lighter);
}

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

/* Responsive grid adjustments for different screen sizes */
@media (min-width: 1024px) and (max-width: 1440px) {
    .products__container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .products__container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1921px) {
    .products__container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
}

.product__card {
    background: var(--card-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), #C41E3A);
    transform: scaleX(0);
    transition: var(--transition);
}

.product__card:hover::before {
    transform: scaleX(1);
}

.product__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), #C41E3A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.product__title {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.product__description {
    color: var(--text-dark);
    font-size: 1.125rem;
}

.products__note {
    text-align: center;
    font-style: italic;
    color: var(--secondary-dark);
    font-size: 1.125rem;
}

/* ===== WORKFLOW SECTION ===== */
.workflow {
    background: var(--card-white);
}

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

/* Responsive workflow grid */
@media (min-width: 1024px) and (max-width: 1440px) {
    .workflow__container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .workflow__container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1921px) {
    .workflow__container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }
}

.workflow__step {
    text-align: center;
    padding: 2rem 1rem;
}

.workflow__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), #C41E3A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.workflow__step:hover .workflow__icon {
    transform: scale(1.1) rotate(5deg);
}

.workflow__title {
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.workflow__description {
    color: var(--text-dark);
}

.workflow__cta {
    text-align: center;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    background: var(--background-lighter);
}

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

.projects__description {
    font-size: 1.25rem;
    color: var(--secondary-dark);
    opacity: 0.8;
}

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

/* Responsive projects grid */
@media (min-width: 1024px) and (max-width: 1440px) {
    .projects__grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .projects__grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1921px) {
    .projects__grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }
}

.project__card {
    background: var(--card-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.project__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.project__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project__content {
    padding: 2rem;
}

.project__title {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.project__description {
    color: var(--text-dark);
}

.projects__cta {
    text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--card-white);
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--background-lighter);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-soft);
}

.faq__question {
    padding: 1.5rem;
    background: var(--background-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--background-lighter);
}

.faq__question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.faq__question i {
    color: var(--accent-red);
    transition: var(--transition);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.active .faq__answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq__answer p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--background-lighter);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Responsive contact container */
@media (min-width: 1024px) and (max-width: 1440px) {
    .contact__container {
        gap: 3rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .contact__container {
        gap: 5rem;
    }
}

@media (min-width: 1921px) {
    .contact__container {
        gap: 6rem;
    }
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.contact__item i {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact__item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--accent-red);
}

.contact__item p {
    margin: 0;
    color: var(--text-dark);
}

.contact__form {
    background: var(--card-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--background-lighter);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background-light);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: var(--card-white);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== APPOINTMENT & QUOTE SECTIONS ===== */
.appointment,
.quote {
    background: linear-gradient(135deg, var(--accent-red), #C41E3A);
    color: white;
    text-align: center;
}

.appointment__container,
.quote__container {
    max-width: 600px;
    margin: 0 auto;
}

.appointment__description,
.quote__description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.quote .section__title {
    color: white;
}

.appointment .btn,
.quote .btn {
    background: white;
    color: var(--accent-red);
}

.appointment .btn:hover,
.quote .btn:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--background-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--background-lighter);
}

.breadcrumb__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb__link {
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.breadcrumb__link:hover {
    opacity: 1;
    color: var(--accent-red);
}

.breadcrumb__separator {
    color: var(--text-dark);
    opacity: 0.5;
}

.breadcrumb__current {
    color: var(--accent-red);
    font-weight: 600;
}

/* ===== PROJECTS GALLERY ===== */
.projects-gallery {
    padding: 4rem 0;
}

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

.project-gallery__card {
    position: relative;
    background: var(--card-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.project-gallery__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-gallery__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.project-gallery__card:hover .project-gallery__img {
    transform: scale(1.05);
}

.project-gallery__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(136, 8, 8, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-gallery__card:hover .project-gallery__overlay {
    opacity: 1;
}

.project-gallery__overlay i {
    font-size: 1.5rem;
}

.project-gallery__content {
    padding: 1.5rem;
}

.project-gallery__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-gallery__description {
    color: var(--secondary-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal__content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--accent-red);
}

.modal__image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: var(--background-light);
}

.modal__text {
    padding: 2rem;
}

.modal__text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.modal__text p {
    color: var(--secondary-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TERMS CONTENT ===== */
.terms-content {
    background: white;
}

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

.terms__sidebar {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    position: sticky;
    top: 120px;
}

.sidebar__title {
    color: var(--highlight-orange);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar__link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.sidebar__link:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

.sidebar__link.active {
    color: var(--accent-red);
    font-weight: 600;
    border-bottom-color: var(--accent-red);
}

.terms__main {
    padding: 0 1rem;
}

.terms__section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--background-lighter);
}

.terms__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms__title {
    color: var(--highlight-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms__description {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.terms__link {
    color: var(--accent-red);
    text-decoration: underline;
    transition: var(--transition);
}

.terms__link:hover {
    color: var(--highlight-orange);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-dark);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

/* Responsive footer container */
@media (min-width: 1024px) and (max-width: 1440px) {
    .footer__container {
        gap: 1.5rem;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .footer__container {
        gap: 2.5rem;
    }
}

@media (min-width: 1921px) {
    .footer__container {
        gap: 3rem;
    }
}

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

.footer__logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-red);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 45px;
    height: 45px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--highlight-orange);
    transform: translateY(-3px);
}

.footer__contact {
    text-align: right;
}

.footer__contact p {
    margin: 0.5rem 0;
    color: #ccc;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer__links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--accent-red);
}

.footer__copyright {
    color: var(--accent-red);
    font-weight: 600;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Only mobile-specific adjustments - desktop stays original */
@media (max-width: 768px) {
    /* Mobile Navigation - Beautiful hamburger menu */
    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--accent-red), #C41E3A);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav__menu.show {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    .nav__link {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .nav__link:hover,
    .nav__link.active {
        background: white;
        color: var(--accent-red);
        border-color: white;
        transform: scale(1.05);
    }
    
    .nav__toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
        font-size: 1.5rem;
        color: var(--text-dark);
    }
    
    .nav__toggle i {
        transition: transform 0.3s ease;
    }
    
    .nav__actions {
        display: none;
    }
    
    /* Center everything on mobile */
    .container {
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }
    
    .section {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    .section {
        text-align: center;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero__content {
        text-align: center;
    }
    
    /* Hide speed banner and discount banner on mobile */
    .hero__speed-banner {
        display: none;
    }
    
    .hero__discount-banner {
        display: none;
    }
    
    /* Professional mobile CTA - Clean and business-like */
    .hero__mobile-cta {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
        text-align: center;
        width: 90%;
        max-width: 300px;
    }
    
    .mobile-cta__content {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text-dark);
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        text-align: center;
        border: 1px solid rgba(214, 40, 40, 0.2);
        backdrop-filter: blur(10px);
        margin-bottom: 0.5rem;
    }
    
    .mobile-cta__content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: var(--accent-red);
        font-weight: 600;
    }
    
    .mobile-cta__content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        color: var(--secondary-dark);
        line-height: 1.4;
    }
    
    .mobile-cta__content .btn {
        background: var(--accent-red);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
        width: 100%;
    }
    
    .mobile-cta__content .btn:hover {
        background: #C41E3A;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(214, 40, 40, 0.4);
    }
    
    /* Over-ons page mobile fixes */
    .about-hero {
        padding: 3rem 0 2rem;
    }
    
    .about-hero__title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .about-hero__subtitle {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about__image {
        order: -1;
        max-width: 100%;
    }
    
    .about__img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }
    
    .about__content {
        padding: 1rem;
        text-align: center;
    }
    
    .about__description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat__item {
        padding: 1rem;
        text-align: center;
    }
    
    .stat__number {
        font-size: 2rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .stat__label {
        font-size: 0.9rem;
    }
    
    .mission__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission__item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .mission__icon {
        margin-bottom: 1rem;
    }
    
    .mission__title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .mission__description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .team__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .team__member {
        text-align: center;
        padding: 1rem;
    }
    
    .team__photo {
        width: 200px;
        height: 200px;
        margin: 0 auto 1rem;
    }
    
    .team__name {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .team__role {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .team__description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .why-us__container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-us__item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .why-us__icon {
        margin-bottom: 1rem;
    }
    
    .why-us__title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .why-us__item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .cta__content {
        padding: 0 1rem;
    }
    
    .cta__content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .cta__content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Terms pages mobile optimization */
    .terms-content {
        padding: 2rem 0;
    }
    
    .terms__layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .terms__sidebar {
        order: -1;
        position: static;
        background: var(--background-lighter);
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .sidebar__title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .sidebar__nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .sidebar__link {
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        background: white;
        border: 1px solid var(--border-light);
        text-decoration: none;
        transition: all 0.2s ease;
        white-space: nowrap;
    }
    
    .sidebar__link.active {
        background: var(--accent-red);
        color: white;
        border-color: var(--accent-red);
    }
    
    .sidebar__link:hover {
        background: var(--accent-red);
        color: white;
    }
    
    .terms__main {
        padding: 0;
    }
    
    .terms__section {
        padding: 1rem;
        background: white;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .terms__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
        color: var(--accent-red);
    }
    
    .terms__description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--secondary-dark);
    }
    
    /* Terms content styling for mobile */
    .terms__section div[style*="color: black"] {
        padding: 0 0.5rem;
    }
    
    .terms__section div[style*="color: black"] p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.75rem !important;
        text-align: left;
    }
    
    .terms__section div[style*="color: black"] p[style*="font-weight: bold"] {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        margin-top: 1.5rem !important;
        color: var(--accent-red) !important;
        font-weight: 600 !important;
        text-align: center;
    }
    
    /* Breadcrumb mobile */
    .breadcrumb {
        padding: 1rem 0;
    }
    
    .breadcrumb__nav {
        font-size: 0.85rem;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .breadcrumb__separator {
        margin: 0 0.25rem;
    }
    
    .hero__location-search {
        display: none;
    }
    
    .location__content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        color: var(--accent-red);
    }
    
    .location__search-box {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .location__input {
        flex: 1;
        padding: 0.5rem 0.75rem;
        border: 2px solid var(--background-lighter);
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 0.85rem;
        transition: var(--transition);
    }
    
    .location__search-box .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .location__note {
        font-size: 0.75rem;
        color: var(--text-dark);
        opacity: 0.8;
        text-align: center;
        margin: 0;
    }
    
    /* Grid adjustments for mobile - all centered */
    .products__container,
    .workflow__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .projects__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .why-us__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .team__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .footer__logo,
    .footer__social,
    .footer__contact {
        text-align: center;
        justify-self: center;
    }
    
    .footer__bottom {
        text-align: center;
    }
    
    .footer__links {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer__copyright {
        text-align: center;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .top-bar__content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header {
        top: 2.5rem;
    }
    
    /* Center all content blocks */
    .about__content,
    .product__card,
    .workflow__step,
    .project__card,
    .why-us__item,
    .team__member,
    .contact__info,
    .contact__form {
        text-align: center;
    }
    
    /* FAQ centered */
    .faq__container {
        text-align: left;
    }
    
    .faq__question {
        text-align: left;
    }
    
    /* Forms centered */
    .form {
        text-align: center;
    }
    
    .form__group {
        text-align: left;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .section__title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

