/* Contacts Page Styles */
:root {
    --swamp-green: #4a5d23;
    --swamp-green-light: #6b7d3a;
    --swamp-green-dark: #2d3a15;
    --brown: #6b4423;
    --brown-light: #8b5a3c;
    --brown-dark: #4a2f1a;
    --accent-frog: #7a9a4a;
    --accent-drop: #5a8a7a;
    --text-light: #e8e5d8;
    --text-dark: #2d2a1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, var(--swamp-green-dark) 0%, var(--brown-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 93, 35, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107, 68, 35, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(90, 138, 122, 0.2) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: waveMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes waveMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(122, 154, 74, 0.03) 100px, rgba(122, 154, 74, 0.03) 102px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(90, 138, 122, 0.03) 100px, rgba(90, 138, 122, 0.03) 102px);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

main {
    position: relative;
    z-index: 1;
}

/* Page Hero */
.page-hero {
    padding: 4rem 20px;
    text-align: center;
    background: rgba(45, 58, 21, 0.3);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--accent-frog);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Info */
.contact-info-section {
    padding: 4rem 0;
    padding-top: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: rgba(45, 58, 21, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(122, 154, 74, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 154, 74, 0.3);
    border-color: var(--accent-frog);
}

.contact-item h3 {
    font-size: 1.5rem;
    color: var(--accent-frog);
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-frog);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: rgba(45, 58, 21, 0.3);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-frog);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(45, 58, 21, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(122, 154, 74, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-frog);
    font-weight: bold;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(45, 58, 21, 0.8);
    border: 2px solid rgba(122, 154, 74, 0.3);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-frog);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-frog);
    color: var(--text-light);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.btn:hover {
    background: var(--swamp-green-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 154, 74, 0.4);
}

.btn-submit {
    margin-top: 1rem;
}

/* Description Section */
.description-section {
    padding: 4rem 0;
    background: rgba(45, 58, 21, 0.3);
}

.description-content {
    max-width: 900px;
    margin: 0 auto;
}

.description-content h2 {
    font-size: 2rem;
    color: var(--accent-frog);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.description-content h3 {
    font-size: 1.5rem;
    color: var(--accent-frog);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .description-content h2 {
        font-size: 1.5rem;
    }

    .description-content h3 {
        font-size: 1.3rem;
    }

    .description-content p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 20px;
    }

    .map-section,
    .form-section,
    .description-section {
        padding: 2rem 0;
    }
}

