@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #108535;
    --primary-hover: #0c6828;
    --primary-light: #e6f3eb;
    --dark: #0c1e36;
    --dark-muted: #475569;
    --light: #f8fafc;
    --white: #ffffff;
    --gold: #f59e0b;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(12, 30, 54, 0.05), 0 2px 4px -2px rgba(12, 30, 54, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(12, 30, 54, 0.08), 0 4px 6px -4px rgba(12, 30, 54, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(12, 30, 54, 0.1), 0 8px 10px -6px rgba(12, 30, 54, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-muted);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

/* TOP BAR */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 0.8;
}

/* NAVBAR GLASSMORPHISM & STYLING */
.navbar {
    padding: 12px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(16, 133, 53, 0.12);
}

.navbar-brand img {
    height: 52px;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.03);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark) !important;
    font-size: 15px;
    padding: 10px 18px !important;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

/* MEGA MENU HOVER STYLES */
@media (min-width: 992px) {
    .nav-item.dropdown {
        position: static;
    }

    .nav-item.dropdown:hover .mega-menu-panel {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
    }

    .mega-menu-panel {
        display: block;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(12px);
        width: 960px;
        max-width: 95vw;
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid rgba(16, 133, 53, 0.15);
        box-shadow: 0 25px 60px -15px rgba(12, 30, 54, 0.2), 0 0 20px rgba(16, 133, 53, 0.08);
        padding: 28px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }
}

.mega-menu-cat-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 6px;
}

.mega-menu-item:hover {
    background-color: var(--primary-light);
    transform: translateX(4px);
}

.mega-menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(16, 133, 53, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.mega-menu-item:hover .mega-menu-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.mega-menu-text h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    transition: var(--transition);
}

.mega-menu-item:hover .mega-menu-text h6 {
    color: var(--primary);
}

.mega-menu-text p {
    font-size: 12px;
    color: var(--dark-muted);
    margin-bottom: 0;
    line-height: 1.3;
}

.mega-menu-banner {
    background: linear-gradient(135deg, #071c2c 0%, #108535 100%);
    border-radius: 16px;
    padding: 24px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mega-menu-banner h5 {
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
}

.mega-menu-banner p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.btn-book {
    background-color: var(--primary);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
}

.btn-book:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 133, 53, 0.2);
}

/* HERO SECTION */
.hero-section {
    background: radial-gradient(circle at 75% 50%, rgba(16, 133, 53, 0.08) 0%, rgba(255, 255, 255, 1) 70%),
                linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0 100px;
    position: relative;
}

/* AI VIDEO HERO STYLES */
.hero-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: #071c2c;
    box-shadow: 0 25px 50px -12px rgba(7, 28, 44, 0.4), 0 0 30px rgba(16, 133, 53, 0.2);
    border: 2px solid rgba(16, 133, 53, 0.3);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-card canvas {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
    object-fit: cover;
}

.video-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(7, 28, 44, 0.95), transparent);
    padding: 20px 24px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.video-top-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-status-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.video-status-tag.status-green {
    background-color: rgba(16, 133, 53, 0.85);
    color: #ffffff;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.video-status-tag.status-orange {
    background-color: rgba(234, 88, 12, 0.85);
    color: #ffffff;
    border: 1px solid rgba(249, 115, 22, 0.5);
}

.video-status-tag.status-cyan {
    background-color: rgba(8, 145, 178, 0.85);
    color: #ffffff;
    border: 1px solid rgba(6, 182, 212, 0.5);
}

.video-status-tag i {
    font-size: 10px;
}

.video-control-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-control-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.video-control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.video-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.video-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #06b6d4);
    transition: width 0.1s linear;
}

.video-tech-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 600;
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 18px;
    color: var(--dark-muted);
    margin-bottom: 30px;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 133, 53, 0.2);
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid var(--dark);
}

.btn-outline-custom:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 30, 54, 0.15);
}

/* STATS SIDEBAR */
.stats-list {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(12, 30, 54, 0.04);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(12, 30, 54, 0.06);
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-info h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-info p {
    font-size: 14px;
    color: var(--dark-muted);
    margin-bottom: 0;
}

/* FLOATING LAPTOP */
.floating-laptop-container {
    position: relative;
    z-index: 2;
}

.floating-laptop {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(12, 30, 54, 0.12));
}

/* FEATURES BANNER */
.features-banner {
    background-color: var(--white);
    border-top: 1px solid rgba(12, 30, 54, 0.06);
    border-bottom: 1px solid rgba(12, 30, 54, 0.06);
    padding: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 13px;
    color: var(--dark-muted);
    margin-bottom: 0;
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
    background-color: var(--light);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    font-size: 16px;
    color: var(--dark-muted);
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(12, 30, 54, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 133, 53, 0.15);
}

.service-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--dark-muted);
    margin-bottom: 0;
}

/* BRANDS SECTION & INFINITE CAROUSEL */
.brands-section {
    padding: 80px 0;
    background-color: var(--white);
}

.brand-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brand-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: brandMarquee 28s linear infinite;
}

.brand-carousel-wrapper:hover .brand-track {
    animation-play-state: paused;
}

@keyframes brandMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand-box {
    background-color: var(--white);
    border: 1px solid rgba(12, 30, 54, 0.08);
    border-radius: 12px;
    height: 80px;
    width: 165px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 12px 18px;
}

.brand-box:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(16, 133, 53, 0.15);
    border-color: var(--primary);
}

.brand-box img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

.brand-box:hover img {
    transform: scale(1.06);
}

/* WHY CHOOSE US */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--light);
}

.choose-box {
    background-color: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(12, 30, 54, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.choose-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 133, 53, 0.15);
}

.choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.choose-box:hover .choose-icon {
    transform: rotateY(180deg);
}

.choose-box h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.choose-box p {
    font-size: 14px;
    color: var(--dark-muted);
    margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(12, 30, 54, 0.9) 0%, rgba(16, 133, 53, 0.85) 100%),
                url('../assets/hero/repair-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-cta-primary {
    background-color: var(--white);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-cta-primary:hover {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-whatsapp {
    background-color: #25d366;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid #25d366;
}

.btn-cta-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(12, 30, 54, 0.06);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.google-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    color: #4285f4;
    margin-bottom: 15px;
}

.google-logo span:nth-child(2) { color: #ea4335; }
.google-logo span:nth-child(3) { color: #fbbc05; }
.google-logo span:nth-child(4) { color: #34a853; }

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

/* SERVICE PROCESS */
.process-section {
    padding: 100px 0;
    background-color: var(--light);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: rgba(16, 133, 53, 0.15);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 18%;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--primary-light);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-number span {
    font-size: 11px;
    color: var(--dark-muted);
    font-weight: 500;
    line-height: 1;
}

.process-step:hover .step-number {
    border-color: var(--primary);
    background-color: var(--primary-light);
    transform: scale(1.05);
}

.process-step h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--dark-muted);
    margin-bottom: 0;
}

/* WORKING DETAILS FOOTER */
.working-details-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 0;
}

.working-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.working-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.working-info h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.working-info p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* MAIN FOOTER */
.main-footer {
    background-color: #070d14;
    color: #a0aec0;
    padding: 80px 0 20px;
    font-size: 15px;
}

.main-footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-desc {
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* FLOATING INTERACTIVE LAPTOP ASSEMBLY SECTION */
.assembly-section {
    padding: 100px 0;
    background-color: #070d14;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.assembly-section h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
}

.assembly-section h2 span {
    color: var(--primary);
}

.assembly-wrapper {
    position: relative;
    height: 450px;
    width: 100%;
    margin-top: 50px;
}

.assembly-layer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 580px;
    height: 340px;
    transition: transform 0.1s ease-out;
}

.assembly-layer img.real-assembly-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(16, 133, 53, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.assembly-screen-glow {
    position: absolute;
    inset: 12px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5) inset, 0 0 25px rgba(34, 197, 94, 0.4);
    transition: 0.4s ease-in-out;
}

/* Page transitions, back to top, and other elements */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* STICKY FOOTER IN MOBILE */
.mobile-sticky-bar {
    display: none;
}

/* HERO PARALLAX BACKDROP DECORATIONS */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.shape-1 {
    top: 15%;
    left: 5%;
    width: 250px;
    height: 250px;
    background-color: rgba(16, 133, 53, 0.12);
}

.shape-2 {
    bottom: 10%;
    right: 15%;
    width: 350px;
    height: 350px;
    background-color: rgba(12, 30, 54, 0.08);
}

.shape-3 {
    top: 35%;
    left: 45%;
    width: 200px;
    height: 200px;
    background-color: rgba(16, 133, 53, 0.06);
}

/* SUBPAGE HEADER PARALLAX */
.subpage-header {
    padding: 100px 0;
    background: linear-gradient(rgba(7, 28, 44, 0.85), rgba(7, 28, 44, 0.85)), url('../assets/hero/repair-bg.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: 50% 20%;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ACCESSIBILITY & CONVERSION UI EXTENSIONS */
.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: #108535;
    color: #fff;
    padding: 10px 18px;
    z-index: 10000;
    border-radius: 4px;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid #ffcc00;
}

:focus-visible {
    outline: 3px solid #108535 !important;
    outline-offset: 3px !important;
}

/* EMERGENCY TOP BANNER */
.emergency-banner {
    background: linear-gradient(90deg, #0d381a 0%, #108535 50%, #0d381a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 8px 15px;
    letter-spacing: 0.3px;
}

.emergency-banner a {
    color: #ffeb3b;
    text-decoration: underline;
    font-weight: 800;
}

/* HERO RATING BADGE */
.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 133, 53, 0.12);
    border: 1px solid rgba(16, 133, 53, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0c1e36;
}

.hero-rating-stars {
    color: #ffb400;
    font-size: 0.95rem;
}

/* HERO TRUST BAR */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.trust-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0c1e36;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-pill i {
    color: #108535;
}

/* DESKTOP STICKY FLOATING CTA */
.desktop-sticky-cta {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn-phone {
    background: #108535;
    color: #fff !important;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(16, 133, 53, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-btn-phone:hover {
    transform: scale(1.1);
    background: #0d6e2b;
}

.floating-btn-wa {
    background: #25D366;
    color: #fff !important;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.floating-btn-wa:hover {
    transform: scale(1.1);
}

/* STICKY MOBILE ACTION BAR (Items 1) */
@media (max-width: 767.98px) {
    .mobile-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #071c2c;
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        padding: 8px 6px;
        z-index: 9999;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-sticky-btn {
        flex: 1;
        margin: 0 4px;
        padding: 10px 4px;
        border-radius: 8px;
        text-align: center;
        color: #fff !important;
        font-weight: 700;
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-decoration: none;
    }
    .btn-sticky-call { background: #108535; }
    .btn-sticky-wa { background: #25D366; }
    .btn-sticky-map { background: #007bff; }
}












