/* ===================================
   Global Styles & CSS Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Professional Plumbing Theme */
    --primary-blue: #1e5a9e;
    --primary-dark: #0d3a6b;
    --primary-light: #2e7cc7;
    --accent-orange: #ff6b35;
    --accent-yellow: #ffa500;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;
    
    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

strong {
    font-weight: 600;
    color: var(--dark-gray);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-cta {
    background: var(--accent-orange);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    background: #e55a2a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-cta-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-cta-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-footer {
    background: var(--accent-orange);
    color: var(--white);
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.btn-footer:hover {
    background: #e55a2a;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--section-padding) 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.text-highlight {
    color: var(--accent-orange);
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.logo-text {
    font-family: var(--font-heading);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.header-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(14, 58, 107, 0.95) 0%, rgba(30, 90, 158, 0.9) 100%),
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 50px 0 120px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.trust-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.about-features li:hover {
    background: var(--medium-gray);
    transform: translateX(5px);
}

.about-features i {
    font-size: 1.75rem;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.about-features strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.about-features span {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-badge-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2a 100%);
    color: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.badge-overlay-content strong {
    display: block;
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 700;
}

.badge-overlay-content span {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

.featured-service {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
}

.featured-service .service-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2a 100%);
}

.service-title {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.service-features i {
    color: var(--success);
    font-size: 0.875rem;
}

.services-cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    color: var(--white);
}

.services-cta p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 25px;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    background: var(--white);
}

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

.why-card {
    position: relative;
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-normal);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.why-card:hover::before {
    transform: scaleX(1);
}

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

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(30, 90, 158, 0.08);
    font-family: var(--font-heading);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2a 100%);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.why-title {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.why-description {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.testimonials .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.testimonials .section-title,
.testimonials .section-description {
    color: var(--white);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.author-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Areas Served Section
   =================================== */
.areas-served {
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.areas-content {
    padding-right: 20px;
}

.areas-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cities-heading {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.cities-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.cities-grid li:hover {
    background: var(--medium-gray);
    transform: translateX(5px);
}

.cities-grid i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.areas-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.areas-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
}

.areas-feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 3px;
}

.areas-feature strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 3px;
}

.areas-feature span {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.areas-map {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.areas-map iframe {
    width: 100%;
    height: 100%;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent-orange);
    transition: var(--transition-normal);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, rgba(30, 90, 158, 0.95) 0%, rgba(13, 58, 107, 0.95) 100%),
                url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1600&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-title {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cta-feature i {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

.cta-action {
    text-align: center;
    flex-shrink: 0;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-normal);
}

.footer-contact-item a:hover {
    color: var(--accent-orange);
}

.footer-heading {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.service-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.service-hour-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.95rem;
}

.service-hour-item .day {
    color: rgba(255, 255, 255, 0.8);
}

.service-hour-item .time {
    color: var(--white);
    font-weight: 600;
}

.emergency-hours {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    justify-content: flex-start;
    gap: 10px;
    color: var(--accent-orange);
    font-weight: 600;
}

.emergency-hours i {
    font-size: 1.1rem;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.footer-badge i {
    color: var(--accent-orange);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2a 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablets and below (1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content,
    .areas-content {
        padding-right: 0;
    }

    .about-image-wrapper {
        max-height: 450px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-features {
        justify-content: center;
    }
}

/* Mobile and small tablets (768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .header-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-link {
        display: block;
        padding: 15px 30px;
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }

    .hero {
        padding: 50px 0 80px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn,
    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        gap: 25px;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .areas-map {
        height: 350px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-cta {
        width: 100%;
    }

    .btn-cta-text {
        align-items: center;
    }
}

/* Small mobile devices (480px) */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
        --container-padding: 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.125rem; }

    .logo {
        font-size: 1.125rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card,
    .why-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .about-features li,
    .areas-feature {
        padding: 15px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print styles */
@media print {
    .header,
    .scroll-to-top,
    .mobile-menu-toggle,
    .btn {
        display: none !important;
    }

    section {
        page-break-inside: avoid;
    }
}