/* ===== CONTACT SECTION ===== */
        .contact-section {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        /* ===== CONTACT INFO CARDS ===== */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-info-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(13, 92, 69, 0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--green-50);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .contact-icon i {
            color: var(--green-600);
        }

        .contact-info-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--green-800);
            margin-bottom: 0.8rem;
        }

        .contact-info-card p {
            color: var(--slate);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .contact-info-card a {
            color: var(--green-600);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-info-card a:hover {
            color: var(--green-800);
        }

        /* ===== CONTACT FORM SECTION ===== */
        .contact-form-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .contact-form h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--green-800);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--ink);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green-600);
            box-shadow: 0 0 0 3px rgba(26, 156, 114, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }



        /* ===== CONTACT IMAGE/BENEFITS ===== */
        .contact-benefits {
            background: linear-gradient(135deg, var(--green-50), var(--white));
            padding: 2.5rem;
            border-radius: 12px;
        }

        .contact-benefits h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--green-800);
            margin-bottom: 2rem;
        }

        .benefit-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: var(--green-600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .benefit-icon i {
            color: white;
        }

        .benefit-text h4 {
            font-weight: 700;
            color: var(--green-800);
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        .benefit-text p {
            color: var(--slate);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* ===== LOCATION SECTION ===== */
        .location-section {
            background: linear-gradient(135deg, var(--green-800), var(--green-600));
            color: white;
            padding: 3rem 2rem;
            border-radius: 12px;
            margin-bottom: 4rem;
        }

        .location-section h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .location-map {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            height: 400px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-info h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .location-info p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .location-details {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid white;
        }

        .location-details p {
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }

        /* ===== BUSINESS HOURS ===== */
        .business-hours {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 4rem;
        }

        .business-hours h2 {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--green-800);
            margin-bottom: 2rem;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .hours-card {
            background: var(--bg);
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 3px solid var(--green-600);
        }

        .hours-day {
            font-weight: 700;
            color: var(--green-800);
            margin-bottom: 0.5rem;
        }

        .hours-time {
            color: var(--slate);
            font-size: 0.95rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            background: linear-gradient(135deg, var(--green-50), var(--white));
            padding: 3rem 2rem;
            border-radius: 12px;
            margin-bottom: 4rem;
        }

        .faq-section h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--green-800);
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 1.5rem;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--green-800);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--green-50);
        }

        .faq-toggle {
            font-size: 1.2rem;
            color: var(--green-600);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: var(--bg);
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--slate);
            line-height: 1.7;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {


            .contact-form-section {
                grid-template-columns: 1fr;
            }

            .location-content {
                grid-template-columns: 1fr;
            }

            .location-map {
                height: 300px;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
            }

            .hours-grid {
                grid-template-columns: repeat(2, 1fr);
            }


        }

        @media (max-width: 480px) {


            .contact-section {
                padding: 0 1rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .contact-benefits {
                padding: 1.5rem;
            }

            .location-section {
                padding: 2rem 1rem;
            }

            .business-hours {
                padding: 1.5rem;
            }

            .hours-grid {
                grid-template-columns: 1fr;
            }

            .faq-section {
                padding: 2rem 1rem;
            }
        }

