* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: #FFFFFF;
            color: #2E2E2E;
            line-height: 1.7;
            overflow-x: hidden;
        }

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

        /* Header */
        .header {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #FFFFFF 0%, #C4B7A6 100%);
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23046A38" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1.5s ease-out;
        }

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

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 300;
            color: #046A38;
            margin-bottom: 2rem;
            letter-spacing: -2px;
            position: relative;
        }

        .hero-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #B3A580, transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(1); }
            50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #2E2E2E;
            font-weight: 300;
            opacity: 0.8;
            animation: fadeInUp 1.5s ease-out 0.3s both;
        }

        /* Navigation Dots */
        .nav-dots {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #C4B7A6;
            margin: 15px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .dot.active {
            background: #046A38;
            transform: scale(1.3);
        }

        .dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 1px solid #046A38;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .dot:hover::before {
            opacity: 0.5;
        }

        /* Content Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            color: #046A38;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Contact Form Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            margin-bottom: 100px;
        }

        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .contact-info.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .contact-info h3 {
            font-size: 2rem;
            color: #046A38;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .contact-info p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .contact-info .highlight {
            color: #046A38;
            font-weight: 600;
        }

        .contact-details {
            margin-top: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 20px 0;
            border-bottom: 1px solid rgba(196, 183, 166, 0.3);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #046A38, #B3A580);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-label {
            font-size: 0.9rem;
            color: #B3A580;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .contact-value {
            font-size: 1.1rem;
            color: #2E2E2E;
            font-weight: 400;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            padding: 60px 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(4, 106, 56, 0.1);
            box-shadow: 0 20px 60px rgba(4, 106, 56, 0.1);
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .contact-form.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            font-size: 1rem;
            color: #046A38;
            margin-bottom: 10px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #C4B7A6;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Georgia', serif;
            color: #2E2E2E;
            background: #FFFFFF;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #046A38;
            box-shadow: 0 0 20px rgba(4, 106, 56, 0.1);
            transform: translateY(-2px);
        }

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

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

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #046A38, #B3A580);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Georgia', serif;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(4, 106, 56, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .submit-btn::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: all 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(135deg, #046A38, #B3A580);
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Location Section */
        .location-container {
            background: linear-gradient(180deg, #FFFFFF 0%, #C4B7A6 50%, #FFFFFF 100%);
            padding: 100px 0;
            margin: 100px 0;
            border-radius: 50px;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 80px;
        }

        .location-card {
            text-align: center;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(4, 106, 56, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease;
            box-shadow: 0 10px 40px rgba(4, 106, 56, 0.05);
        }

        .location-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(4, 106, 56, 0.15);
        }

        .location-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #046A38, #B3A580);
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            position: relative;
        }

        .location-icon::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid #B3A580;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .location-card:hover .location-icon::before {
            opacity: 0.5;
        }

        .location-title {
            font-size: 1.5rem;
            color: #046A38;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .location-address {
            color: #2E2E2E;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 15px;
        }

        .location-hours {
            color: #B3A580;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .location-map {
            margin-top: 20px;
            height: 200px;
            border-radius: 10px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .location-map.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* FAQ Section */
        .faq-intro {
            text-align: center;
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 80px;
            color: #2E2E2E;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .faq-intro.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item {
            margin-bottom: 30px;
            border: 1px solid rgba(196, 183, 166, 0.3);
            border-radius: 15px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .faq-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            padding: 25px 30px;
            background: rgba(196, 183, 166, 0.1);
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 500;
            color: #046A38;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question:hover {
            background: rgba(196, 183, 166, 0.2);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .faq-question.active::after {
            content: '−';
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 25px 30px;
            max-height: 200px;
        }

        .faq-answer p {
            color: #2E2E2E;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #046A38, #B3A580);
            color: white;
            text-align: center;
            padding: 100px 0;
            margin-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,10 40,198 190,78 10,78 160,198" fill="none" stroke="%23FFFFFF" stroke-width="1" opacity="0.1"/></svg>');
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-title {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }

        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: white;
            color: #046A38;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 80px 0;
            }

            .nav-dots {
                display: none;
            }

            .hero-title {
                font-size: 2.5rem;
            }

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

            .contact-form {
                padding: 40px 30px;
            }

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

        /* Loading Spinner */
        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 10px;
            display: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Form Validation Styles */
        .form-group input.error,
        .form-group textarea.error,
        .form-group select.error {
            border-color: #e74c3c;
            box-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }
        .required {
    color: red;
    margin-left: 2px;
}

.success-message {
    display: none;
    color: #046A38;
    background-color: #eaf7f0;
    border: 1px solid #b6dfc3;
    padding: 15px;
    margin-top: 20px;
    border-radius: 6px;
    font-weight: 500;
}

.success-message.show {
    display: block;
}

.error-message {
    display: none;
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 4px;
}

.error-message.show {
    display: block;
}

input.error,
textarea.error,
select.error {
    border: 1px solid #c0392b;
    background-color: #fff3f3;
}
