/* Customer Navigation Bar Styles */
.nav-bar {
    background-color: #f91836;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav {
    gap: 10px !important;
    display: flex;
    justify-content: space-between !important;
}

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

.nav-logo {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo:hover {
    color: #ffffff !important;
}

.nav-logo img {
    height: 82px;
    width: auto;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.nav, .nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-right {
    position: fixed;
    right: 0;
    margin-right: 1rem;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    transition: background-color 0.2s !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    position: relative !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
/*    background-color: rgba(255, 255, 255, 0.2) !important;*/
    color: #ffffff !important;
}

.nav-link.active {
/*    background-color: rgba(255, 255, 255, 0.3) !important;*/
    color: #ffffff !important;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block !important;
    padding: 12px 20px !important;
    color: #333333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: background-color 0.2s !important;
    border-radius: 0 !important;
    position: relative !important;
}

.nav-dropdown-item:hover {
/*    background-color: #f5f5f5 !important;*/
    color: #f91836 !important;
}

.nav-dropdown-item.active {
/*    background-color: #f91836 !important;*/
    color: #ffffff !important;
}

    .nav-dropdown-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #f91836;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease-in-out;
    }

    .nav-dropdown-item:hover::after {
        transform: scaleX(1);
    }

    .nav-dropdown-item.active::after {
        transform: scaleX(1);
    }

/* Common Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f91836 0%, #c91429 100%);
    padding: 120px 24px;
    text-align: center;
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #ffffff;
    color: #f91836;
}

.btn-primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #f91836;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 80px 24px;
    background-color: #f9f9f9;
}

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

.feature-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.feature-description {
    color: #666666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #f91836;
}

.pricing-card.featured {
    border-color: #f91836;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(249, 24, 54, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f91836;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f91836;
}

.price-period {
    color: #666666;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    color: #666666;
    line-height: 1.6;
}

.pricing-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f91836;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pricing-button:hover {
    background-color: #c91429;
    transform: scale(1.05);
}

/* Locations Section */
.locations-section {
    padding: 80px 24px;
    background-color: #f9f9f9;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.location-name {
    font-size: 2rem;
    font-weight: 700;
    color: #f91836;
    margin-bottom: 24px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.location-address,
.location-phone,
.location-hours {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #666666;
    line-height: 1.6;
}

.location-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f91836;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.location-button:hover {
    background-color: #c91429;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.testimonial-card {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #f91836;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c2c2c;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f91836 0%, #c91429 100%);
    color: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background-color: #ffffff;
    color: #f91836;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.customer-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 48px 24px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    color: #f91836;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.footer-text {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.social-link:hover {
    background-color: #f91836;
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    line-height: 1.6;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f91836;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: #cccccc;
    line-height: 1.6;
}

.footer-hours li span:first-child {
    font-weight: 600;
}

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

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content p {
    margin: 0;
    color: #cccccc;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom-links .separator {
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .pricing-grid,
    .locations-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-hours li {
        flex-direction: column;
        align-items: flex-start;
    }
}