/* ===== NAV BRAND ICON ===== */
.brand-icon {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

/* ===== AGGRESSIVE GRAY STRIPE FIX ===== */
header, .nav-wrap, .nav, #navbar, .mobile-menu, #mobileMenu {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
    outline-offset: 0 !important;
}

header::before, header::after,
.nav-wrap::before, .nav-wrap::after,
.nav::before, .nav::after,
#navbar::before, #navbar::after,
.mobile-menu::before, .mobile-menu::after,
#mobileMenu::before, #mobileMenu::after {
    display: none !important;
    content: none !important;
}

.service-hero, .hero-bg, .hero-overlay {
    border: none !important;
    border-top: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.service-hero::before, .service-hero::after,
.hero-bg::before, .hero-bg::after,
.hero-overlay::before, .hero-overlay::after {
    display: none !important;
    content: none !important;
}

/* ===== MOBILE MENU FIX ===== */
#mobileMenu {
    border-top: none !important;
}

/* ===== HORIZONTAL SCROLL FIX ===== */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: none !important;
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    outline: none !important;
    background: transparent !important;
}

html::before, html::after,
body::before, body::after {
    display: none !important;
    content: none !important;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== PRELOADER FIX ===== */
.preloader {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.preloader::before, .preloader::after {
    display: none !important;
    content: none !important;
}

#preloader.hidden {
    display: none !important;
}

/* ===== BUTTONS ===== */
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu.open {
    display: flex;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hide-mobile {
        display: none;
    }
}

/* ===== SERVICE HERO ===== */
.service-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    transition: transform 0.6s var(--ease);
    border: none;
}

@media (max-width: 1024px) {
    .hero-bg {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-content .overline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(196, 162, 101, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(196, 162, 101, 0.3);
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    text-align: justify;
    text-justify: inter-word;
    word-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FEATURE IMAGE SECTION ===== */
.feature-image-section {
    padding: 0;
    overflow: hidden;
}

.feature-image-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== OVERVIEW SECTION ===== */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 100px 0;
}

.overview-text {
    opacity: 0;
    transform: translateX(-40px);
}

.overview-text.in {
    opacity: 1;
    transform: translateX(0);
}

.overview-text .overline {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.overview-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.overview-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    text-align: justify;
}

.overview-text strong {
    color: var(--accent);
    font-weight: 700;
}

.overview-image {
    opacity: 0;
    transform: translateX(40px);
}

.overview-image.in {
    opacity: 1;
    transform: translateX(0);
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* ===== FULL WIDTH IMAGE ===== */
.full-width-image {
    padding: 0;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.05);
}

.full-width-image img.in {
    opacity: 1;
    transform: scale(1);
}

/* ===== IMAGE STRIP ===== */
.image-strip {
    padding: 0;
    background: var(--dark);
}

.strip-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.strip-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.1);
}

.strip-image.in {
    opacity: 1;
    transform: scale(1);
}

/* ===== LARGE FEATURE ===== */
.large-feature {
    padding: 0;
    position: relative;
}

.large-feature-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.large-feature-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.large-feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
}

.large-feature-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.large-feature-content .lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    text-align: justify;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(196, 162, 101, 0.05), rgba(212, 100, 75, 0.03));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== BENEFITS SECTION ===== */
.section-head.center {
    margin-bottom: 100px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card.in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 162, 101, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.benefit-image {
    width: 100%;
    height: 180px;
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.benefit-card:hover .benefit-image img {
    transform: scale(1.1);
}

.benefit-content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.benefit-text-content {
    flex: 1;
}

.benefit-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(196, 162, 101, 0.2), rgba(212, 100, 75, 0.15));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(196, 162, 101, 0.3);
    margin-top: 48px;
}

.benefit-icon i {
    width: 52px;
    height: 52px;
    color: #F5F5F0;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PROCESS SECTION ===== */
.process-timeline {
    max-width: 900px;
    margin: 64px auto 0;
    position: relative;
}

#process .h2 {
    color: #fff !important;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--naranja));
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 56px;
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
}

.process-step.in {
    opacity: 1;
    transform: translateX(0);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--accent), var(--naranja));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(196, 162, 101, 0.3);
}

.process-content {
    flex: 1;
    padding-top: 24px;
}

.process-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.process-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.gallery-item.in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

.gallery-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--accent), var(--naranja));
    border-radius: 32px;
    padding: 80px 64px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 100px;
    opacity: 0.3;
}

.cta-card.in {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

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

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-number {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .service-hero {
        min-height: 70vh;
        padding: 100px 0 80px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .lead {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .feature-image-container {
        height: 350px;
    }

    .overview-grid {
        padding: 60px 0;
    }

    .overview-text h2 {
        font-size: 28px;
    }

    .overview-text p {
        font-size: 16px;
    }

    .full-width-image img {
        height: 300px;
    }

    .strip-container {
        grid-template-columns: 1fr;
    }

    .strip-image {
        height: 250px;
    }

    .large-feature-container {
        height: 400px;
    }

    .large-feature-content {
        padding: 40px 24px;
    }

    .large-feature-content h2 {
        font-size: 24px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

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

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

    .stats-section {
        padding: 60px 0;
    }

    .process-timeline::before {
        left: 32px;
    }

    .process-step {
        gap: 24px;
        margin-bottom: 40px;
    }

    .process-number {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }

    .process-title {
        font-size: 22px;
    }

    .process-text {
        font-size: 15px;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content .lead {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
