/* Base styles moved to base.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(241, 241, 233);
}

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

/* Contact Form and Map Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Contact Form */
.contact-form-container {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 35px;
}

.form-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
    font-family: Georgia, serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    padding: 15px 18px;
    border: none;
    background-color: #F1F1E9;
    border-radius: 8px;
    font-size: 15px;
    color: #170006;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: #e8e8dc;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

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

/* Submit button styles moved to button.css */

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    min-height: 600px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Info Section */
.contact-info-section {
    text-align: center;
    margin-bottom: 50px;
}

.info-title {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    font-family: Georgia, serif;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.contact-card:hover .card-info {
    color: #FFD700;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 25px;
    display: block;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.card-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-info {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section {
        padding: 60px 40px;
    }

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

    .form-title {
        font-size: 32px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 30px;
    }

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

    .contact-form-container {
        padding: 35px 30px;
    }

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

    .form-title {
        font-size: 28px;
    }

    .map-container {
        min-height: 400px;
    }

    .info-title {
        font-size: 32px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-form-container {
        padding: 30px 25px;
    }

    .form-title {
        font-size: 24px;
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Honeypot field */
.honeypot { display: none; }

/* Form message feedback */
.form-message { margin-top: 15px; padding: 15px; border-radius: 8px; display: none; }
