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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #e10600;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.about-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.about-item:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    flex-shrink: 0;
    width: 300px;
}

.about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.about-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-content p {
    color: #555;
    line-height: 1.6;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .about-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 300px;
    }
}


.gallery-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2rem;
}

.carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.9);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #2c3e50;
}

.carousel-counter {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

.products-cards-section {
    padding: 60px 0;
    background: #fff;
}

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

.product-card {
    display: block;
    text-decoration: none;
    color: white;
    position: relative;
   
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products-cards-grid .product-card {
	height: 400px;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-image-wrapper {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.product-card:hover .card-image {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
    padding: 20px 30px;
    border-radius: 10px;
}

.product-card:hover .card-title {
    transform: scale(1.05);
}

       /* Emergency Section */
        .emergency-section {
            padding: 60px 0;
            background: #1a1a1a;
            color: white;
            text-align: center;
        }

        .emergency-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .emergency-title {
            font-size: 36px;
            margin-bottom: 20px;
            color: #e10600;
        }

        .emergency-phone {
            font-size: 48px;
            font-weight: bold;
            color: #e10600;
            text-decoration: none;
            display: block;
            margin: 20px 0;
        }

        .emergency-text {
            font-size: 18px;
            color: #ccc;
            margin-bottom: 30px;
        }

.card-image-wrapper {
    position: absolute;
    top: -20px; /* Края выходят за границы */
    left: -20px;
    right: -20px;
    bottom: -20px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.product-card:hover .card-image {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    letter-spacing: 1px;
}

/* Эффект наведения для текста */
.product-card:hover .card-title {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Адаптивность */
@media (max-width: 768px) {
    .products-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        height: 300px; /* Меньшая высота на мобильных */
    }
    
    .card-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-cards-grid .product-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }
}

/* Дополнительные стили для разных карточек (опционально) */
.product-card:nth-child(1) .card-image {
    filter: brightness(0.8) saturate(1.1);
}

.product-card:nth-child(2) .card-image {
    filter: brightness(0.75) contrast(1.1);
}

.product-card:nth-child(3) .card-image {
    filter: brightness(0.7) hue-rotate(5deg);
}

.logo-section .logo a {
    font-size: 28px;

    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.header-contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item .icon {
    color: #e10600;
}

.contact-item .text {
    font-size: 14px;
}

/* Navigation Styles */
.main-navigation {
    background-color: #2d2d2d;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.nav-link {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
    border-right: 1px solid #444;
}

.nav-link:hover,
.nav-link.active {
    background-color: #e10600;
}

.nav-link.appointment-btn {
    background-color: #e10600;
    font-weight: bold;
}

/* Hero Banner Styles */
.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("../../src/img/hero_banner.jpeg");
    /* background-image: url("src/img/hero_banner.jpeg"); */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button.primary {
    background-color: #e10600;
    color: #fff;
}

.cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #e10600;
    text-decoration: none;
    font-weight: bold;
}

/* Appointment Section */
.appointment-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.appointment-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.appointment-header {
    text-align: center;
    margin-bottom: 40px;
}

.appointment-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.appointment-subtitle {
    font-size: 18px;
    color: #ccc;
}

.appointment-form-container {
    background: #2d2d2d;
    padding: 40px;
    border-radius: 8px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    margin-bottom: 8px;
    color: #fff;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e10600;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-button {
    background-color: #e10600;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #c10500;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
    border-top: 3px solid #e10600;
}

/* reCAPTCHA Notice */
.recaptcha-notice {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #444;
}

.recaptcha-notice p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.recaptcha-notice a {
    color: #e10600;
    text-decoration: none;
}

.recaptcha-notice a:hover {
    text-decoration: underline;
}

/* Footer Main Content */
.footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3.footer-title {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Visit Us Section */
.visit-section .footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.company-info {
    margin-top: 20px;
}

.company-name {
    color: #e10600;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.address p, .phone p {
    color: #ccc;
    margin: 5px 0;
    line-height: 1.4;
}

.phone p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* Hours Section */
.business-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    color: #fff;
    font-weight: bold;
    min-width: 40px;
}

.hour-item .time {
    color: #ccc;
}

.hour-item .time.closed {
    color: #e10600;
    font-weight: bold;
}

/* Links Section */
.links-section .footer-title {
    color: #e10600;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e10600;
}

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

.form-notice {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-notice p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.form-notice a {
    color: #e10600;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

/* Visit In Person Styles */
.visit-in-person {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: fit-content;
}

.visit-in-person h3 {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.visit-in-person > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-style: italic;
}

.business-info h4 {
    color: #e10600;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.business-info .address p,
.business-info .phone p,
.business-info .hours-summary p {
    color: #333;
    margin: 8px 0;
    line-height: 1.4;
}

.business-info .phone p {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
}

.business-info .hours-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.business-info .hours-summary p {
    margin: 5px 0;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper,
    .visit-in-person {
        padding: 30px 20px;
    }
}

/* Map & Contact Section Styles */
.map-contact-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Map Container */
.map-container {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
}

.map-footer {
    background: #f8f9fa;
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.map-footer p {
    color: #666;
    font-size: 12px;
    margin: 0;
}

/* Contact Information */
.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

/* Better Yet Section */
.better-yet-section {
    margin-bottom: 30px;
    text-align: center;
}

.better-yet-section h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: bold;
}

.locations-text {
    text-align: left;
    display: inline-block;
}

.locations-text p {
    margin: 8px 0;
    line-height: 1.4;
}

.locations-text strong {
    color: #e10600;
    font-weight: bold;
}

/* Safety Info Section */
.safety-info {
    margin-bottom: 30px;
    text-align: center;
}

.safety-info h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
}

.safety-info p {
    margin: 5px 0;
    color: #666;
}

.phone-link a {
    color: #e10600;
    text-decoration: none;
    font-weight: bold;
}

.phone-link a:hover {
    text-decoration: underline;
}

/* Hours Section */
.hours-section {
    margin-bottom: 40px;
    text-align: center;
}

.hours-section h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: bold;
}

.hours-table {
    display: inline-block;
}

.hours-collapsed {
    margin: 0 auto;
    border-spacing: 10px;
    cursor: pointer;
}

.hours-collapsed td {
    padding: 5px 10px;
}

.hours-collapsed p {
    margin: 0;
    color: #666;
}

.hours-time {
    color: #e10600;
}

.hours-arrow {
    color: #e10600;
    transition: transform 0.3s;
}

.hours-table.expanded .hours-arrow {
    transform: rotate(180deg);
}

.hours-expanded {
    margin-top: 15px;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item .day {
    color: #333;
    font-weight: 500;
}

.hour-item .time {
    color: #666;
}

.hour-item .time.closed {
    color: #e10600;
    font-weight: bold;
}

/* Quote Form Section */
.quote-form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.form-toggle-mobile {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

.quote-btn {
    background-color: #e10600;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #c10500;
}

.quote-form-container h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Fields */
.form-field {
    width: 100%;
}

.input-float-label {
    position: relative;
    margin-bottom: 20px;
}

.input-float-label input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s;
}

.input-float-label input:focus {
    outline: none;
    border-color: #e10600;
}

.input-float-label label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #666;
    transition: all 0.3s;
    pointer-events: none;
    background: white;
    padding: 0 4px;
}

.input-float-label input:focus + label,
.input-float-label input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #e10600;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    background: white;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #e10600;
}

/* Attach Files */
.attach-files {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.file-attachment {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #e10600;
    padding: 8px 12px;
    border: 1px dashed #e10600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.file-attachment:hover {
    background-color: rgba(225, 6, 0, 0.1);
}

.attach-icon {
    font-size: 16px;
}

.attach-text {
    font-weight: bold;
}

.attachment-count {
    font-size: 14px;
    color: #666;
}

/* Form Notice */
.form-notice {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.form-notice p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.form-notice a {
    color: #e10600;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

/* Form Controls */
.form-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.submit-btn {
    background-color: #e10600;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}



.submit-btn:hover {
    background-color: #c10500;
}

.cancel-btn {
    background-color: rgba(255, 0, 0, 0);
    color: #e10600;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cancel-btn:hover {
    color: #c10500;
    border: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-contact-section {
        padding: 40px 0;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .better-yet-section h4,
    .safety-info h4,
    .hours-section h4 {
        font-size: 18px;
    }
    
    .quote-form-section {
        padding: 20px;
    }
    
    .form-toggle-mobile {
        display: block;
    }
    
    .quote-form-container {
        display: none;
    }
    
    .quote-form-container.active {
        display: block;
    }
    
    .locations-text {
        text-align: center;
    }
    
    .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .map-wrapper iframe {
        height: 300px;
    }
    
    .hours-table {
        width: 100%;
    }
    
    .hours-collapsed {
        width: 100%;
        border-spacing: 5px;
    }
    
    .form-controls {
        flex-direction: column;
        gap: 10px;
    }
}

/* Copyright Section */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.copyright p {
    color: #999;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hour-item {
        justify-content: flex-start;
        gap: 20px;
    }
    
    .recaptcha-notice {
        text-align: left;
    }
}

/* Services Commerce Section */
.services-commerce-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

/* Commerce Card Styles */
.service-commerce-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

/* Picture Container */
.commerce-card-picture-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.commerce-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.commerce-card-picture {
    position: relative;
    width: 100%;
    height: 100%;
}

.commerce-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.service-commerce-card:hover .commerce-card-background {
    transform: scale(1.05);
}

/* Content Section */
.commerce-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commerce-card-title {
    margin-bottom: 8px;
}

.commerce-card-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Price Display */
.commerce-card-price-display {
    margin-bottom: 8px;
}

.price-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.commerce-item-price {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.commerce-item-price span {
    color: #666;
}

.free-price {
    color: #e10600 !important;
    font-weight: 700;
    font-size: 16px;
}

/* Button Styles */
.commerce-item-button {
    background: linear-gradient(135deg, #e10600, #c10500);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.commerce-item-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.commerce-item-button:hover::before {
    left: 100%;
}

.commerce-item-button:hover {
    background: linear-gradient(135deg, #c10500, #a00400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 6, 0, 0.3);
}

.commerce-item-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-commerce-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .commerce-card-content {
        padding: 20px;
    }
    
    .commerce-card-title h4 {
        font-size: 16px;
    }
    
    .commerce-item-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-commerce-section {
        padding: 60px 0;
    }
    
    .services-commerce-grid {
        grid-template-columns: 1fr;
    }
    
    .commerce-card-picture-container {
        height: 180px;
    }
}