/* ============================================
   ASAP Towing V2 - Contact Page Styles
   ============================================ */

/* ============================================
   Contact Hero Section - Minimal & Clean
   ============================================ */
.contact-hero {
    background: rgba(0, 0, 0, 0.3);
    padding: 100px 0;
}

.contact-minimal-wrapper {
    text-align: center;
}

.contact-header {
    margin-bottom: 4rem;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-main-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Contact Options - Minimal Grid */
.contact-options-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-option-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: all 0.4s ease;
}

.contact-option-minimal:hover {
    transform: translateY(-10px);
}

.option-icon-minimal {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #237A57, #71B280);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(113, 178, 128, 0.2);
}

.contact-option-minimal:hover .option-icon-minimal {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(113, 178, 128, 0.35);
}

.option-icon-location {
    background: linear-gradient(135deg, #FF6B6B, #FF8E72) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2) !important;
}

.contact-option-minimal:hover .option-icon-location {
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.35) !important;
}

.option-icon-hours {
    background: linear-gradient(135deg, #4ECDC4, #44A08D) !important;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2) !important;
}

.contact-option-minimal:hover .option-icon-hours {
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.35) !important;
}

.contact-option-minimal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-option-minimal p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.option-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: white;
    color: #237A57;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    cursor: pointer;
}

.contact-option-minimal:hover .option-cta {
    background: #71B280;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-main-title {
        font-size: 2.2rem;
    }

    .contact-main-subtitle {
        font-size: 1rem;
    }

    .contact-options-minimal {
        gap: 2.5rem;
    }

    .option-icon-minimal {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .contact-option-minimal h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   Section Label
   ============================================ */
.section-label {
    display: inline-block;
    background: rgba(113, 178, 128, 0.2);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ============================================
   Contact Cards
   ============================================ */
.contact-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.contact-card-primary {
    background: linear-gradient(135deg, rgba(235, 51, 73, 0.15) 0%, rgba(244, 92, 67, 0.1) 100%);
    border-color: rgba(235, 51, 73, 0.3);
}

.contact-card-primary:hover {
    border-color: var(--btn-cta-start);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--btn-cta-start), var(--btn-cta-mid));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card-icon-green {
    background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-mid));
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.contact-card-content {
    flex: 1;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-phone {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: var(--accent-green);
}

.contact-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2); 
    }
}

.contact-address {
    font-style: normal;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.contact-note i {
    color: var(--accent-green);
}

.contact-card-btn {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

/* ============================================
   Method Cards
   ============================================ */
.method-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    background: rgba(113, 178, 128, 0.1);
}

.method-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.method-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.method-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-link:hover {
    color: var(--text-white);
    gap: 12px;
}

/* ============================================
   Business Hours
   ============================================ */
.hours-list {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-item-highlight {
    background: rgba(235, 51, 73, 0.1);
    margin: -0.5rem -1rem 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    border-bottom: none;
}

.hours-day {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hours-day i {
    color: var(--accent-green);
    font-size: 1.1rem;
    width: 25px;
}

.hours-day span {
    font-weight: 600;
}

.hours-time {
    color: rgba(255, 255, 255, 0.8);
}

.badge-24 {
    background: linear-gradient(135deg, var(--btn-cta-start), var(--btn-cta-mid));
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.hours-closed {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.hours-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(113, 178, 128, 0.1);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(113, 178, 128, 0.3);
    margin-top: 1.5rem;
}

.hours-note i {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

.hours-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ============================================
   Map Wrapper
   ============================================ */
.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--accent-green);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(30%) contrast(1.1) brightness(0.95);
    transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}

.map-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-mid));
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.map-badge i {
    font-size: 1.5rem;
}

.map-badge div {
    display: flex;
    flex-direction: column;
}

.map-badge strong {
    font-size: 0.95rem;
}

.map-badge span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ============================================
   Area Tags
   ============================================ */
.area-tag {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-height: 100px;
}

.area-tag:hover {
    background: rgba(113, 178, 128, 0.15);
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

.area-tag i {
    color: var(--accent-green);
    margin-right: 6px;
}

.area-tag span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.accordion-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(113, 178, 128, 0.1);
    color: var(--accent-green);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(68%) sepia(23%) saturate(502%) hue-rotate(88deg) brightness(92%) contrast(87%);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.8);
    padding: 1.25rem 1.5rem;
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.section-cta {
    padding: 80px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(235, 51, 73, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(113, 178, 128, 0.15) 100%);
    border: 2px solid rgba(235, 51, 73, 0.4);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 51, 73, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(113, 178, 128, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--btn-cta-start), var(--btn-cta-mid));
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 2rem;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(235, 51, 73, 0.4); 
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 0 20px rgba(235, 51, 73, 0.3); 
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-title span {
    color: var(--accent-green);
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.cta-phone-link:hover {
    color: var(--accent-green);
    transform: scale(1.05);
}

.cta-phone-link i {
    font-size: 2.5rem;
    color: var(--accent-green);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-feature i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.cta-feature span {
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    border-top: 3px solid var(--accent-green);
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner.hide {
    bottom: -100%;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
}

.cookie-text h5 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent-green), var(--btn-gradient-mid));
    color: #000;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(113, 178, 128, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.cookie-btn-settings:hover {
    background: var(--accent-green);
    color: #000;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-green);
}

.cookie-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-modal-close:hover {
    color: var(--text-white);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-option-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-option h5 {
    margin: 0 0 0.25rem;
    color: var(--text-white);
}

.cookie-option p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 28px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--accent-green);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(22px);
}

.cookie-toggle.disabled .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* ============================================
   Utilities
   ============================================ */
.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .contact-main-title {
        font-size: 2.5rem;
    }

    .contact-cta-title {
        font-size: 2rem;
    }
    
    .cta-phone-link {
        font-size: 2.25rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 50px 0;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-main-title {
        font-size: 1.8rem;
    }

    .contact-main-subtitle {
        font-size: 0.95rem;
    }

    .contact-options-minimal {
        gap: 2rem;
    }

    .option-icon-minimal {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .contact-option-minimal h3 {
        font-size: 1.1rem;
    }

    .contact-option-minimal p {
        font-size: 0.85rem;
    }

    .option-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-phone {
        font-size: 1.5rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .map-badge {
        top: 10px;
        left: 10px;
        padding: 10px 12px;
    }
    
    .map-badge i {
        font-size: 1.2rem;
    }
    
    .map-badge strong {
        font-size: 0.8rem;
    }
    
    .map-badge span {
        font-size: 0.7rem;
    }
    
    .cta-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-phone-link {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-phone-link i {
        font-size: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-cta,
    .cta-buttons .btn-grad {
        width: 100%;
    }
    
    .area-tag {
        padding: 0.75rem;
    }
    
    .area-tag span {
        font-size: 0.8rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-icon {
        font-size: 2rem;
    }
    
    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ============================================
   Custom Modals - Visit Us & Hours
   ============================================ */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.custom-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

.modal-content.modal-lg {
    width: 800px;
}

.modal-content.modal-md {
    width: 500px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #000;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

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

.map-container iframe {
    border-radius: 12px;
}

/* Location Info */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.location-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--accent-green, #71B280);
    margin-top: 5px;
    flex-shrink: 0;
}

.location-item h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
}

.location-item p,
.location-item a {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
}

.location-item a:hover {
    color: var(--accent-green, #71B280);
}

/* Hours Modal List */
.hours-modal-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.hours-modal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid var(--accent-green, #71B280);
    transition: all 0.3s ease;
}

.hours-modal-item:hover {
    background: #f0f8f5;
    transform: translateX(5px);
}

.hours-modal-day {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #222;
}

.hours-modal-day i {
    font-size: 1.3rem;
    color: var(--accent-green, #71B280);
}

.hours-modal-time {
    font-size: 0.95rem;
    color: #666;
    text-align: right;
}

.badge-24 {
    display: inline-block;
    background: linear-gradient(135deg, #237A57, #71B280);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.hours-closed {
    color: #d9534f;
    font-weight: 600;
}

/* Hours Modal Note */
.hours-modal-note {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #e8f4e8;
    border-radius: 10px;
    border-left: 4px solid var(--accent-green, #71B280);
}

.hours-modal-note i {
    font-size: 1.3rem;
    color: var(--accent-green, #71B280);
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-modal-note p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Button Styling in Modal */
.modal-body .btn-grad {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Option CTA Button Styling */
.option-cta-btn {
    background: none;
    border: none;
    color: var(--accent-green, #71B280);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.option-cta-btn:hover {
    background: rgba(113, 178, 128, 0.1);
    color: var(--dark-green, #237A57);
}

/* Responsive Modals */
@media (max-width: 768px) {
    .modal-content.modal-lg,
    .modal-content.modal-md {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 20px;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 100%;
    }

    .hours-modal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hours-modal-time {
        text-align: left;
    }
}