/* styles.css */
:root {
    /* Brand Colors */
    --navy-primary: #002147;
    --navy-secondary: #003366;
    --gold-primary: #B4975A;
    --gold-light: #D4B36A;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    
    /* Typography */
    --heading-font: 'Open Sans', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --container-padding: 0 2rem;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-gray);
}

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

/* Header Styles */
.header {
    background-color: var(--navy-primary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 200px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-light);
}

/* Hero Section */
.hero {
    background-color: var(--light-gray);
    padding: calc(var(--section-padding) + 80px) 0 var(--section-padding);
    text-align: center;
}

.hero-title {
    color: var(--navy-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--navy-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--gold-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--gold-light);
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}
/* Pricing Specific Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card .price {
    font-size: 2.5rem;
    color: var(--navy-primary);
    margin: 1rem 0;
}

.price-card .price span {
    font-size: 1rem;
    color: var(--navy-secondary);
}

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

.package-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.package-card.featured {
    border: 2px solid var(--gold-primary);
    transform: scale(1.05);
}

.package-features {
    list-style: none;
    margin: 2rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.package-features li:before {
    content: "✓";
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

/* Calculator Styles */
.calculator-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-secondary);
}

.calculator-result {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 4px;
}
/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    color: var(--gold-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Emergency Contact Styles */
.emergency-contact-info {
    text-align: center;
    margin: 2rem 0;
}

.emergency-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--navy-primary);
}

.phone-label {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-primary);
}

/* Testimonial Styles */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.author-name {
    display: block;
    font-weight: bold;
    color: var(--navy-primary);
}

.author-title {
    color: var(--navy-secondary);
    font-size: 0.875rem;
}
/* Enhanced Emergency Contact Styles */
.status-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(0, 33, 71, 0.05);
}

.status-indicator.available .status-dot {
    background-color: #4CAF50;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 4px;
    color: white;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background-color: #4CAF50;
}

.notification.error {
    background-color: #f44336;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Dynamic Content Loading Animations */
.blog-card, .testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.blog-card.visible, .testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.load-more {
    display: block;
    margin: 2rem auto;
    padding: 0.75rem 1.5rem;
    background-color: var(--navy-primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.load-more:hover {
    background-color: var(--navy-secondary);
}

.main-nav {
    background-color: #002147; /* Navy primary */
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding: 0.5rem 0;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

.business-name {
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #B4975A; /* Gold primary */
}

.btn-primary {
    background-color: #B4975A;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #D4B36A;
}

.emergency-link {
    color: #B4975A !important;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
}

/* Dropdown styles */
.dropdown {
    display: none;
    position: absolute;
    background-color: #003366;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-links li:hover .dropdown {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #002147;
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
    }
}

/* Common CSS for all county pages */
    .location-hours {
        color: #003366;
        font-size: 0.9em;
        margin: 5px 0;
    }
    
    .parking-info {
        background: #f5f5f5;
        padding: 8px;
        border-left: 3px solid #B4975A;
        margin: 5px 0;
    }
    
    .our-hours {
        background: #002147;
        color: white;
        padding: 15px;
        margin: 20px 0;
        border-radius: 5px;
    }
   