/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors - Paleta Tiger Saut */
    --color-primary: #ffffff;
    --color-primary-light: #f5f5f5;
    --color-secondary: #A61602;
    --color-accent: #ffcd35;
    --color-text: #1A1A1A;
    --color-text-light: #727586;
    --color-bg: #ffffff;
    --color-bg-light: #f2f3f6;
    --color-border: #dadce0;
    --color-footer: #1A1A1A;
    --color-success: #00b090;
    --color-danger: #fc5185;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
}

.loading-spinner {
    width: 300px;
    height: 6px;
    margin: 0 auto;
    background: #e0e0e0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.loading-spinner::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #A61602;
    border-radius: 10px;
    animation: fillBar 2.8s ease-out forwards;
}

@keyframes fillBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Prevent scroll when loading */
body.loading {
    overflow: hidden;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100vh;
}

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

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

ul {
    list-style: none;
}

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

/* ===== SECTION ===== */
.section {
    padding: var(--section-padding) 0;
}

.section__header {
    margin-bottom: 60px;
}

.section__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-text);
}

.section__subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 700px;
}

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

.text-center .section__subtitle {
    margin: 0 auto;
}

.bg-light {
    background-color: var(--color-bg-light);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background-color: white;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: white;
}

/* Hero secondary button style */
.hero .hero__buttons .btn-secondary {
    background-color: white;
    color: var(--color-secondary);
    border-color: white;
}

.hero .hero__buttons .btn-secondary:hover {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.nav__logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo img {
    height: 84px;
    width: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 8px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Mobile Menu Elements - Hidden on Desktop */
.nav__menu-logo,
.nav__menu-footer {
    display: none;
}

/* Dropdown Menu */
.nav__dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.nav__dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li {
    padding: 0;
}

.dropdown__menu a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.dropdown__menu a:hover,
.dropdown__menu a.active {
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
}

.arrow-down {
    font-size: 10px;
    margin-left: 4px;
}

/* Mobile Menu */
.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #1d1e20;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    pointer-events: none;
    will-change: opacity;
}

.hero__slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    animation: none;
}

@keyframes heroZoomDynamic {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(29, 30, 32, 0.85) 0%, 
        rgba(29, 30, 32, 0.60) 50%,
        rgba(29, 30, 32, 0.80) 100%
    );
    backdrop-filter: blur(0.3px);
    transition: opacity 0.5s ease;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 160px 24px 80px;
}

.hero__title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    margin-bottom: 16px;
    opacity: 0.95;
}

.hero__description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SERVICES SECTION ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service__card {
    display: block;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.service__card:hover .service__image img {
    transform: scale(1.1);
}

.service__card:hover .service__overlay {
    opacity: 0;
}

.service__card:hover .service__icon {
    transform: scale(1.1) rotate(5deg);
}

.service__image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service__content {
    padding: 32px 28px;
}

.service__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), #D41F0A);
    border-radius: 14px;
    color: white;
    margin-bottom: 20px;
    transition: transform var(--transition-normal);
    box-shadow: 0 4px 12px rgba(166, 22, 2, 0.3);
}

.service__title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
}

.service__list {
    margin-bottom: 24px;
}

.service__list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.service__link {
    color: var(--color-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
    font-size: 16px;
    text-decoration: none;
}

.service__card:hover .service__link {
    gap: 8px;
    transform: translateX(4px);
}

.service__link:hover {
    gap: 8px;
}

/* ===== EARTHWISE SECTION ===== */
.earthwise {
    background: linear-gradient(135deg, var(--color-footer) 0%, #2A2A2A 100%);
    color: white;
}

.earthwise .section__title {
    color: white;
    text-align: center;
}

.earthwise__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.earthwise__feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.earthwise__feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature__header h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.earthwise__feature p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 8px;
}

.feature__note {
    font-size: 13px;
    opacity: 0.7;
    font-style: italic;
}

.earthwise__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.earthwise__image img {
    width: 100%;
    height: auto;
}

/* ===== SERVICE GALLERY ===== */
.service-gallery {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-gallery {
        padding: 60px 0;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--color-secondary), #D41F0A);
    color: white;
}

.cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta__description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta .btn-primary {
    background-color: white;
    color: var(--color-secondary);
}

.cta .btn-primary:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-4px);
}

/* ===== SERVICE PAGES ===== */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.service-hero__background {
    position: absolute;
    inset: 0;
}

.service-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(166, 22, 2, 0.6) 100%);
}

.service-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.service-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
}

.service-hero__subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    opacity: 0.95;
}

/* Service Details Grid */
.service-details__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-details__description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.benefits {
    margin-top: 40px;
}

.benefits__title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.benefit__item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--color-bg-light);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.benefit__item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.benefit__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit__content h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit__content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Sidebar */
.sidebar__card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
}

.sidebar__card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sidebar__card p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar__contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.sidebar__phone {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: 8px;
}

/* Features Grid */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature__card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature__number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-secondary), #D41F0A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.feature__card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature__card p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.feature__spec {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
}

.features__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Process Section */
.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.process__step {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.process__step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step__number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-secondary), #D41F0A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
    margin: 0 auto 20px;
}

.process__step h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process__step p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--color-footer), #2A2A2A);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.contact-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-hero__subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact__description {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

/* Contact Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(103, 61, 230, 0.1);
}

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

/* Contact Info Cards */
.info__card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.info__card:hover {
    box-shadow: var(--shadow-md);
}

.info__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-secondary), #D41F0A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.info__card h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info__card a {
    color: var(--color-secondary);
    font-weight: 600;
}

.info__card a:hover {
    text-decoration: underline;
}

.info__card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.social__links {
    background: linear-gradient(135deg, var(--color-secondary), #D41F0A);
    color: white;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}

.social__links h3 {
    margin-bottom: 16px;
}

.social__icons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social__icons a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social__icons a:hover {
    background: white;
    color: var(--color-secondary);
}

.contact__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-footer);
    color: white;
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer__logo {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

/* Logo colorida no footer */
.footer__logo img.footer__logo-color {
    filter: none;
}

.footer__description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social__link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social__link svg {
    width: 18px;
    height: 18px;
}

.social__link:hover {
    background: var(--color-secondary);
    transform: translateY(-4px);
}

.footer__title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer__list a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.contact-info li {
    opacity: 0.8;
    line-height: 1.8;
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    opacity: 0.7;
    font-size: 14px;
}

/* ===== FLOATING CALL WIDGET ===== */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-secondary), #D41F0A);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(166, 22, 2, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-call:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(166, 22, 2, 0.5);
}

.floating-call svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    animation: phoneRing 2s ease-in-out infinite;
}

.floating-call__text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Mobile - Icon only */
@media screen and (max-width: 768px) {
    .floating-call {
        bottom: 20px;
        right: 20px;
        padding: 16px;
        border-radius: 50%;
    }
    
    .floating-call__text {
        display: none;
    }
    
    .floating-call svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== DESKTOP STYLES (min-width: 921px) ===== */
@media screen and (min-width: 921px) {
    /* Navigation - Force Desktop Layout */
    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        display: block;
        overflow: visible;
        border: none;
    }
    
    .nav__list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 40px;
        opacity: 1;
        transform: none;
    }
    
    .nav__item {
        width: auto;
    }
    
    .nav__link {
        padding: 8px 0;
        border-bottom: none;
        font-size: 15px;
    }
    
    .nav__link::after {
        display: block;
    }
    
    .nav__toggle,
    .nav__close {
        display: none;
    }
    
    .nav__overlay {
        display: none;
    }
    
    .nav__menu-footer {
        display: none;
    }
    
    /* Dropdown Desktop */
    .dropdown__menu {
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        max-height: none;
        padding: 12px 0;
        margin: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        border-radius: 8px;
        border-left: none;
    }
    
    .nav__dropdown:hover .dropdown__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Services Grid - 3 columns */
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Hero */
    .hero__buttons {
        flex-direction: row;
    }
    
    /* Footer */
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    /* Service Details */
    .service-details__grid {
        grid-template-columns: 2fr 1fr;
    }
    
    /* Contact */
    .contact__grid {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .form__row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 920px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    /* Mobile Toggle */
    .nav__toggle {
        display: flex;
    }

    /* Mobile Menu Overlay */
    .nav__overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .nav__overlay.show-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Navigation Mobile */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #ffffff;
        padding: 80px 24px 32px;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        border-left: 1px solid var(--color-border);
        display: flex;
        flex-direction: column;
        -webkit-overflow-scrolling: touch;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
        transition-delay: 0.1s;
        flex: 1;
        width: 100%;
    }

    .nav__menu.show-menu .nav__list {
        opacity: 1;
        transform: translateX(0);
    }

    .nav__item {
        width: 100%;
    }

    /* Mobile Menu Footer with CTA */
    .nav__menu-footer {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 24px;
        margin-top: auto;
        border-top: 1px solid var(--color-border);
    }

    .nav__menu-cta {
        display: block;
        width: 100%;
        padding: 16px 24px;
        background-color: var(--color-secondary);
        color: white !important;
        text-align: center;
        font-family: var(--font-primary);
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        transition: all var(--transition-normal);
    }

    .nav__menu-cta:hover {
        background-color: #8B1202;
        color: white !important;
        transform: translateY(-2px);
    }

    .nav__menu-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--color-text);
        font-weight: 500;
    }

    .nav__menu-phone svg {
        width: 20px;
        height: 20px;
    }

    .nav__link {
        color: var(--color-text);
        font-size: 17px;
        font-weight: 500;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
        transition: all var(--transition-fast);
        width: 100%;
        display: block;
        position: relative;
        z-index: 1;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link:hover,
    .nav__link.active {
        color: var(--color-secondary);
        padding-left: 8px;
    }

    .nav__dropdown > .nav__link {
        border-bottom: none;
        padding-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__dropdown > .nav__link .arrow-down {
        transition: transform 0.3s ease;
    }

    .nav__dropdown.active > .nav__link .arrow-down {
        transform: rotate(180deg);
    }

    .nav__toggle,
    .nav__close {
        display: block;
        color: var(--color-text);
        background: none;
        border: none;
        cursor: pointer;
        font-size: 24px;
        transition: var(--transition-fast);
        -webkit-tap-highlight-color: transparent;
    }

    .nav__toggle {
        z-index: 1002;
        position: relative;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    /* Hide toggle when menu is open */
    body.menu-open .nav__toggle {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav__toggle:hover,
    .nav__close:hover {
        color: var(--color-secondary);
    }

    .nav__toggle:active {
        transform: scale(0.95);
    }

    .nav__close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 36px;
        font-weight: 300;
        color: var(--color-text);
        z-index: 1001;
        cursor: pointer;
        opacity: 0;
        transform: rotate(180deg) scale(0.5);
        transition: all 0.3s ease;
        transition-delay: 0.2s;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .nav__close:active {
        transform: rotate(0deg) scale(0.9);
    }

    .nav__menu.show-menu .nav__close {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .dropdown__menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: rgba(166, 22, 2, 0.05);
        margin: 0;
        border-radius: 12px;
        border-left: 3px solid var(--color-secondary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    }

    .nav__dropdown.active .dropdown__menu {
        max-height: 500px;
        padding: 8px 0 12px 20px;
        margin-top: 8px;
        margin-bottom: 12px;
    }

    .dropdown__menu li {
        margin-bottom: 0;
    }

    .dropdown__menu a {
        color: var(--color-text);
        font-size: 15px;
        font-weight: 400;
        padding: 10px 16px;
        display: block;
        transition: all var(--transition-fast);
        border-radius: 8px;
        position: relative;
        z-index: 1;
        border-bottom: none;
    }

    .dropdown__menu a:hover,
    .dropdown__menu a.active {
        color: var(--color-secondary);
        background: rgba(166, 22, 2, 0.1);
        padding-left: 20px;
    }

    /* Hero */
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Loading Screen */
    .loading-logo {
        width: 160px;
    }
    
    .loading-spinner {
        width: 240px;
        height: 5px;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Services - Keep 3 columns on tablet/desktop */
    .service__image {
        height: 200px;
    }

    .service__content {
        padding: 24px 20px;
    }

    .service__icon {
        width: 56px;
        height: 56px;
    }

    .service__icon svg {
        width: 36px;
        height: 36px;
    }

    /* Service Details */
    .service-details__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== MEDIA QUERY TABLET (768px - 920px) - 2 columns ===== */
@media screen and (max-width: 920px) and (min-width: 769px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MEDIA QUERY SMALL TABLET (481px - 768px) - 2 columns ===== */
@media screen and (max-width: 768px) and (min-width: 481px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MEDIA QUERY MOBILE (max 480px) - 1 column ===== */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__content {
        padding: 140px 16px 60px;
    }

    /* Services - 1 column only on small mobile */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service__card,
    .benefit__item {
        padding: 24px 20px;
    }
}

/* ===== SMS CONSENT & LEGAL STYLES ===== */

/* SMS Consent Checkbox */
.form__consent {
    margin: 16px 0;
}

.consent__label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.consent__label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--color-secondary);
}

.consent__text {
    color: var(--color-text-light);
}

.consent__text strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Form Disclaimer */
.form__disclaimer {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
    margin: 16px 0;
}

.form__disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

.form__disclaimer a {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 600;
}

.form__disclaimer a:hover {
    color: #D41F0A;
}

/* Legal Content Pages */
.legal-content {
    padding: 60px 0 100px;
    background: var(--color-bg-light);
}

.legal__wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.legal__header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-border);
}

.legal__updated {
    color: var(--color-text-light);
    font-size: 14px;
    font-style: italic;
}

.legal__section {
    margin-bottom: 40px;
}

.legal__section h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.legal__section h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal__section h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal__section p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal__section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal__section li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal__section a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.legal__section a:hover {
    color: #D41F0A;
    text-decoration: underline;
}

.legal__section strong {
    color: var(--color-text);
    font-weight: 600;
}

.legal__back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--color-border);
    text-align: center;
}

/* Legal Pages Responsive */
@media screen and (max-width: 768px) {
    .legal__wrapper {
        padding: 40px 24px;
    }

    .legal__section h2 {
        font-size: 26px;
    }

    .legal__section h3 {
        font-size: 20px;
    }

    .legal__section h4 {
        font-size: 16px;
    }

    .consent__label {
        font-size: 13px;
    }

    .form__disclaimer p {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .legal__wrapper {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .legal__section h2 {
        font-size: 24px;
    }

    .legal__section h3 {
        font-size: 18px;
    }
}
