﻿:root {
    --red: #E31E24;
    --red-dark: #b81519;
    --red-light: #ff3b41;
    --black: #111111;
    --dark: #1a1a1a;
    --gray: #f5f5f5;
    --mid-gray: #e0e0e0;
    --text: #333333;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 40px rgba(0,0,0,0.22);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ── STICKY TOP BAR ── */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 20px;
    box-shadow: 0 2px 16px rgba(227,30,36,0.5);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky-bar .pulse-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.6;
    }
}

.sticky-bar .bar-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
}

    .sticky-bar .bar-text span {
        font-size: 17px;
    }

.sticky-bar .bar-cta {
    background: white;
    color: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

    .sticky-bar .bar-cta:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    }

/* ── NAV ── */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 9990;
    background: white;
    border-bottom: 1px solid var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .logo .logo-icon {
        background: var(--red);
        color: white;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
        font-size: 14px;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--red);
        }

.nav-cta {
    background: var(--red);
    color: white !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--red-dark);
        transform: scale(1.04);
    }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0608 50%, #1a1a1a 100%);
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding-top: 142px;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(227,30,36,0.3) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(227,30,36,0.15) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227,30,36,0.2);
    border: 1px solid rgba(227,30,36,0.5);
    color: #ff7a7d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

    .hero-badge .dot {
        width: 7px;
        height: 7px;
        background: var(--red-light);
        border-radius: 50%;
        animation: pulse 1.5s infinite;
    }

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3.5vw, 46px);
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
}

    .hero h1 .accent {
        color: var(--red-light);
    }

.hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 500;
}

    .hero-feature .check {
        width: 22px;
        height: 22px;
        background: var(--red);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0;
    }

.hero-cta-group {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(227,30,36,0.5);
    transition: all 0.2s;
    animation: hbounce 2.5s ease-in-out infinite;
}

@keyframes hbounce {
    0%,100% {
        transform: scale(1);
        box-shadow: 0 4px 24px rgba(227,30,36,0.5);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 32px rgba(227,30,36,0.7);
    }
}

.btn-primary:hover {
    background: var(--red-dark);
    animation: none;
    transform: scale(1.06);
}

.btn-secondary {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .btn-secondary:hover {
        opacity: 1;
    }

/* Hero Right: Stats Card */
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px;
}

.hero-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: white;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .hero-card-title .live {
        background: #22c55e;
        color: white;
        font-size: 10px;
        padding: 2px 8px;
        border-radius: 10px;
        letter-spacing: 0.5px;
        animation: liveGlow 2s infinite;
    }

@keyframes liveGlow {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34,197,94,0);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-item {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--red-light);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.urgency-box {
    background: rgba(227,30,36,0.15);
    border: 1px solid rgba(227,30,36,0.4);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .urgency-box .icon {
        font-size: 22px;
    }

    .urgency-box .text {
        font-size: 13px;
        color: rgba(255,255,255,0.85);
        line-height: 1.4;
    }

        .urgency-box .text strong {
            color: white;
            font-weight: 700;
        }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--red);
    padding: 0;
    overflow: hidden;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px;
    color: white;
    border-right: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    font-weight: 600;
}

    .trust-item:last-child {
        border-right: none;
    }

    .trust-item .ti {
        font-size: 22px;
    }

/* ── SECTION SHARED ── */
section {
    padding: 72px 40px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 2.8vw, 36px);
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

/* ── SERVICES ── */
.services {
    background: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-heavy);
    }

        .service-card:hover .sc-img-wrap::after {
            opacity: 1;
        }

.sc-img-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
}

    .sc-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.service-card:hover .sc-img-wrap img {
    transform: scale(1.06);
}

.sc-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(227,30,36,0.7);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-body {
    padding: 16px;
}

.sc-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 6px;
}

.sc-time {
    font-size: 12px;
    color: var(--red);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sc-cta {
    display: block;
    text-align: center;
    background: var(--red);
    color: white;
    font-weight: 700;
    font-size: 13px;
    padding: 10px;
    margin-top: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.service-card:hover .sc-cta {
    background: var(--red-dark);
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 0;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: #fff0f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.why-item:hover .why-icon {
    background: var(--red);
    transform: scale(1.05);
}

.why-item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
    margin-bottom: 4px;
}

.why-item-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.why-image-side {
    position: relative;
}

    .why-image-side img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        height: 460px;
        box-shadow: var(--shadow-heavy);
    }

.why-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-badge-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--red);
    line-height: 1;
}

.why-badge-text {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

    .why-badge-text strong {
        color: var(--black);
        display: block;
        font-size: 13px;
    }

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

.review-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
}

.review-meta {
    font-size: 12px;
    color: #888;
}

.review-verified {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── CTA BLOCK ── */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0608 60%, #1a1a1a 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center, rgba(227,30,36,0.25) 0%, transparent 70%);
    }

    .cta-section .section-inner {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: clamp(26px, 3vw, 42px);
        color: white;
        margin-bottom: 12px;
    }

    .cta-section p {
        color: rgba(255,255,255,0.7);
        font-size: 17px;
        margin-bottom: 36px;
    }

.cta-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 58px);
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 32px;
    letter-spacing: -1px;
    transition: color 0.2s;
}

    .cta-phone:hover {
        color: var(--red-light);
    }

    .cta-phone .phone-icon {
        margin-right: 10px;
    }

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.cta-g-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
}

    .cta-g-item .gi {
        color: var(--red-light);
        font-size: 18px;
    }

/* ── REGIONS ── */
.regions {
    background: white;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 32px;
}

.region-tag {
    background: var(--gray);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

    .region-tag:hover {
        background: #fff0f0;
        color: var(--red);
        border-color: rgba(227,30,36,0.2);
    }


.page {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    min-height: 300px;
    padding: 20px;
}
.page p {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}


/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 50px 40px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    color: white;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--red-light);
    text-decoration: none;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ── FLOATING CTA (Mobile) ── */
.floating-cta {
    display: none;
}

/* ── COUNTER ANIMATION ── */
.count-up {
    display: inline-block;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image-side {
        display: none;
    }

    .regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 50px 20px;
    }

    .hero {
        padding: 100px 20px 50px;
    }

    .floating-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        background: var(--red);
        color: white;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 16px;
        box-shadow: 0 -4px 24px rgba(227,30,36,0.4);
    }

    .trust-inner {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 0 0 50%;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}

@media (max-width: 600px) {
    .sticky-bar .bar-text {
        font-size: 11px;
    }

        .sticky-bar .bar-text span {
            font-size: 15px;
        }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}
