:root {
    --primary: #1E40AF; /* Pro Max Trust Blue */
    --primary-dark: #1E3A8A;
    --accent: #EA580C; /* Pro Max Safety Orange */
    --accent-light: #F97316;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --bg-light: #EFF6FF; /* Soft Trust Blue Background */
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(30, 64, 175, 0.1);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(30, 64, 175, 0.2), 0 4px 6px -2px rgba(30, 64, 175, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
}


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

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--glass-border);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* On scroll: only add shadow, NO size change */
.glass-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}




.glass-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ── Fixed Logo ─────────────────────────────────────────── */
.main-logo-wrap {
    position: fixed;
    top: 8px;
    /* At 1920px: 50%-530px = 430px — right at container left boundary */
    left: max(10px, calc(50% - 530px));
    width: 180px;
    height: 180px;
    z-index: 1002;
    transform-origin: top left;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
}

.main-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.18));
    transition: filter 0.4s ease;
}

/* On scroll: scale shrinks logo so it fits inside the header.
   180px * 0.3 = 54px → fits perfectly inside 70px header */
.main-logo-wrap.scrolled {
    transform: scale(0.3);
}

.main-logo-wrap.scrolled .main-logo-img {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

/* Placeholder — wide enough to not overlap with logo at 1920px */
.logo-placeholder {
    width: 230px;
    flex-shrink: 0;
}


/* keep old .logo for any other uses */
.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-accent {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1010;
}


.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

.btn-primary {

    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 56, 168, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 56, 168, 0.4);
}


.btn-emergency {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 88, 12, 0.1);
    color: var(--accent) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.btn-emergency:hover {
    background: var(--accent);
    color: var(--white) !important;
}

.form-promo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 64, 175, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.form-promo i {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    padding-top: 175px;   /* 70px header + 105px for hanging logo + gap */
    padding-bottom: 60px;
}

/* Medium screens: logo-placeholder stays visible */
@media (max-width: 1200px) {
    .logo-placeholder {
        width: 170px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 240px; /* Increased from 200px to clear the new 130px logo */
    }
    .main-logo-wrap {
        left: 8px;
        width: 130px;
        height: 130px;
    }
    .logo-placeholder {
        width: 130px;
    }
}



.hero-content {
    position: relative;
    z-index: 10;
}

.worker-image-mobile {
    z-index: -1;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: center;
}



.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(194, 39, 66, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    margin-top: 16px;
}


.hero h1 {
    font-size: clamp(1.8rem, 6vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    word-break: break-word;
}


.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.trust-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}





.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}



.pro-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 56, 168, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(0, 56, 168, 0.1);
    position: relative;
    z-index: 100;
}


.stars {
    color: #FBBF24;
    font-size: 20px;
}


/* Hero Image & Form Setup */
.hero-form-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.floating-worker {
    position: absolute;
    bottom: -80px;
    left: -160px;
    width: 440px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to top, transparent 5%, black 20%);
    filter: drop-shadow(0 20px 30px rgba(30, 64, 175, 0.2));
}


.worker-image-mobile {
    display: none;
}

.desktop-only {
    display: block;
}

.glass-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}


.glass-card:hover {
    transform: translateY(-5px);
}

/* Contact Card Styles */
.contact-card {
    padding: 24px !important;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.manager-name {
    font-size: 20px !important;
    margin: 0 !important;
    color: var(--primary);
    font-weight: 700;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

.status-text {
    font-size: 11px;
    font-weight: 700;
    color: #15803d;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.contact-item i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

a.contact-item:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.messenger-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 4px;
}


.ms-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 4px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.ms-btn img { width: 22px; height: 22px; flex-shrink: 0; }

.viber    { background: #7360f2; box-shadow: 0 3px 10px rgba(115,96,242,.25); }
.telegram { background: #0088cc; box-shadow: 0 3px 10px rgba(0,136,204,.25); }
.whatsapp { background: #25D366; box-shadow: 0 3px 10px rgba(37,211,102,.25); }
.messenger{ background: linear-gradient(135deg,#0099FF,#A033FF); box-shadow: 0 3px 10px rgba(0,153,255,.25); }
.instagram{ background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow: 0 3px 10px rgba(220,39,67,.25); }
.signal   { background: #3A76F0; box-shadow: 0 3px 10px rgba(58,118,240,.25); }
.wechat   { background: #07C160; box-shadow: 0 3px 10px rgba(7,193,96,.25); }
.imessage { background: #34C759; box-shadow: 0 3px 10px rgba(52,199,89,.25); }
.snapchat  { background: #FFFC00; box-shadow: 0 3px 10px rgba(255,252,0,.35); color: #000 !important; }
.snapchat img { filter: brightness(0); }


.ms-btn:hover { transform: translateY(-3px) scale(1.05); filter: brightness(1.1); }


/* Leave a Request Button */
.btn-open-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    background: transparent;
    border: 2px dashed rgba(30, 64, 175, 0.3);
    border-radius: 12px;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-open-quote:hover {
    background: rgba(30, 64, 175, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-open-quote i {
    width: 18px;
    height: 18px;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px !important;
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(30, 64, 175, 0.07);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: 0.2s;
}

.modal-close:hover {
    background: rgba(234, 88, 12, 0.1);
    color: var(--accent);
}

.modal-close i {
    width: 18px;
    height: 18px;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.highlight {
    color: var(--primary);
}

.glass-card p {
    font-size: 0.9rem;
    color: var(--primary);
    background: rgba(194, 39, 66, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 39, 66, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
}

.btn-submit:hover {
    background: var(--accent-light);
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.4);
}



/* Guarantees */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.guarantee-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guarantee-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-lg);
}

.guarantee-card i {
    color: var(--primary);
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
}

.guarantee-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.guarantee-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #F1F5F9;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}


.service-card i {
    color: var(--primary);
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
}

.service-card h4 {
    margin-bottom: 12px;
}

/* Comparison Slider */
#before-after .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.slider-label {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}


.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after {
    width: 50%;
    z-index: 2;
    overflow: hidden;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--white);
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Mobile Adjustments */
@media (max-width: 1200px) {
    .floating-worker {
        left: -150px;
        width: 400px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-worker {
        display: none;
    }
    
    .worker-image-mobile {
        display: block;
        margin-top: 30px;
    }
    
    .worker-image-mobile .floating-worker {
        display: block;
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badge {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}



/* Process Section */
.bg-dark {
    background: #111112;
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.process-item {
    position: relative;
    text-align: center;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    margin-bottom: -20px;
}

.process-item h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.process-item p {
    font-size: 0.9rem;
    color: #A0AEC0;
}

/* Reviews */
.rating-overall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.score {
    font-size: 2.5rem;
    font-weight: 700;
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user strong {
    display: block;
}

.user span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* FAQ */
.narrow {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.faq-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.faq-item summary {
    font-weight: 600;
    list-style: none;
    outline: none;
}

.faq-item p {
    margin-top: 12px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: #1A1A1B;
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    margin-bottom: 16px;
}

.footer-info p {
    color: #A0AEC0;
    max-width: 400px;
}

.footer-contact h4 {
    margin-bottom: 16px;
}

.footer-contact p {
    color: #A0AEC0;
}

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
}

/* Footer Social Bar */
.footer-social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid #2D3748;
    flex-wrap: wrap;
}

.social-label {
    color: #A0AEC0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    transition: transform 0.25s ease, filter 0.25s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    filter: brightness(1.15);
}

.soc-instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-facebook  { background: #1877F2; }
.soc-youtube   { background: #FF0000; }
.soc-linkedin  { background: #0A66C2; }
.soc-tiktok    { background: #010101; }
.soc-x         { background: #14171A; }
.soc-yelp      { background: #D32323; }
.social-icon img { filter: brightness(0) invert(1); }


@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* About & Process Sections */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.check-list {
    list-style: none;
    margin-top: 24px;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--primary);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 40px;
    font-weight: 800;
    color: rgba(30, 64, 175, 0.1);
    margin-bottom: 15px;
}

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

.process-media img {
    max-width: 800px;
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
}

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

/* Compact Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}




.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ── Before / After Slider ── */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ba-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.ba-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid rgba(30,64,175,0.08);
    margin: 0;
}

.ba-title i { width: 18px; height: 18px; }

.ba-slider {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: col-resize;
    user-select: none;
}

.ba-after, .ba-before {
    position: absolute;
    inset: 0;
}

.ba-after img, .ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: white;
    z-index: 10;
    pointer-events: none;
}

.ba-handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-handle span::before {
    content: '⇔';
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: col-resize;
    z-index: 20;
    margin: 0;
}

.ba-label {
    position: absolute;
    top: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    border-radius: 4px;
    z-index: 15;
    pointer-events: none;
}

.ba-label-before { left: 12px; background: rgba(0,0,0,0.5); }
.ba-label-after  { right: 12px; background: rgba(30,64,175,0.7); }

.ba-single-img {
    overflow: hidden;
    max-height: 500px;
}

.ba-single-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-slider { height: 220px; }
    .ba-single-img { max-height: 360px; }
}


@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   RESPONSIVE — Mobile First
   Breakpoints: 992 / 768 / 576 / 480 / 360
   ========================================= */

@media (max-width: 1200px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet & below */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;
        background: rgba(255, 255, 255, 0.98); 
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }


    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .floating-worker { display: none; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-steps-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Large phones */
@media (max-width: 768px) {
    .hero {
        padding-top: 85px;
        padding-bottom: 32px;
    }
    .hero h1 { font-size: clamp(1.7rem, 7vw, 2.8rem); }
    .hero p  { font-size: 1rem; }
    .container { padding: 0 16px; }
    .trust-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    .trust-badge { font-size: 13px; }
    .pro-badge   { font-size: 12px; padding: 5px 10px; }
    .glass-card  { padding: 24px !important; }
    .section     { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
}

/* Small phones (iPhone SE, Galaxy A series) */
@media (max-width: 576px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 28px;
    }
    .hero h1 { font-size: clamp(1.5rem, 8vw, 2.2rem); line-height: 1.15; }
    .hero p  { font-size: 0.95rem; margin-bottom: 24px; }
    .container { padding: 0 14px; }
    .trust-container {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }
    .trust-badge { flex-wrap: wrap; gap: 4px; font-size: 12px; }
    .pro-badge   { font-size: 11px; padding: 4px 10px; }
    .stars       { font-size: 14px; }
    .glass-card  { padding: 18px !important; border-radius: 12px; }
    .glass-card:hover { transform: none; }
    .contact-card .manager-name { font-size: 18px !important; }
    .contact-header { flex-wrap: wrap; gap: 8px; align-items: center; }

    .contact-item   { font-size: 13px; }
    .messenger-grid { gap: 8px; }
    .ms-btn { padding: 12px 8px; font-size: 13px; }
    .btn-open-quote { font-size: 13px; padding: 12px; }
    .form-grid { grid-template-columns: 1fr; }
    .process-steps-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 200px; }
    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Very small (320px — older Androids, iPhone 5) */
@media (max-width: 400px) {
    .hero h1 { font-size: 1.4rem; }
    .hero p  { font-size: 0.9rem; }
    .container { padding: 0 12px; }
    .trust-badge span { font-size: 11px; }
    .pro-badge { font-size: 10px; padding: 3px 8px; }
    .ms-btn { font-size: 12px; padding: 10px 6px; }
    .ms-btn img { width: 16px; height: 16px; }
    .contact-header { gap: 6px; }
    .status-indicator { padding: 4px 8px; }
    .status-text { font-size: 10px; }
    .manager-name { font-size: 16px !important; }

    .glass-header { height: 60px; }
    .logo { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   BRAND CAROUSEL SECTION
   ═══════════════════════════════════════════════════════════════ */

#brand-showcase {
    background: linear-gradient(160deg, #0f1724 0%, #1a2744 100%);
    padding: 100px 0;
}

#brand-showcase .section-header h2 {
    color: #ffffff;
}

#brand-showcase .section-header p {
    color: rgba(255,255,255,0.6);
    background: transparent;
    font-weight: 400;
    padding: 0;
    margin: 0 auto;
    max-width: 560px;
}

#brand-showcase .badge {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59,130,246,0.3);
}

/* ── Carousel Wrapper ──────────────────────────────────────────── */
.brand-carousel-wrapper {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Logo Stage ─────────────────────────────────────────────────── */
.brand-logo-stage {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.brand-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
                transform 0.7s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

.brand-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.brand-slide img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 8px;
}

/* ── Countdown Ring ─────────────────────────────────────────────── */
.brand-countdown-ring {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.countdown-bg {
    fill: none;
    stroke: rgba(30, 64, 175, 0.12);
    stroke-width: 3.5;
}

.countdown-arc {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 113.1;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.countdown-num {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    font-family: var(--font-heading);
    line-height: 1;
}

/* ── Progress Bar ───────────────────────────────────────────────── */
.brand-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}

.brand-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 99px;
    transition: width 1s linear;
}

/* ── Info Panel ─────────────────────────────────────────────────── */
.brand-info-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.brand-info-name {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.brand-info-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    margin-bottom: 16px;
}

.brand-info-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-tag {
    background: rgba(59,130,246,0.15);
    color: #93c5fd;
    border: 1px solid rgba(59,130,246,0.25);
    padding: 4px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
}

/* ── Controls Row ──────────────────────────────────────────────── */
.brand-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.brand-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.brand-nav-btn:hover {
    background: rgba(59,130,246,0.25);
    border-color: #3b82f6;
    transform: scale(1.1);
}

.brand-nav-btn i {
    width: 22px;
    height: 22px;
}

.brand-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.brand-dot.active {
    background: #3b82f6;
    transform: scale(1.4);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
}

/* ── Name Labels Row ────────────────────────────────────────────── */
.brand-labels {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-label-item {
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-label-item.active {
    color: #ffffff;
    background: rgba(59,130,246,0.2);
    border-color: rgba(59,130,246,0.4);
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .brand-logo-stage { min-height: 220px; }
    .brand-slide { padding: 24px; }
    .brand-slide img { max-height: 175px; }
    .brand-info-name { font-size: 1.5rem; }
    .brand-nav-btn { width: 40px; height: 40px; }
    .brand-labels { gap: 6px; }
    .brand-label-item { font-size: 11px; padding: 5px 12px; }
}

/* ── Nav Live Counter ─────────────────────────────────────────── */
.nav-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(30,64,175,0.07), rgba(30,64,175,0.03));
    border: 1px solid rgba(30,64,175,0.15);
    border-radius: 30px;
    padding: 6px 14px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
}

.nav-counter.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-counter-icon {
    font-size: 18px;
    line-height: 1;
}

.nav-counter-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-counter-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.nav-counter-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-counter {
        padding: 5px 10px;
        gap: 6px;
    }
    .nav-counter-num { font-size: 14px; }
    .nav-counter-label { font-size: 9px; }
    .nav-counter-icon { font-size: 15px; }
}
