/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Light Theme */
    --primary-red: #DD2F32;
    --primary-dark-red: #B82528;
    --light-bg: #FFFFFF;
    --lighter-bg: #F8F9FA;
    --card-bg: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #6B7280;
    --accent-red-light: #FF4D4F;
    --accent-red-dark: #A61D1F;
    --success-green: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #DD2F32 0%, #B82528 100%);
    --gradient-secondary: linear-gradient(135deg, #FF4D4F 0%, #DD2F32 100%);
    --gradient-accent: linear-gradient(135deg, #DD2F32 0%, #A61D1F 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(221, 47, 50, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--lighter-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(221, 47, 50, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(221, 47, 50, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-emergency {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.6);
}

.btn-cta {
    background: var(--text-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3);
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.5);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    background: var(--light-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #DD2F32 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FF4D4F 0%, transparent 70%);
    top: 20%;
    right: -5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #B82528 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.hero-badge svg {
    color: #fbbf24;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--section-padding);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text .section-description {
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base);
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(221, 47, 50, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.about-feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 20px 40px rgba(221, 47, 50, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    color: white;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-base);
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link svg {
    transition: transform var(--transition-base);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===================================
   EMERGENCY SECTION
   =================================== */
.emergency {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.emergency-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.emergency-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.emergency-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.3) 0%, transparent 70%);
    filter: blur(80px);
}

.emergency-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid #FEE2E2;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 2rem;
}

.emergency-badge svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.emergency-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.emergency-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose {
    padding: var(--section-padding);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 20px 40px rgba(221, 47, 50, 0.2);
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(221, 47, 50, 0.1) 0%, rgba(184, 37, 40, 0.1) 100%);
    border: 1px solid rgba(221, 47, 50, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
    color: var(--primary-red);
    transition: color var(--transition-base);
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding);
    padding-top: 0;
    position: relative;
    background: var(--lighter-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(221, 47, 50, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FFC107;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.9375rem;
}

.testimonial-author {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #DD2F32 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #B82528 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 20px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .btn {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        padding: 2.5rem 1.5rem;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .service-card,
    .feature-card {
        padding: 2rem;
    }

    .service-image {
        height: 160px;
    }

    .emergency-content {
        padding: 2rem 1.25rem;
    }

    .emergency-title,
    .cta-title {
        font-size: 1.75rem;
    }

    .hero-badge,
    .emergency-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* ===================================
   SERVICE PAGE STYLES
   =================================== */

/* Service Hero Section */
.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--light-bg);
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: gap var(--transition-base);
}

.back-link:hover {
    gap: 0.75rem;
}

.service-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Service Details Section */
.service-details {
    padding: 60px 0;
    background: var(--lighter-bg);
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse>* {
    direction: ltr;
}

.service-detail-content {
    animation: fadeInLeft 0.8s ease-out;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-detail-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: fadeInRight 0.8s ease-out;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Common Situations Section */
.common-situations {
    padding: 60px 0;
    background: var(--light-bg);
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.situation-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.situation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 20px 40px rgba(221, 47, 50, 0.2);
}

.situation-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-base);
}

.situation-card:hover .situation-icon {
    transform: scale(1.1) rotate(5deg);
}

.situation-icon svg {
    color: white;
}

.situation-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.situation-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Service CTA Section */
.service-cta {
    padding: 60px 0;
    background: var(--lighter-bg);
}

.service-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.service-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Expert Services List Section */
.expert-services {
    padding: 60px 0;
    background: var(--light-bg);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-list-item:hover {
    transform: translateX(10px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: var(--shadow-md);
}

.service-list-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-list-icon svg {
    color: white;
}

.service-list-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Reasons Section */
.reasons-section {
    padding: 60px 0;
    background: var(--lighter-bg);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 20px 40px rgba(221, 47, 50, 0.2);
}

.reason-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(221, 47, 50, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.reason-card:hover .reason-number {
    color: rgba(221, 47, 50, 0.2);
}

.reason-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.reason-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Additional Service Page Styles */
.service-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Introduction Section */
.intro-section {
    padding: 60px 0;
    background: var(--lighter-bg);
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.core-service-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.core-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 20px 40px rgba(221, 47, 50, 0.2);
}

.core-service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-base);
}

.core-service-card:hover .core-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.core-service-icon svg {
    color: white;
}

.core-service-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.core-service-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Rekey Section */
.why-rekey-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.why-rekey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-rekey-text {
    animation: fadeInLeft 0.8s ease-out;
}

.rekey-reasons-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.rekey-reasons-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.rekey-reasons-list li:last-child {
    border-bottom: none;
}

.rekey-reasons-list li svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.rekey-reasons-list li span {
    font-size: 1.0625rem;
    color: var(--text-primary);
    font-weight: 500;
}

.why-rekey-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: fadeInRight 0.8s ease-out;
}

.why-rekey-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Master Key Section */
.master-key-section {
    padding: 60px 0;
    background: var(--lighter-bg);
}

.master-key-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.master-key-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: fadeInLeft 0.8s ease-out;
}

.master-key-image img {
    width: 100%;
    height: auto;
    display: block;
}

.master-key-text {
    animation: fadeInRight 0.8s ease-out;
}

/* Lockout Services Section */
.lockout-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.lockout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lockout-text {
    animation: fadeInLeft 0.8s ease-out;
}

.lockout-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: fadeInRight 0.8s ease-out;
}

.lockout-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: var(--lighter-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 20px 40px rgba(221, 47, 50, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
    color: white;
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive Styles for Service Page */
@media (max-width: 1024px) {
    .service-detail-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-row.reverse {
        direction: ltr;
    }

    .situations-grid {
        grid-template-columns: 1fr;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-services-grid {
        grid-template-columns: 1fr;
    }

    .why-rekey-content,
    .master-key-content,
    .lockout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .service-cta-content {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 1.75rem;
    }

    .service-detail-title {
        font-size: 1.5rem;
    }

    .situation-card {
        padding: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-content {
        padding: 2rem 1.25rem;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 60px;
    background: var(--light-bg);
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: var(--lighter-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    color: white;
}

.contact-info-text h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text a {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info-text a:hover {
    color: var(--accent-red-dark);
}

/* Business Hours */
.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.contact-hours h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-list .time {
    color: var(--text-secondary);
}

.hours-list .emergency-hours {
    background: rgba(221, 47, 50, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(221, 47, 50, 0.2);
}

.hours-list .emergency-hours .day,
.hours-list .emergency-hours .time {
    color: var(--primary-red);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(221, 47, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.form-message.success svg {
    color: #059669;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #DC2626;
}

.form-message.error svg {
    color: #DC2626;
}

/* Service Areas Section */
.service-areas-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.service-area {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.service-area:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Submissions Page Styles */
.submissions-section {
    padding: 100px 0 60px;
    background: var(--lighter-bg);
    min-height: 100vh;
}

.submissions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.submissions-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.submissions-count {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.submissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.submission-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.submission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.submission-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.submission-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.submission-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.submission-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.submission-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submission-contact-item svg {
    color: var(--primary-red);
}

.submission-contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
}

.submission-contact-item a:hover {
    color: var(--primary-red);
}

.submission-message {
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.submission-message strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submission-message p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.no-submissions {
    text-align: center;
    padding: 4rem 2rem;
}

.no-submissions svg {
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.no-submissions p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .submissions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   HEADER STYLES
   =================================== */

/* Emergency Top Bar */
.emergency-topbar {
    background: var(--gradient-primary);
    padding: 0.75rem 0;
    color: white;
}

.emergency-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.emergency-text svg {
    flex-shrink: 0;
}

.emergency-call {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.emergency-call:hover {
    opacity: 0.9;
}

.call-label {
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.call-number {
    font-weight: 800;
    font-size: 1.125rem;
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Navigation Menu */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.nav-link:hover {
    background: rgba(221, 47, 50, 0.1);
    color: var(--primary-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   FOOTER STYLES
   =================================== */

.main-footer {
    background: var(--text-primary);
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: white;
}

/* Payment Methods */
.payment-methods h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Hours */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours .day {
    font-weight: 600;
}

.footer-hours .emergency-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    border-bottom: none;
    padding: 0.75rem 0;
}

.footer-hours .emergency-note svg {
    flex-shrink: 0;
}

/* Footer Areas */
.footer-areas {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-areas li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    padding: 0.25rem 0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    max-width: 70%;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: white;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Styles for Header and Footer */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .emergency-topbar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .emergency-call {
        flex-direction: column;
        gap: 0.25rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }

    .main-nav.active {
        max-height: 500px;
    }

    .nav-menu {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-link {
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid #E5E7EB;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-logo img {
        height: 50px;
    }

    .emergency-text {
        font-size: 0.875rem;
    }

    .call-number {
        font-size: 1rem;
    }
}

/* ===================================
   LEGAL PAGE STYLES
   =================================== */

.legal-page {
    padding: 100px 0 60px;
    background: var(--lighter-bg);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.legal-subtitle a {
    color: var(--primary-red);
    text-decoration: none;
}

.legal-subtitle a:hover {
    text-decoration: underline;
}

/* Tab Navigation */
.legal-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #E5E7EB;
}

.legal-tab {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-base);
}

.legal-tab:hover {
    color: var(--text-primary);
}

.legal-tab.active {
    color: var(--primary-red);
}

.legal-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-red);
}

/* Tab Content */
.legal-content {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.legal-tab-content {
    display: none;
}

.legal-tab-content.active {
    display: block;
}

.legal-tab-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.legal-tab-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-tab-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-tab-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-tab-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-tab-content ul li {
    margin-bottom: 0.75rem;
}

.legal-tab-content a {
    color: var(--primary-red);
    text-decoration: none;
}

.legal-tab-content a:hover {
    text-decoration: underline;
}

.legal-tab-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.revised-date {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Styles for Legal Page */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-tabs {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .legal-tab {
        padding: 1rem;
        border-bottom: 1px solid #E5E7EB;
        text-align: left;
    }

    .legal-tab.active::after {
        display: none;
    }

    .legal-tab.active {
        background: rgba(221, 47, 50, 0.05);
    }

    .legal-tab-content h2 {
        font-size: 1.75rem;
    }

    .legal-tab-content h3 {
        font-size: 1.25rem;
    }

    .legal-tab-content h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 80px 0 40px;
    }

    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-tab-content ul {
        margin-left: 1.25rem;
    }
}

/* ===================================
   FAQ ACCORDION STYLES
   =================================== */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: var(--card-bg);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.faq-accordion-item:hover {
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 8px 24px rgba(221, 47, 50, 0.15);
}

.faq-accordion-item.active {
    border-color: var(--primary-red);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
}

.faq-accordion-header:hover {
    background: rgba(221, 47, 50, 0.05);
}

.faq-accordion-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    padding-right: 1rem;
}

.faq-accordion-icon {
    flex-shrink: 0;
    color: var(--primary-red);
    transition: transform var(--transition-base);
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-content p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   SERVICE LIST STYLES
   =================================== */
.service-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===================================
   SERVICE DETAILS ALTERNATE BACKGROUND
   =================================== */
.service-details-alt {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
}

.service-details-alt .service-detail-title,
.service-details-alt .service-detail-text,
.service-details-alt .service-list li {
    color: var(--text-primary);
}

.service-details-alt .service-list li {
    color: var(--text-secondary);
}

/* ===================================
   SERVICE CTA SECTION
   =================================== */
.service-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(221, 47, 50, 0.05) 0%, rgba(184, 37, 40, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(221, 47, 50, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}

.service-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.service-cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Responsive FAQ Accordion Styles */
@media (max-width: 768px) {
    .faq-accordion-header {
        padding: 1.25rem 1.5rem;
    }

    .faq-accordion-title {
        font-size: 1rem;
    }

    .faq-accordion-content p {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* ===================================
   NAVIGATION DROPDOWN MENU
   =================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-icon {
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    z-index: 1000;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(221, 47, 50, 0.05);
    border-left-color: var(--primary-red);
    color: var(--primary-red);
    padding-left: 1.75rem;
}

/* Mobile Dropdown Styles */
@media (max-width: 1024px) {
    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-base);
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem 0.75rem 2rem;
        font-size: 0.875rem;
        border-left: none;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    }

    .dropdown-menu a:hover {
        padding-left: 2.25rem;
        background: rgba(221, 47, 50, 0.05);
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
}

/* ===================================
   LOCATION LANDING PAGE STYLES
   =================================== */

/* Location Hero Section */
.location-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
}

.location-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.location-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.location-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
}

.location-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.location-hero-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(221, 47, 50, 0.4);
}

.badge-overlay-content {
    text-align: center;
    color: white;
}

.badge-overlay-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.badge-overlay-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
}

/* Why Choose Us Section */
.location-why-choose {
    padding: 80px 0;
}

.location-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.location-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.location-section-title.text-center {
    text-align: center;
}

.location-section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.location-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-feature-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.location-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(221, 47, 50, 0.3);
    box-shadow: 0 12px 32px rgba(221, 47, 50, 0.15);
}

.location-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(221, 47, 50, 0.1) 0%, rgba(184, 37, 40, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-red);
}

.location-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.location-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Services Grid Section */
.location-services {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
}

.location-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-service-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.location-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.location-service-card.emergency-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.location-service-header {
    margin-bottom: 1rem;
}

.location-service-icon-large {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.location-service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.location-service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1rem 0 0;
}

.location-service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.location-service-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.location-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* Service Area Section */
.location-service-area {
    padding: 80px 0;
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.area-item svg {
    color: var(--primary-red);
    flex-shrink: 0;
}

.service-radius-note {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1.5rem;
}

.service-area-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-area-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fast Response Section */
.location-fast-response {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
}

.fast-response-card {
    background: white;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.1);
}

.fast-response-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.fast-response-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.fast-response-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.location-testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    margin-top: 3rem;
    padding: 0 50px;
}

.testimonial-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-red);
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-red);
}

.swiper-pagination-bullet-active {
    background: var(--primary-red);
}

/* Local Info Section */
.location-local-info {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
}

.local-info-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.local-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.local-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.local-info-item strong {
    font-weight: 600;
    color: var(--text-primary);
}

.local-info-item span {
    color: var(--text-secondary);
}

.local-info-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.local-info-item a:hover {
    text-decoration: underline;
}

.local-info-description {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Location FAQ Section */
.location-faq {
    padding: 80px 0;
}

/* Final CTA Section */
.location-final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.location-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Responsive Styles for Location Pages */
@media (max-width: 1024px) {

    .location-hero-grid,
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-hero-image {
        order: -1;
    }

    .location-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-area-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-hero {
        padding: 60px 0 40px;
    }

    .location-hero-ctas {
        flex-direction: column;
    }

    .location-hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .location-features-grid {
        grid-template-columns: 1fr;
    }

    .location-services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        padding: 0 20px;
    }

    .local-info-grid {
        grid-template-columns: 1fr;
    }

    .fast-response-card {
        padding: 2rem;
    }
}

/* ===================================
   BLOG STYLES
   =================================== */


/* Social Media Links */
.footer-social-section {
    padding: 3rem 0;
    background: #1a1a1a;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.footer-social-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-red);
}

.header-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-social-links .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.header-social-links .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .header-social-links {
        display: none;
    }
}


/* Updated Social Link Styles for PNG Icons */
.social-link img {
    transition: all var(--transition-base);
    filter: grayscale(0%);
    opacity: 0.85;
}

.social-link:hover img {
    opacity: 1;
    filter: brightness(1.1);
}


/* Chatbot Styles */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: var(--font-body);
}

/* Toggle Button */
.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex-direction: column;
    display: none;
    transform-origin: bottom right;
    animation: chatOpen 0.3s ease;
}

.chat-window.active {
    display: flex;
}

@keyframes chatOpen {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Header */
.chat-header {
    background: var(--primary-red);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.status-indicator {
    font-size: 0.75rem;
    opacity: 0.9;
    position: relative;
    padding-left: 12px;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2);
}

.chat-header-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
}

.chat-header-close:hover {
    opacity: 1;
}

/* Messages Area */
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    display: flex;
    flex-direction: column;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    align-items: flex-end;
}

.message-content {
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bot-message .message-content {
    background: white;
    color: var(--text-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 2px;
}

.user-message .message-content {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 2px 5px rgba(221, 47, 50, 0.2);
    border-bottom-right-radius: 2px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.message-content a {
    color: var(--primary-red);
    text-decoration: underline;
}

.user-message .message-content a {
    color: white;
}

/* Input Area */
.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-family: inherit;
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--primary-red);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-send-btn:hover {
    background: #b91d20;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: 60vh;
        bottom: 90px;
    }
}