/* ===== PLATRE PEINTURE F.L. - BRAND STYLES ===== */

/* Color Palette from Truck */
:root {
    --adex-red: #C62828;
    --adex-red-dark: #8E0000;
    --adex-red-light: #FF5F5F;
    --adex-black: #0A0A0A;
    --adex-dark: #141414;
    --adex-dark-2: #1E1E1E;
    --adex-gray: #555555;
    --adex-gray-light: #AAAAAA;
    --adex-silver: #C0C0C0;
    --adex-white: #F5F5F5;
    --adex-pure-white: #FFFFFF;
    --accent-blue: #1a5f7a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Screen reader only — accessible to search engines & assistive tech */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--adex-black);
    line-height: 1.6;
    background: var(--adex-pure-white);
    overflow-x: hidden;
    cursor: none;
}

/* ===== CUSTOM PAINTBRUSH CURSOR ===== */
.paintbrush-cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.06s ease-out;
    mix-blend-mode: normal;
    width: 60px;
    height: 80px;
}
/* The brush is angled ~35deg with bristles pointing bottom-left */
.paintbrush-cursor .brush-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(-35deg);
    transform-origin: 70% 30%;
}

/* Handle — light wood with hole at end */
.paintbrush-cursor .brush-handle {
    position: absolute;
    top: 0;
    right: 22px;
    width: 10px;
    height: 42px;
    background: linear-gradient(90deg, #A68B5B, #C4A96D, #A68B5B);
    border-radius: 3px 3px 2px 2px;
}
.paintbrush-cursor .brush-handle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: var(--adex-black);
    border-radius: 50%;
    opacity: 0.6;
}

/* Ferrule — silver metal band */
.paintbrush-cursor .brush-ferrule {
    position: absolute;
    top: 40px;
    right: 18px;
    width: 18px;
    height: 12px;
    background: linear-gradient(90deg, #888, #C0C0C0, #E0E0E0, #C0C0C0, #888);
    border-radius: 2px;
    border-bottom: 1px solid #666;
}

/* Bristles — wide flat white brush head */
.paintbrush-cursor .brush-bristles {
    position: absolute;
    top: 50px;
    right: 15px;
    width: 24px;
    height: 20px;
    background: linear-gradient(180deg, #E8E0D4 0%, #F5F0E8 40%, #FFFEFA 100%);
    border-radius: 2px 2px 8px 8px;
    border: 1px solid #D0C8BC;
    border-top: none;
}
/* Bristle texture lines */
.paintbrush-cursor .brush-bristles::before {
    content: '';
    position: absolute;
    inset: 2px 3px 4px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 1px,
        rgba(180, 170, 155, 0.25) 1px,
        rgba(180, 170, 155, 0.25) 2px
    );
    border-radius: 0 0 6px 6px;
}

/* ===== PAINT STREAK EFFECT ===== */
.paint-streak {
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(198, 40, 40, 0.35) 0%, rgba(198, 40, 40, 0.1) 50%, transparent 70%);
    transform: translate(-50%, -50%) rotate(-35deg);
    animation: streakFade 0.6s ease-out forwards;
}
.paint-streak.white {
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
}
@keyframes streakFade {
    0% {
        width: 18px;
        height: 10px;
        opacity: 0.7;
    }
    100% {
        width: 32px;
        height: 6px;
        opacity: 0;
    }
}

/* Show default cursor on touch devices */
@media (pointer: coarse) {
    body { cursor: auto; }
    .paintbrush-cursor { display: none; }
}

/* Hide default cursor on interactive elements */
a, button, input, select, textarea, .hamburger {
    cursor: none;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(198, 40, 40, 0.3);
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}

/* Logo - Clean Elegant */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text-main {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.logo-platre {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.logo-peinture {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.logo-fl {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #E53935;
    letter-spacing: 5px;
    text-transform: uppercase;
}
/* ADEX removed - branding is Platre Peinture F.L. only */

.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.7);
    font-weight: 600; font-size: 0.9rem;
    transition: 0.3s; text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links a:hover { color: var(--adex-red); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 4px 8px;
}
.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
}
.lang-btn.active {
    background: var(--adex-red);
    color: #ffffff;
}
.lang-btn:hover:not(.active) {
    color: #ffffff;
}
.lang-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.nav-phone {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    color: var(--adex-white); padding: 12px 22px; border-radius: 6px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
}
.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.4);
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 28px; height: 2px; background: var(--adex-red); border-radius: 2px; }

/* ===== HERO - BLACK & WHITE SPLIT ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    display: flex;
}
.hero-bg-left {
    position: absolute; left: 0; top: 0;
    width: 55%; height: 100%;
    background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.hero-bg-right {
    position: absolute; right: 0; top: 0;
    width: 55%; height: 100%;
    background: linear-gradient(160deg, #f0f0f0 0%, #e0e0e0 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-tear {
    position: absolute;
    left: 48%; top: 0;
    width: 60px; height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        #1a1a1a 15%,
        #1a1a1a 85%,
        transparent 100%
    );
    transform: translateX(-50%) skewX(-3deg);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    align-items: start;
}

/* Hero H1 - visible SEO heading */
.hero-h1 {
    position: absolute;
    top: 95px;
    left: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    line-height: 1.4;
    max-width: 420px;
    z-index: 10;
    text-transform: none;
}

/* Hero Brand - Logo Image */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 50px;
}
.hero-brand {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.hero-logo-img {
    width: 100%;
    max-width: 950px;
    height: auto;
    border-radius: 16px;
    display: block;
}

.hero-info { margin-top: 30px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.3);
    padding: 10px 24px; border-radius: 6px;
    color: var(--adex-silver);
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 25px;
}
.hero-badge i { color: var(--adex-red); }
.hero-services-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-services-list li {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 600;
}
.hero-services-list li i {
    color: var(--adex-red);
    font-size: 1rem;
}

.hero-phone-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    color: var(--adex-white);
    padding: 16px 36px; border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.3);
}
.hero-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(198, 40, 40, 0.5);
}

/* Hero Right - Mascot Area */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mascot-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mascot-bg-circle {
    position: absolute;
    width: 300px; height: 300px;
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(198,40,40,0.2));
    border-radius: 50%;
    border: 3px solid rgba(198,40,40,0.2);
}
.mascot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--adex-gray);
}
.mascot-placeholder i {
    font-size: 6rem;
    color: var(--adex-red);
    opacity: 0.3;
}
.mascot-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--adex-gray);
}

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--adex-black);
    margin-bottom: 18px;
    font-weight: 800;
}
.section-header p {
    color: var(--adex-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.gallery-section .section-header h2, .stats-section .section-header h2, .about .section-header h2 { color: var(--adex-white); }
.gallery-section .section-header p, .stats-section .section-header p, .about .section-header p { color: rgba(255,255,255,0.7); }
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    color: var(--adex-white);
    padding: 8px 20px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 20px;
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--adex-pure-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--adex-pure-white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border-color: var(--adex-red);
}
.service-visual { position: relative; margin-bottom: 25px; }
.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
}
.service-icon i { font-size: 1.8rem; color: var(--adex-white); }
.service-blob {
    position: absolute; top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
    transition: 0.4s;
}
.service-card:hover .service-blob { transform: scale(1.5); opacity: 0.15; }
.service-card h3 {
    font-size: 1.3rem;
    color: var(--adex-black);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.service-card > p {
    color: var(--adex-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}
.service-features li {
    display: flex; align-items: center; gap: 10px;
    color: var(--adex-dark-2);
    font-size: 0.9rem;
}
.service-features li i { color: var(--adex-red); font-size: 0.85rem; }

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--adex-black), var(--adex-dark));
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--adex-red), var(--adex-red-dark), var(--adex-red));
}
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.about-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    color: var(--adex-white);
}
.about-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
    border-color: rgba(198, 40, 40, 0.3);
}
.about-card i {
    font-size: 2.5rem;
    color: var(--adex-red);
    margin-bottom: 25px;
}
.about-card h3 {
    color: var(--adex-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.about-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}
.license-card {
    border-color: rgba(198, 40, 40, 0.3);
    background: rgba(198, 40, 40, 0.05);
}
.license-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem !important;
    font-weight: 900;
    color: var(--adex-red) !important;
    margin: 15px 0 !important;
    letter-spacing: 2px;
}

/* ===== STATS ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--adex-dark-2), var(--adex-black));
    border-top: 1px solid rgba(198, 40, 40, 0.15);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.stat-item { text-align: center; padding: 30px; }
.stat-icon {
    width: 70px; height: 70px;
    background: rgba(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.stat-icon i { font-size: 1.8rem; color: var(--adex-red); }
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--adex-white);
    line-height: 1;
}
.stat-suffix {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--adex-red);
}
.stat-label {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--adex-white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info h2 {
    font-size: 2.2rem;
    color: var(--adex-black);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.contact-info > p {
    color: var(--adex-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-item {
    display: flex; align-items: flex-start; gap: 20px;
}
.contact-item i {
    width: 55px; height: 55px;
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--adex-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-item div span {
    display: block;
    font-weight: 700;
    color: var(--adex-black);
    margin-bottom: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-item div a,
.contact-item div p {
    color: var(--adex-gray);
    transition: 0.3s;
    line-height: 1.6;
    text-decoration: none;
    font-size: 1rem;
}
.contact-item div a:hover { color: var(--adex-red); }

.contact-form-wrapper {
    background: var(--adex-pure-white);
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}
.contact-form h3 {
    font-size: 1.4rem;
    color: var(--adex-black);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-weight: 700;
    color: var(--adex-black);
    margin-bottom: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    background: var(--adex-white);
    color: var(--adex-black);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--adex-red);
    background: var(--adex-pure-white);
    box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    color: var(--adex-white);
    padding: 16px 32px; border-radius: 8px; border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: 0.3s;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.35);
}
.btn-full { width: 100%; }

/* ===== FOOTER ===== */
.footer {
    background: var(--adex-black);
    color: var(--adex-white);
    padding: 70px 0 25px;
    border-top: 4px solid var(--adex-red);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    margin-bottom: 20px;
}
.footer-logo-platre {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.footer-logo-peinture {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.footer-logo-fl {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: #E53935;
    letter-spacing: 5px;
    text-transform: uppercase;
}
/* ADEX removed */
.footer-brand p {
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    font-size: 0.95rem;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--adex-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}
.footer-links a {
    color: rgba(255,255,255,0.55);
    transition: 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
}
.footer-links a:hover { color: var(--adex-red); }
.footer-phone {
    display: flex; align-items: center; gap: 12px;
    color: var(--adex-red);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    transition: 0.3s;
    text-decoration: none;
}
.footer-phone:hover { color: var(--adex-red-light); }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--adex-white);
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}
.social-links a:hover {
    background: linear-gradient(135deg, var(--adex-red), var(--adex-red-dark));
    transform: translateY(-3px);
    border-color: transparent;
}

/* Footer Review Section */
.footer-review { text-align: center; }
.footer-review h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--adex-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}
.review-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: 0.3s;
}
.review-link:hover { color: var(--adex-red); }
.review-qr {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.15);
    transition: 0.3s;
}
.review-link:hover .review-qr {
    border-color: var(--adex-red);
    transform: scale(1.05);
}
.review-link span {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.review-link span i { color: #FFD700; font-size: 0.8rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.modal.active { display: flex; }
.modal-content {
    background: var(--adex-pure-white);
    padding: 55px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    animation: popIn 0.4s ease;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border: 2px solid var(--adex-red);
}
.modal-content i {
    font-size: 4.5rem;
    color: var(--adex-red);
    margin-bottom: 25px;
}
.modal-content h3 {
    font-size: 1.6rem;
    color: var(--adex-black);
    margin-bottom: 12px;
}
.modal-content p {
    color: var(--adex-gray);
    margin-bottom: 30px;
    font-size: 1.05rem;
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--adex-red), var(--adex-red-light));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide animations */
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animation */
.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.36s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.48s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.60s; }

/* Hero parallax on scroll */
.hero-image-container {
    transition: transform 0.1s linear;
}

/* Counter count-up glow */
.stat-item.visible .stat-number {
    text-shadow: 0 0 30px rgba(198, 40, 40, 0.3);
    transition: text-shadow 0.5s ease 0.5s;
}

/* Service card hover lift */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.8s ease;
}

/* Gallery item enhanced hover */
.gallery-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.8s ease;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .fade-in, .slide-up, .slide-left, .slide-right, .scale-in {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== NAVBAR SCROLL ===== */
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ===== TRANSFORMATION SCROLL SECTION ===== */
.transformation-section {
    height: 500vh;
    position: relative;
    background: var(--adex-black);
}
.transformation-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--adex-black);
}
.transformation-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.transformation-layer img,
.transformation-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.transformation-layer video {
    position: absolute;
    inset: 0;
}

/* Each layer starts fully visible, slides right to reveal next */
.transformation-layer[data-layer="0"] { z-index: 5; }
.transformation-layer[data-layer="1"] { z-index: 4; }
.transformation-layer[data-layer="2"] { z-index: 3; }
.transformation-layer[data-layer="3"] { z-index: 2; }
.transformation-layer[data-layer="4"] { z-index: 1; }

/* Slide animation controlled by JS - each layer slides right */
.transformation-layer {
    transform: translateX(0);
    transition: none;
}

/* Layer label - color swatch indicator */
.layer-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.layer-label.visible {
    opacity: 1;
    transform: translateY(0);
}
.layer-label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--adex-red);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Video overlay text */
.video-overlay-text {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--adex-white);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.video-overlay-text.visible {
    opacity: 1;
}
.video-overlay-text .play-icon {
    width: 60px;
    height: 60px;
    background: rgba(198,40,40,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
}
.video-overlay-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.video-overlay-text p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Progress dots */
.transform-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 20;
}
.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    transition: 0.4s ease;
    cursor: pointer;
}
.t-dot.active {
    background: var(--adex-red);
    border-color: var(--adex-red);
    box-shadow: 0 0 12px rgba(198,40,40,0.6);
    transform: scale(1.3);
}

/* Scroll hint */
.transform-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 20;
    animation: bounceHint 2s ease-in-out infinite;
    transition: opacity 0.5s ease;
}
.transform-scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}
.transform-scroll-hint i {
    font-size: 1.2rem;
    color: var(--adex-red);
}
@keyframes bounceHint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== HERO IMAGE ===== */
.hero-image-container {
    position: relative;
    width: 420px;
    height: 520px;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-image-frame {
    position: absolute;
    top: 20px; left: 20px;
    width: 100%; height: 100%;
    border: 3px solid var(--adex-red);
    border-radius: 16px;
    z-index: 1;
}

/* ===== SERVICE PHOTOS ===== */
.service-photo {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-photo img {
    transform: scale(1.08);
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--adex-black), var(--adex-dark));
}
.gallery-section .section-header h2 {
    color: var(--adex-white);
}
.gallery-section .section-header p {
    color: rgba(255,255,255,0.6);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-8px);
}
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(198,40,40,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h4 {
    color: var(--adex-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-review { grid-column: span 3; }
    .footer-review .review-qr { width: 80px; height: 80px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .hero-image-container {
        width: 320px;
        height: 400px;
    }
}

@media(max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 40px;
        gap: 25px;
        transform: translateY(-150%);
        transition: 0.4s;
    }
    .nav-links.active { transform: translateY(0); }
    .hamburger { display: flex; }
    .lang-toggle { padding: 3px 6px; }
    .lang-btn { font-size: 0.7rem; padding: 3px 6px; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    .hero-left { order: 1; align-items: center; }
    .hero-right { order: 0; }
    .hero-image-container { width: 280px; height: 350px; }
    .hero-bg-left { width: 100%; clip-path: none; }
    .hero-bg-right { display: none; }
    .hero-tear { display: none; }

    .hero-services-list {
        align-items: center;
    }
    .hero-services-list li {
        justify-content: center;
    }

    .hero-logo-img { max-width: 720px; }
    .section-header h2 { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-number { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; text-align: center; }
    .footer-review { grid-column: span 2; }
    .social-links { justify-content: center; }
    .footer-logo { align-items: center; }
}

@media(max-width: 480px) {
    .hero-logo-img { max-width: 520px; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-review { grid-column: span 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }
    .hero-image-container { width: 100%; height: 250px; }
    .hero-image-frame { display: none; }
    .service-photo { height: 160px; }
}
