:root {
    --primary-color: #f4622a; /* Powerful Orange */
    --secondary-color: #d85714;
    --accent-color: #f4622a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --bg-light: #16161a; /* Dark charcoal */
    --white: #ffffff;
    --dark-section: #101014; /* Deepest black/grey */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

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

/* ================== TOP BAR ================== */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 2rem;
    z-index: 1001;
    font-size: 1rem;
    font-weight: 700;
}
.top-bar-phone {
    color: var(--white) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.top-bar-phone:hover {
    color: #0b1120 !important;
}
.top-bar-socials a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.1rem;
    transition: var(--transition);
}
.top-bar-socials a:hover {
    color: #0b1120;
}
/* ================== NAVBAR ================== */
.navbar {
    position: fixed;
    top: 36px;
    width: 100%;
    background: #101014;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    padding: 0.6rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo img {
    height: 75px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
    margin-right: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-grow: 1;
    justify-content: center;
}

.nav-actions > .cta-btn {
    margin-left: auto;
}

.mobile-menu-btn {
    display: none;
    border: 1px solid #2f3542;
    color: var(--white);
    background: transparent;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
}

.nav-link-muted {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-estimate-btn {
    border-radius: 4px;
    padding: 0.6rem 1.2rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.phone-link {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--accent-color);
}

.lang-switch {
    display: flex;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.5rem 1.2rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-btn {
    font-weight: 800;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    border: none;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(244, 98, 42, 0.2);
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(244, 98, 42, 0.4);
}

.secondary-btn {
    border: 1px solid #485460;
    background: transparent;
    color: var(--white);
}

/* ================== HERO ================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22,22,26,0.85) 0%, rgba(22,22,26,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.badge {
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 2px;
}

.badge::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    display: inline-block;
}

.hero h1 {
    font-size: 4.8rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 300;
}

.hero .cta-btn.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-primary-btn,
.hero-secondary-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ================== TRUST BAR ================== */
.trust-bar {
    background: var(--dark-section);
    padding: 2rem 0;
    border-bottom: 1px solid #1e272e;
    position: relative;
    z-index: 5;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* ================== WHY CHOOSE US ================== */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: #1e272e;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid #2f3542;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ================== WHY CHOOSE US (DARK DIAGONAL) ================== */
#why-choose-us {
    background: var(--dark-section);
    color: var(--white);
    clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
    padding: 10rem 0;
    margin-top: -6vw; 
    margin-bottom: -2vw;
    position: relative;
    z-index: 2;
}

#why-choose-us .section-title h2 { color: var(--white); }
#why-choose-us .section-title p { color: #94a3b8; }

#why-choose-us .feature-card {
    background: #1e272e;
    border-color: #2f3542;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

#why-choose-us .feature-card h3 { color: var(--white); }
#why-choose-us .feature-card p { color: #dfe6e9; }
.centered-cta-wrap {
    text-align: center;
    margin-top: 5rem;
}

.mid-cta-btn {
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 50px;
}

/* ================== REPAIR HIGHLIGHT ================== */
.repair-section {
    background: var(--bg-light);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

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

.installation-section {
    background: var(--dark-section);
    border-bottom: 1px solid #1e272e;
}

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

.image-framed { border: 1px solid #2f3542; }

.section-heading-light,
.section-heading-primary {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.section-heading-light { color: var(--white); }
.section-heading-primary { color: var(--primary-color); }

.section-subheading-primary {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.lead-muted {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.callout-box {
    background: rgba(253, 187, 45, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
}

.callout-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.callout-text {
    font-size: 1rem;
    color: var(--text-main);
}

.repair-image {
    position: relative;
}

.repair-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: block;
}

.styled-list {
    list-style: none;
    margin: 2rem 0;
}

.styled-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.styled-list li::before {
    content: '\f058'; /* Check circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.styled-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

/* ================== CONTACT FORM ================== */
.contact-section {
    background: var(--dark-section);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    color: var(--white);
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.contact-info .image-wrap {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    margin-bottom: 2rem;
}

.contact-info .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.expert-form {
    background: #1e272e;
    padding: 2.2rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.expert-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.expert-form label {
    display: block;
    color: #dfe6e9;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.expert-form input, 
.expert-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid #485460;
    background: #2f3542;
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
}

.expert-form input:focus, 
.expert-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

/* ================== FOOTER ================== */
footer {
    background: #0b1120;
    color: #64748b;
    padding: 3rem 0;
    text-align: center;
}

/* ================== REVIEWS ================== */
.reviews-section {
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.review-card {
    background: var(--dark-section);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #2f3542;
    position: relative;
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
}
.review-card::before {
    content: '\f10d'; /* FontAwesome quotes */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(255,255,255,0.03);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.reviewer-initial {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
}
.reviewer-info h4 {
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}
.stars {
    color: #fdbb2d;
    font-size: 0.9rem;
}
.review-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

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

.google-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.rating-stars {
    color: #fdbb2d;
    font-size: 1.4rem;
}

.rating-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-left: 5px;
}

.mt-lg { margin-top: 3.5rem; }

.reviews-btn {
    border: 2px solid #485460;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reviews-btn i { color: var(--white); }

.mb-sm { margin-bottom: 1rem; }

.form-msg {
    display: none;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
}

.privacy-note {
    text-align: center;
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-logo {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-image { height: 40px; }

.footer-service-area {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.mobile-sticky-cta {
    display: none;
}

/* ================== INLINE CAROUSEL ================== */
.inline-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.inline-carousel img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    display: none;
    transition: opacity 0.5s ease-in-out;
}
.inline-carousel img.active {
    display: block;
    animation: fadeIn 0.5s;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
}
.carousel-btn:hover { background: var(--primary-color); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ================== ANIMATIONS ================== */
.animate-on-scroll {
    opacity: 1; /* Safely ensuring content is visible */
    transform: translateY(0);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Fallback standard animation */
@keyframes slideIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .repair-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info .image-wrap { min-height: 400px; display: none; /* Hide image on tablet to focus on form */ }
}

@media (max-width: 768px) {
    .top-bar {
        justify-content: space-between;
        padding: 8px 1rem;
    }
    .nav-container { 
        flex-direction: row !important; 
        justify-content: space-between !important; 
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #101014;
        padding: 2rem;
        gap: 1.5rem !important;
        opacity: 0;
        visibility: hidden;
        border-top: 1px solid #2f3542;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    .nav-actions.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .desktop-only { 
        display: block !important; 
        text-align: center; 
        font-size: 1.2rem !important; 
        padding: 10px 0;
        border-bottom: 1px solid #2f3542;
    }
    .nav-actions .phone-link { justify-content: center; width: 100%; }
    .nav-actions .cta-btn { width: 100%; justify-content: center; }
    .lang-switch { margin: 0 auto; }
    
    .hero h1 { font-size: 2.8rem; }
    .section-title h2 { font-size: 2.2rem; }
    .section-heading-light,
    .section-heading-primary {
        font-size: 2.2rem;
    }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .expert-form { padding: 1.5rem; }
    .logo-text { display: none; } /* Show only icon on mobile header */
    .hero-actions .cta-btn { width: 100%; justify-content: center; }

    .mobile-sticky-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
        background: #0b1120;
        border-top: 1px solid #2f3542;
    }
    .sticky-btn {
        text-align: center;
        padding: 0.9rem 0.6rem;
        color: var(--white);
        font-weight: 700;
        font-size: 0.95rem;
    }
    .sticky-call { background: #1e293b; }
    .sticky-quote { background: var(--primary-color); }
    body { padding-bottom: 58px; }
}

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================== GALLERY ================== */
.gallery-featured-section {
    background: #0f1118;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}
.gallery-preview-card {
    border: 1px solid #2f3542;
    border-radius: 16px;
    overflow: hidden;
    background: #161b22;
    color: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.25);
}
.gallery-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-preview-card span {
    display: block;
    padding: 1rem;
    font-weight: 700;
}

.gallery-header {
    padding-top: 8.5rem;
    background: linear-gradient(180deg, #0f1118 0%, #16161a 100%);
}
.gallery-header h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-top: 1rem;
}
.gallery-category-cards {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.gallery-category-card {
    display: block;
    background: #1e272e;
    border: 1px solid #2f3542;
    border-radius: 14px;
    padding: 1rem;
    color: var(--white);
}
.gallery-category-card span {
    display: block;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #2f3542;
    background: #111827;
}
.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
}
.gallery-item-overlay strong { display: block; font-size: 0.95rem; }
.gallery-item-overlay span { color: #cbd5e1; font-size: 0.8rem; text-transform: capitalize; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: min(92vw, 1200px);
    max-height: 86vh;
    border-radius: 8px;
}
.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid #334155;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; font-size: 1.5rem; }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* ================== UPLOAD PAGE ================== */
.upload-page { padding-top: 4rem; }
.upload-form { max-width: 760px; }
.upload-success { border: 1px solid #22c55e; color: #86efac; background: rgba(34, 197, 94, 0.12); }
.upload-error { border: 1px solid #ef4444; color: #fca5a5; background: rgba(239, 68, 68, 0.12); }

footer a {
    color: #93c5fd;
}

/* ================== LAZY LOADING & PERFORMANCE ANIMATIONS ================== */
img.lazy-image {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

img.lazy-image.loaded {
    opacity: 1;
    transform: scale(1);
}

/* ================== DROPDOWN MENU ================== */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f8fafc;
    min-width: 220px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
    z-index: 100;
    border-radius: 8px;
    top: 100%;
    left: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.dropdown-content a {
    color: #1e293b;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background-color: #e2e8f0;
    color: var(--primary-color);
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: flex;
}

/* ================== HERO SLIDER ================== */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: brightness(0.65);
    transform: scale(1.0); /* Removed scale since no blur bleed now */
}
.hero-slider .slide.active {
    opacity: 1;
}
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 20;
}
.slider-btn {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    font-size: 1.2rem;
}
.slider-btn:hover {
    background: rgba(249, 115, 22, 0.8);
    border-color: #f97316;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .repair-image img {
        height: 300px;
    }
    .dropdown {
        display: block;
        width: 100%;
    }
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 10px;
        border: none;
    }
    .dropdown:hover .dropdown-content {
        display: flex;
    }
    .dropdown-content a {
        color: var(--white);
        border-bottom: none;
        padding: 5px 20px;
    }
    .dropdown-content a:hover {
        background-color: transparent;
    }
}

/* ================== FAQ ACCORDION ================== */
.faq-section { position: relative; z-index: 10; padding-bottom: 5rem; background: linear-gradient(to bottom, #f0f2f5, #e0e4eb); }
.faq-container { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #ffffff; border: 1px solid #d0d5dc; border-radius: 8px; overflow: hidden; transition: var(--transition); box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.faq-item.active { box-shadow: 0 4px 15px rgba(0,0,0,0.08); border-color: #a0a8b2; }
.faq-question { width: 100%; background: none; border: none; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; color: #111827; font-size: 1.15rem; font-weight: 500; cursor: pointer; text-align: left; transition: var(--transition); }
.faq-question:hover { color: #f4622a; }
.faq-question i { color: #000; font-size: 1.2rem; transition: transform 0.3s ease; }
.faq-item.active .faq-question { font-weight: 600; color: #f4622a; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: #000; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: #475569; font-size: 1.05rem; line-height: 1.6; }
