/*
* Towing Website Template
* Main Stylesheet
*/

/* Base Styles */
body {
    font-family: var(--body-font-family);
    font-size: var(--base-font-size);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    transition: padding-top 0.3s ease;
}

/* Page Transitions */
body:not(.page-loaded) .container {
    opacity: 0;
}

body.page-loaded .container {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* CSS Variables are dynamically generated in head.php */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

a {
    color: var(--link-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
}

.section-header p {
    font-size: 1.1rem;
    color: #777;
}

section {
    padding: 80px 0;
}

/* Common Utility Classes */
.card-base {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--card-shadow-color);
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-hover-sm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    padding: 10px 0;
    color: white;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.contact-info span {
    margin-right: 20px;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 5px;
}

.social-links {
    text-align: right;
}

.social-links a {
    display: inline-block;
    margin-left: 10px;
    font-size: 1rem;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Sticky Header Styles */
.site-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease-out;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.logo img {
    max-height: 80px;
    object-fit: contain;
    vertical-align: middle;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 15px;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.mobile-menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.header-cta .btn {
    padding: 0.6rem 1.2rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    overflow-y: auto;
    transition: all 0.3s ease;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-light-color);
}

.mobile-menu-close {
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu .logo img {
    max-height: 60px;
    object-fit: contain;
    vertical-align: middle;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav ul li {
    border-bottom: 1px solid var(--border-light-color);
}

.mobile-menu nav ul li a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    font-weight: 500;
}

.mobile-menu nav ul li a:hover {
    background-color: var(--very-light-section-bg);
    color: var(--primary-color);
}

.mobile-contact {
    padding: 20px;
    border-bottom: 1px solid var(--border-light-color);
}

.mobile-contact a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.85rem;
}

.mobile-contact a i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-social {
    padding: 20px;
    text-align: center;
}

.mobile-social a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.mobile-social a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0;
    color: white;
    overflow: hidden;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--hero-overlay-start) 0%, var(--hero-overlay-end) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    position: relative;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-left: 15px;
}

.hero h1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 5px;
    background: var(--accent-color);
    border-radius: 3px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-cta .btn {
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25);
}

/* Hero Breadcrumbs */
.hero-breadcrumbs {
    margin-top: 2rem;
}

.hero-breadcrumbs .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 20px;
    margin: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-breadcrumbs .breadcrumb-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}

.hero-breadcrumbs .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumbs .breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.hero-breadcrumbs .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

/* Services Section */
.services {
    background-color: white;
}

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

.service-card {
    text-align: center;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 30px var(--card-shadow-color);
    transition: all 0.4s ease;
    background-color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}

.service-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--service-card-border);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px var(--card-shadow-color);
}

.service-card:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-section-bg);
}

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

.feature {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* About Preview Section */
.about-preview {
    background-color: white;
}

.about-content {
    padding: 30px 0;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-section-bg);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background-color: white;
    padding: 40px 30px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--card-shadow-color);
    position: relative;
    transition: all 0.3s ease;
    border-top: 3px solid var(--testimonial-border-color);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--card-shadow-color);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--testimonial-quote-color);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--subtitle-text-color);
}

.testimonial-author {
    text-align: right;
    border-top: 1px solid var(--border-section-color);
    padding-top: 15px;
    margin-top: 20px;
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    background: var(--cta-background);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta:after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Location Section */
.location {
    background-color: white;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

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

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--animation-speed) ease;
}

.accordion-item.active {
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.15);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    padding: 18px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    background-color: white;
    box-shadow: none;
    border-radius: 8px !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(var(--primary-color-rgb), 0.1);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: white;
    box-shadow: none;
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    color: var(--primary-color);
}

.accordion-body {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--alternate-section-bg);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-cta h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.faq-cta p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-control {
    height: 50px;
    border: 1px solid var(--border-medium-color);
    border-radius: 4px;
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.form-status {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.form-status.success {
    background-color: var(--form-success-bg);
    border-color: var(--form-success-border);
    color: var(--form-success-text);
}

.form-status.error {
    background-color: var(--form-error-bg);
    border-color: var(--form-error-border);
    color: var(--form-error-text);
}

/* Contact Info */
.contact-info-box {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
    color: white;
    height: 100%;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-icon {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
}

.contact-info-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-content p, 
.contact-info-content a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-content a:hover {
    color: white;
}

/* Footer */
.site-footer {
    background-color: var(--footer-color);
    color: var(--footer-text-color);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-logo img {
    max-height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.footer-info p {
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after,
.footer-services h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: var(--light-text-color);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.copyright {
    margin: 0;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: var(--light-text-color);
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(var(--primary-color-rgb), 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    animation: pulse 2s infinite;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(var(--secondary-color-rgb), 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4); }
    14% { box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0); }
    28% { box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4); }
    42% { box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0); }
    70% { box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4); }
    100% { box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0); }
}

/* Services Page */
.services-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: white;
}

.services-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.services-banner .container {
    position: relative;
    z-index: 2;
}

.services-banner h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.services-banner p {
    font-size: 1.2rem;
    max-width: 700px;
}

.service-detail {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-detail-image {
    height: 250px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

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

.service-detail-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-detail h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-detail-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.service-detail-link:hover {
    color: var(--secondary-color);
}

/* About Page */
.about-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: white;
}

.about-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-banner .container {
    position: relative;
    z-index: 2;
}

.about-banner h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.about-banner p {
    font-size: 1.2rem;
    max-width: 700px;
}

.about-section {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-stats {
    padding: 60px 0;
    background-color: var(--light-section-bg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.team-section {
    background-color: white;
    padding: 80px 0;
}

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

.team-member {
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member-info {
    padding: 20px;
}

.team-member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member-info p {
    color: var(--muted-text-color);
    margin-bottom: 15px;
}

.team-social a {
    display: inline-block;
    margin: 0 5px;
    color: var(--secondary-color);
}

.team-social a:hover {
    color: var(--primary-color);
}

/* Contact Page */
.contact-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    color: white;
}

.contact-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-banner .container {
    position: relative;
    z-index: 2;
}

.contact-banner h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.contact-banner p {
    font-size: 1.2rem;
    max-width: 700px;
}

.contact-section {
    padding: 80px 0;
}

/* Emergency Contact Info Styles */
.emergency-contact-info {
    padding: 80px 0;
    background-color: white;
}

.emergency-banner {
    padding: 40px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-radius: 10px;
    margin-bottom: 0;
}

.emergency-banner h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.emergency-banner h2 i {
    margin-right: 15px;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.emergency-banner p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.emergency-btn {
    background-color: white;
    color: #dc3545;
    border: none;
    font-weight: 600;
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background-color: #f8f9fa;
    color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.emergency-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Service Coverage Area Styles */
.service-coverage {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.coverage-details {
    padding: 40px;
    margin-bottom: 30px;
}

.coverage-list {
    margin-top: 20px;
}

.coverage-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.coverage-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 16px;
    min-width: 20px;
}

.coverage-item span {
    font-size: 14px;
    line-height: 1.4;
}

.special-locations {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.location-category {
    margin-bottom: 30px;
}

.location-category h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.location-category h5 i {
    margin-right: 10px;
    font-size: 18px;
}

.location-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-category ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.location-category ul li:last-child {
    border-bottom: none;
}

.response-guarantee {
    padding: 30px;
    margin-bottom: 30px;
}

.response-guarantee h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.response-guarantee h3 i {
    margin-right: 10px;
    font-size: 22px;
}

.guarantee-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.guarantee-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.guarantee-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-emergency {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.contact-emergency h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-emergency h3 i {
    margin-right: 10px;
    font-size: 20px;
}

.contact-emergency p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-emergency .btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 16px;
}

.contact-emergency .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Contact Methods Styles */
.contact-methods {
    padding: 80px 0;
    background-color: white;
}

.contact-method {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
}

.contact-method .method-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-method p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-method ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.contact-method ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.contact-method ul li:last-child {
    border-bottom: none;
}

.contact-method .btn {
    margin-top: 20px;
}

/* Call Preparation Styles */
.call-preparation {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.prep-category {
    background: white;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    height: 100%;
}

.call-preparation .col-lg-6 {
    margin-bottom: 20px;
}

.prep-category h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.prep-category h3 i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.prep-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prep-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.prep-list li:last-child {
    border-bottom: none;
}

.prep-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* RV Service Page Styles */
.rv-category {
    padding: 25px;
    margin-bottom: 25px;
    height: 100%;
}

.rv-category h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.rv-category h4 i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.rv-category ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.rv-category ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.rv-category ul li:last-child {
    border-bottom: none;
}

.emergency-service {
    padding: 25px;
    margin-bottom: 25px;
    height: 100%;
}

.emergency-service h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.emergency-service h4 i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.emergency-service ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.emergency-service ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.emergency-service ul li:last-child {
    border-bottom: none;
}

.safety-category {
    background: white;
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    height: 100%;
}

.safety-category h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.safety-category h4 i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.safety-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-category ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.safety-category ul li:last-child {
    border-bottom: none;
}

.safety-category ul li strong {
    color: var(--text-color);
    font-weight: 600;
}

.emergency-type {
    padding: 25px;
    margin-bottom: 25px;
    height: 100%;
}

.emergency-type h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.emergency-type h4 i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.emergency-type ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.emergency-type ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.emergency-type ul li:last-child {
    border-bottom: none;
}

.payment-info {
    padding: 25px;
    margin-bottom: 25px;
    height: 100%;
}

.payment-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.payment-info h4 i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.payment-info ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.payment-info ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
}

.payment-info ul li:last-child {
    border-bottom: none;
}

.payment-info p {
    font-size: 14px;
    margin-top: 15px;
}

.payment-info p strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .coverage-details {
        padding: 25px;
    }
    
    .coverage-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .coverage-item i {
        margin-bottom: 5px;
    }
    
    .response-guarantee,
    .contact-emergency {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .special-locations .row {
        margin-top: 20px;
    }
    
    .location-category {
        margin-bottom: 25px;
    }
    
    .contact-method {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-method .method-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .contact-method h3 {
        font-size: 1.3rem;
    }
    
    .prep-category {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .call-preparation .col-lg-6 {
        margin-bottom: 15px;
    }
    
    .prep-category h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .prep-category h3 i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .emergency-banner {
        padding: 25px 20px;
        text-align: center;
    }
    
    .emergency-banner h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .emergency-banner h2 i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .emergency-banner p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .emergency-btn {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        margin-top: 15px;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--animation-speed) ease, transform var(--animation-speed) ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-sequence > * {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

.page-loaded .animate-sequence > * {
    animation: fadeInUp var(--animation-speed) ease forwards;
}

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

/* Heartbeat animation for icons */
@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.animated.heartBeat {
    animation: heartBeat 1s;
}

/* Testimonial slider custom navigation */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-prev {
    left: -20px;
}

.testimonials-slider .slick-next {
    right: -20px;
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

.testimonials-slider .slick-prev:hover i,
.testimonials-slider .slick-next:hover i {
    color: white;
}

.testimonials-slider .slick-prev i,
.testimonials-slider .slick-next i {
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 40px;
}

.testimonials-slider .slick-dots {
    bottom: -40px;
}

.testimonials-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Service Area Coverage Styles */
.service-area {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.service-area .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-area .section-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-area .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.service-coverage {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.service-area-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.service-area-content h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.service-area-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-area-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-area-content ul.service-list {
    list-style: none;
    padding: 15px 0;
    margin: 15px 0;
}

.service-area-content ul.service-list li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.service-area-content ul.service-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.service-coverage h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.service-coverage h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-coverage ul {
    list-style: none;
    padding: 15px 0;
    margin: 15px 0;
}

.service-coverage ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-coverage ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 10px;
}

/* Service List with Icons - No pseudo-elements */
.service-coverage ul.service-list {
    list-style: none;
    padding: 15px 0;
    margin: 15px 0;
}

.service-coverage ul.service-list li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.service-coverage ul.service-list li:before {
    display: none; /* Remove checkmark for service-list */
}

.service-coverage ul.service-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.response-commitment {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 10px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

.response-commitment h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.response-commitment p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.emergency-tips {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.emergency-tips h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.tip-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.tip-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tip-item h4 i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.tip-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Emergency Response Section Styles */
.emergency-response {
    background-color: white;
    padding: 80px 0;
}

.emergency-response .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.emergency-response .section-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.emergency-response .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.response-feature {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.response-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.response-feature h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.response-feature p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.response-feature ul {
    list-style: none;
    padding: 0;
}

.response-feature ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.response-feature ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 0.9rem;
}

.response-feature .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
}

.response-feature .feature-icon i {
    font-size: 2rem;
    color: white;
}

.response-feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* Equipment Section Styles */
.equipment-section {
    background-color: #f8f9fa;
}

.equipment-category {
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
}

.equipment-category h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.equipment-category h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.equipment-list {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.equipment-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.equipment-list li strong {
    color: var(--secondary-color);
}

.technology-highlight {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.technology-highlight h3 {
    color: white;
    margin-bottom: 20px;
}

.technology-highlight h3 i {
    margin-right: 10px;
}

.tech-feature {
    text-align: center;
    padding: 20px;
}

.tech-feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.tech-feature h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-feature p {
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-wrapper {
        padding: 10px 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        margin-bottom: 10px;
    }
    
    .about-content {
        margin-bottom: 30px;
    }
    
    .footer-info, .footer-links, .footer-services, .footer-contact {
        margin-bottom: 30px;
    }
    
    .copyright, .footer-bottom-links {
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 10px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .top-bar .contact-info, .top-bar .social-links {
        text-align: center;
    }
    
    .top-bar .social-links {
        margin-top: 10px;
    }
    
    /* Swap hamburger and call now button positions on mobile */
    .mobile-menu-toggle {
        order: 3;
    }
    
    .header-cta {
        order: 2;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-card, .feature {
        margin-bottom: 20px;
    }
    
    .about-content h2, .about-banner h1, .services-banner h1, .contact-banner h1 {
        font-size: 2rem;
    }
    
    .contact-info-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Service Area Mobile Styles */
    .service-area {
        padding: 60px 0;
    }
    
    .service-area .section-header h2 {
        font-size: 2rem;
    }
    
    .service-coverage {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .service-coverage h3 {
        font-size: 1.3rem;
    }
    
    .service-coverage h4 {
        font-size: 1.1rem;
    }
    
    .service-area-content {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .service-area-content h3 {
        font-size: 1.5rem;
    }
    
    .service-area-content h4 {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .response-commitment {
        padding: 25px;
        margin: 20px 0;
    }
    
    .response-commitment h3 {
        font-size: 1.5rem;
    }
    
    .emergency-tips {
        padding: 25px;
    }
    
    .tip-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    /* Emergency Response Mobile Styles */
    .emergency-response {
        padding: 60px 0;
    }
    
    .emergency-response .section-header h2 {
        font-size: 2rem;
    }
    
    .response-feature {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .response-feature h3 {
        font-size: 1.2rem;
    }
}

/* Privacy Policy & Terms of Service Styles */
.privacy-policy-section,
.terms-section {
    background-color: var(--background-color);
}

.privacy-content,
.terms-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.privacy-content h2,
.terms-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.privacy-content h3,
.terms-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.privacy-content ul,
.terms-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-content .contact-info,
.terms-content .contact-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.privacy-content .contact-info p,
.terms-content .contact-info p {
    margin-bottom: 0.5rem;
}

.privacy-content .contact-info i,
.terms-content .contact-info i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.last-updated {
    background: var(--accent-color);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
}

.last-updated p {
    margin: 0;
    font-weight: 500;
}

.privacy-section,
.terms-section {
    position: relative;
}

.privacy-section:not(:last-child):after,
.terms-section:not(:last-child):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

/* Mobile Responsiveness for Privacy/Terms Pages */
@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .privacy-content h2,
    .terms-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content h3,
    .terms-content h3 {
        font-size: 1.2rem;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--border-color);
    margin: 0 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

/* Page Header with Breadcrumbs */
.page-header .breadcrumb {
    margin-top: 10px;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: white;
}
