﻿:root {
    --primary: #2a6e36;
    --secondary: #f39c12;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    padding-top: 80px; /* Account for fixed header */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 100px;
        margin-right: 10px;
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 25px;
    }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

            nav ul li a:hover, nav ul li a.active {
                color: var(--primary);
            }

.language-toggle {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

    .language-toggle:hover {
        background: #1f5129;
    }

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1200x400/2a6e36/white?text=Contact+Us') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

/* Breadcrumb */
.breadcrumb {
    background: var(--light);
    padding: 15px 0;
    margin-bottom: 40px;
}

.breadcrumb-content {
    display: flex;
    list-style: none;
}

    .breadcrumb-content li {
        margin-right: 10px;
        font-size: 0.9rem;
    }

        .breadcrumb-content li:after {
            content: "/";
            margin-left: 10px;
            color: #999;
        }

        .breadcrumb-content li:last-child:after {
            content: "";
        }

    .breadcrumb-content a {
        color: var(--primary);
        text-decoration: none;
    }

        .breadcrumb-content a:hover {
            text-decoration: underline;
        }

/* Contact Content */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Contact Methods */
.contact-methods {
    margin: 40px 0;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
    }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

/* Submit Button */
.submit-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 4px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background: #e67e22;
    }

/* Map Section */
.map-section {
    margin: 60px 0;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--light);
    padding: 70px 0;
    margin: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

    .faq-question i {
        transition: transform 0.3s;
    }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--dark);
        max-width: 700px;
        margin: 0 auto;
    }

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

    .footer-column h3 {
        color: var(--secondary);
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .footer-column p, .footer-column a {
        margin-bottom: 10px;
        color: #ccc;
        text-decoration: none;
        display: block;
    }

        .footer-column a:hover {
            color: var(--white);
        }

.social-icons {
    display: flex;
    margin-top: 15px;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #444;
        border-radius: 50%;
        margin-right: 10px;
        transition: background 0.3s;
    }

        .social-icons a:hover {
            background: var(--primary);
        }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-card {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 15px;
    }
}