/* ==========================================
   EMERGENCY GARAGE DOOR REPAIR - AWARD-WORTHY ARTISTIC DESIGN
   Red Alert Theme 🚨 | Inspired by the Greatest Web Designers
   Glassmorphism • Parallax • Cinematic • Micro-interactions
   ========================================== */

:root {
    /* Colors - Enhanced Palette */
    --red-primary: #DC2626;
    --red-dark: #991B1B;
    --red-vibrant: #EF4444;
    --red-light: #FEE2E2;
    --red-glow: rgba(220, 38, 38, 0.5);
    --black: #0A0A0A;
    --black-soft: #0F172A;
    --gray-dark: #1E293B;
    --gray: #64748B;
    --gray-light: #F1F5F9;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows - Enhanced */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 50px -10px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(220, 38, 38, 0.4);
    --shadow-glow-strong: 0 0 60px rgba(220, 38, 38, 0.6);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   CINEMATIC HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1A0A0A 0%, #0A0A0A 50%, #1A0505 100%);
    overflow: hidden;
    padding: 4rem 1.5rem;
}

/* Animated Gradient Mesh Background */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(153, 27, 27, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(239, 68, 68, 0.03) 0%, transparent 60%);
    animation: mesh-morph 20s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes mesh-morph {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    33% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.9;
    }

    66% {
        transform: scale(0.95) rotate(-5deg);
        opacity: 0.8;
    }
}

/* Floating Particles Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(220, 38, 38, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(220, 38, 38, 0.15), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: particle-drift 60s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes particle-drift {
    0% {
        background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    }

    100% {
        background-position: 200px 200px, 240px 260px, 330px 470px, 270px 300px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: hero-fade-in 1.2s ease-out;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Logo Container */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto 2rem;
    padding: 1.5rem 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    width: fit-content;
    flex-wrap: wrap;
}

.alert-emoji {
    font-size: 4rem;
    animation: siren-rotate 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: drop-shadow(0 0 30px var(--red-glow));
    transform-origin: center;
}

@keyframes siren-rotate {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 20px var(--red-glow));
    }

    15% {
        transform: rotate(-15deg) scale(1.15);
        filter: drop-shadow(0 0 40px var(--red-glow));
    }

    30% {
        transform: rotate(15deg) scale(1.15);
        filter: drop-shadow(0 0 40px var(--red-glow));
    }

    45% {
        transform: rotate(-10deg) scale(1.1);
    }

    60% {
        transform: rotate(10deg) scale(1.1);
    }

    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

.logo h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #DC2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: none;
    text-align: center;
    margin: 0;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    background: linear-gradient(135deg, #F1F5F9 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
}

/* Glassmorphism Rating Badge */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.stars {
    color: #FBBF24;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    animation: star-twinkle 3s ease-in-out infinite;
}

@keyframes star-twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.rating-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Button Styles */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-vibrant) 0%, var(--red-primary) 50%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow:
        0 10px 30px -5px rgba(220, 38, 38, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 40px -10px rgba(220, 38, 38, 0.7),
        0 0 60px rgba(220, 38, 38, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.375rem;
}

.btn-icon {
    font-size: 1.75rem;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.1);
    }
}

.pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 10px 30px -5px rgba(220, 38, 38, 0.5),
            0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    50% {
        box-shadow:
            0 20px 40px -10px rgba(220, 38, 38, 0.7),
            0 0 0 15px rgba(220, 38, 38, 0);
    }
}

/* Glassmorphism Hours Badge */
.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hours-icon {
    font-size: 1.5rem;
    animation: clock-tick 1s steps(1) infinite;
}

@keyframes clock-tick {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: scroll-bounce 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--red-vibrant);
    transform: translateX(-50%) scale(1.2);
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 1;
    }
}

/* ==========================================
   SECTIONS WITH PARALLAX
   ========================================== */

section {
    position: relative;
    padding: 6rem 1.5rem;
    background: var(--white);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    letter-spacing: -0.02em;
    animation: title-reveal 0.8s ease-out;
}

@keyframes title-reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title .emoji {
    font-size: 3rem;
    animation: emoji-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes emoji-pop {
    0% {
        transform: scale(0) rotate(-180deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* ==========================================
   GLASSMORPHISM SERVICE CARDS
   ========================================== */

.services {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    flex: 0 1 340px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px -2px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 38, 38, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 50px -10px rgba(220, 38, 38, 0.2),
        0 0 0 1px rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: icon-float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card:nth-child(1) .service-icon {
    animation-delay: 0s;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 0.4s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: 0.6s;
}

.service-card:nth-child(5) .service-icon {
    animation-delay: 0.8s;
}

.service-card:nth-child(6) .service-icon {
    animation-delay: 1s;
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(-5deg);
    }

    75% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.service-card h3 {
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--black);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray);
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ==========================================
   IMMERSIVE GALLERY
   ========================================== */

.gallery {
    background: var(--black);
    padding: 6rem 1.5rem;
    position: relative;
}

.gallery .section-title {
    color: var(--white);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.gallery-item {
    flex: 0 1 380px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow:
        0 20px 60px -15px rgba(220, 38, 38, 0.4),
        0 0 0 2px rgba(220, 38, 38, 0.3);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* ==========================================
   PREMIUM REVIEWS
   ========================================== */

.reviews {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.review-card {
    flex: 0 1 380px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow:
        0 8px 24px -4px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--red-primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px;
    color: rgba(220, 38, 38, 0.05);
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow:
        0 20px 50px -10px rgba(220, 38, 38, 0.2),
        0 0 0 1px rgba(220, 38, 38, 0.05);
    border-left-width: 6px;
}

.review-stars {
    color: #FBBF24;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
    letter-spacing: 0.1em;
}

.review-text {
    color: var(--gray-dark);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.review-author {
    color: var(--gray);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

/* ==========================================
   CONTACT SECTION WITH GLASSMORPHISM
   ========================================== */

.contact {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 50%, var(--gray-light) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--black);
    letter-spacing: -0.01em;
}

.contact-item p,
.contact-item a {
    color: var(--gray);
    text-decoration: none;
    font-size: 1.0625rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--red-primary);
}

/* Premium CTA Card */
.contact-cta {
    background: linear-gradient(135deg, #1A0505 0%, var(--black) 50%, #1A0A0A 100%);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    color: var(--white);
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    animation: cta-glow 8s ease-in-out infinite;
}

@keyframes cta-glow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10%, 10%);
    }
}

.contact-cta h3 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.contact-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-light);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-brand .alert-emoji {
    font-size: 1.75rem;
    animation: none;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--red-vibrant);
    transform: translateY(-2px);
}

.footer-copyright {
    color: var(--gray);
    font-size: 0.9375rem;
    font-weight: 400;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (min-width: 640px) {
    .cta-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1.2fr 1fr;
    }

    .logo {
        padding: 2rem 3rem;
    }
}

@media (min-width: 768px) {
    section {
        padding: 8rem 2rem;
    }

    .hero {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {

    .service-card,
    .gallery-item,
    .review-card {
        flex-basis: calc(33.333% - 1.5rem);
    }
}

@media (max-width: 640px) {
    .alert-emoji {
        font-size: 3rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .logo {
        padding: 1.25rem 2rem;
        gap: 1rem;
    }

    .service-card,
    .gallery-item,
    .review-card {
        flex: 1 1 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ==========================================
   STICKY MOBILE CALL BUTTON
   ========================================== */

.sticky-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--red-vibrant) 0%, var(--red-primary) 50%, var(--red-dark) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.02em;
    box-shadow:
        0 -4px 20px rgba(220, 38, 38, 0.4),
        0 0 40px rgba(220, 38, 38, 0.3);
    animation: sticky-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.sticky-call-btn:active {
    transform: scale(0.98);
}

.sticky-call-btn span {
    margin-right: 0.5rem;
}

@keyframes sticky-pulse {

    0%,
    100% {
        box-shadow:
            0 -4px 20px rgba(220, 38, 38, 0.4),
            0 0 40px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow:
            0 -4px 30px rgba(220, 38, 38, 0.6),
            0 0 60px rgba(220, 38, 38, 0.5);
    }
}

@media (max-width: 768px) {
    .sticky-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .footer {
        padding-bottom: 5rem;
    }
}

/* ==========================================
   LIVE ACTIVITY BADGE
   ========================================== */

.live-activity {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    color: #22C55E;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    animation: activity-fade 3s ease-in-out infinite;
}

.live-activity::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes activity-fade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes dot-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */

.why-choose-us {
    background: linear-gradient(135deg, var(--black) 0%, #1A0505 50%, var(--black) 100%);
    color: var(--white);
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-us .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.3);
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--red-vibrant) 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: 0.02em;
}

/* ==========================================
   TRUST BADGES
   ========================================== */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-badge .badge-icon {
    font-size: 1.25rem;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* Reveal from different directions */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   RESPONSE TIME BADGE
   ========================================== */

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    animation: response-glow 2s ease-in-out infinite;
}

.response-time .time-icon {
    font-size: 1.5rem;
    animation: clock-spin 10s linear infinite;
}

@keyframes clock-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes response-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
    }
}

/* ==========================================
   ENHANCED SERVICE CARDS LAYOUT
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    width: 100%;
    flex: none;
}

/* ==========================================
   ENHANCED GALLERY LAYOUT
   ========================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
    flex: none;
}

/* ==========================================
   ENHANCED REVIEWS LAYOUT
   ========================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    width: 100%;
    flex: none;
}

/* ==========================================
   SECTION DIVIDERS
   ========================================== */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(220, 38, 38, 0.3),
            rgba(220, 38, 38, 0.5),
            rgba(220, 38, 38, 0.3),
            transparent);
    margin: 0;
    border: none;
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}