@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-orange: #FF7F00;
    --color-orange-dark: #E66E00;
    --color-orange-light: #FF9A33;
    --color-dark-blue: #2C3E50;
    --color-medium-blue: #34495E;
    --color-light-grey: #ECF0F1;
    --color-white: #FFFFFF;
    --color-grey: #BDC3C7;
    --color-text-dark: #2C3E50;
    --color-text-light: #7F8C8D;
    
    --font-primary: 'Montserrat', Arial, sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-dark-blue);
    transition: all var(--transition-medium);
    padding: 0 20px;
}

.header.scrolled {
    background-color: var(--color-dark-blue);
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 48px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: width var(--transition-fast);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a:hover {
    color: var(--color-orange);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone:hover {
    color: var(--color-orange);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px;
    min-width: 44px;
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--color-orange);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px;
    min-width: 44px;
}

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

.btn-secondary-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-dark-blue);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--color-orange);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px;
    min-width: 44px;
}

.btn-secondary-dark:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
}

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-dark-blue);
    z-index: 1001;
    padding: 80px 24px 24px;
    transition: right var(--transition-medium);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-close svg {
    width: 28px;
    height: 28px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 6px;
    display: block;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-orange);
}

.mobile-nav-contact {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-contact a {
    color: var(--color-white);
    display: block;
    padding: 12px 16px;
    font-size: 16px;
}

.mobile-nav-contact .btn-primary {
    width: 100%;
    margin-top: 16px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.mobile-overlay.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 40px 20px;
    color: var(--color-white);
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 24px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    min-width: 180px;
}

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

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}

.section-light {
    background-color: var(--color-light-grey);
}

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

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

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-dark-blue);
    margin-bottom: 16px;
}

.section-dark .section-header h2 {
    color: var(--color-white);
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--color-dark-blue);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content .btn-primary {
    margin-top: 24px;
}

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

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--color-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.service-card:hover .service-card-icon {
    background-color: var(--color-orange);
}

.service-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-orange);
    transition: stroke var(--transition-fast);
}

.service-card:hover .service-card-icon svg {
    stroke: var(--color-white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--color-dark-blue);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card a {
    color: var(--color-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card a:hover {
    color: var(--color-orange-dark);
}

.service-card a svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.service-card a:hover svg {
    transform: translateX(4px);
}

/* Emergency Section */
.emergency-section {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-medium-blue) 100%);
    padding: 80px 0;
    color: var(--color-white);
}

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

.emergency-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 16px;
}

.emergency-content p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.emergency-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
}

.discount-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.discount-card {
    background-color: var(--color-orange);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse-subtle 3s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 127, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 127, 0, 0);
    }
}

.discount-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.discount-card p {
    font-size: 16px;
    margin-bottom: 8px;
}

.discount-card span {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
}

.discount-card .btn-secondary {
    margin-top: 16px;
    border-color: var(--color-white);
    color: var(--color-white);
}

.discount-card .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
}

/* Why Choose Us Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.trust-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

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

.trust-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--color-light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-orange);
    transition: stroke var(--transition-fast);
}

.trust-card:hover .trust-card-icon svg {
    stroke: var(--color-orange-dark);
}

.trust-card h3 {
    font-size: 20px;
    color: var(--color-dark-blue);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Service Areas Section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.area-column h3 {
    font-size: 24px;
    color: var(--color-dark-blue);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-orange);
}

.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.area-list li {
    font-size: 15px;
    color: var(--color-text-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--color-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-dark-blue);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.cta-section .btn-primary {
    min-width: 220px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-white);
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-orange);
}

.footer-about p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-orange);
    flex-shrink: 0;
}

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

.footer-links a {
    font-size: 14px;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: width var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--color-orange);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter form {
    display: flex;
    gap: 8px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-primary);
}

.footer-newsletter button {
    padding: 10px 16px;
    background-color: var(--color-orange);
    border: none;
    border-radius: 6px;
    color: var(--color-white);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.footer-newsletter button:hover {
    background-color: var(--color-orange-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom-links a:hover {
    color: var(--color-orange);
}

/* Mobile Footer */
.footer-mobile-accordion {
    display: none;
}

/* Page Hero (Sub-pages) */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.7) 100%);
    z-index: -1;
}

.page-hero-content {
    max-width: 800px;
    padding: 40px 20px;
    color: var(--color-white);
}

.page-hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.9;
}

/* Services Page */
.services-detail-grid {
    display: grid;
    gap: 30px;
}

.service-detail-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 26px;
    color: var(--color-dark-blue);
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-content ul {
    margin: 20px 0;
}

.service-detail-content li {
    font-size: 15px;
    color: var(--color-text-dark);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-content li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--color-white);
}

/* Emergency Callout */
.emergency-callout {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--color-white);
}

.emergency-callout h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 12px;
}

.emergency-callout p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* About Page */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--color-dark-blue);
    margin-bottom: 20px;
}

.about-story-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-mission {
    background-color: var(--color-light-grey);
    padding: 60px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mission-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-white);
}

.mission-card h3 {
    font-size: 20px;
    color: var(--color-dark-blue);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

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

.team-image {
    position: relative;
    height: 280px;
    background-color: var(--color-light-grey);
    overflow: hidden;
}

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

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    color: var(--color-dark-blue);
    margin-bottom: 4px;
}

.team-info span {
    font-size: 14px;
    color: var(--color-orange);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Certifications */
.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.certification-item .cert-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-light-grey);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.certification-item:hover .cert-icon {
    background-color: var(--color-orange);
}

.certification-item .cert-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--color-dark-blue);
    transition: stroke var(--transition-fast);
}

.certification-item:hover .cert-icon svg {
    stroke: var(--color-white);
}

.certification-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-blue);
}

/* Service Areas Page */
.areas-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.areas-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.local-benefit {
    background-color: var(--color-light-grey);
    padding: 60px 0;
}

.local-benefit-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.local-benefit-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--color-dark-blue);
    margin-bottom: 20px;
}

.local-benefit-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: clamp(26px, 3vw, 36px);
    color: var(--color-dark-blue);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-light-grey);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
}

.contact-item-content h4 {
    font-size: 16px;
    color: var(--color-dark-blue);
    margin-bottom: 4px;
}

.contact-item-content p {
    font-size: 15px;
    color: var(--color-text-light);
}

.contact-item-content a {
    color: var(--color-orange);
    font-weight: 500;
}

.contact-item-content a:hover {
    color: var(--color-orange-dark);
}

.contact-hours {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-light-grey);
}

.contact-hours h4 {
    font-size: 18px;
    color: var(--color-dark-blue);
    margin-bottom: 12px;
}

.contact-hours p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--color-dark-blue);
    margin-bottom: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-light-grey);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: border-color var(--transition-fast);
    background-color: var(--color-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-full {
    grid-column: 1 / -1;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 12px;
}

/* Map */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

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

.blog-image {
    position: relative;
    height: 220px;
    background-color: var(--color-light-grey);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--color-dark-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.blog-meta {
    font-size: 13px;
    color: var(--color-text-light);
    display: flex;
    justify-content: space-between;
}

.blog-category {
    color: var(--color-orange);
    font-weight: 600;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--color-orange);
    z-index: 1002;
    transition: width 0.1s ease;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-progress {
        display: none;
    }
    
    .hero-content h1,
    .hero-content p,
    .hero-buttons {
        opacity: 1;
        transform: none;
    }
    
    .service-card,
    .fade-in,
    .slide-in-left,
    .slide-in-right {
        opacity: 1;
        transform: none;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .emergency-grid,
    .about-story,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image {
        height: 280px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-nav,
    .header-cta .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero {
        min-height: 75vh;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .discount-cards {
        flex-direction: row;
        justify-content: center;
    }
    
    .discount-card {
        flex: 1;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 64px;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .hero {
        margin-top: 64px;
    }
    
    .page-hero {
        min-height: 40vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .discount-card {
        max-width: 100%;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        gap: 24px;
    }
    
    .certification-item .cert-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}
