/* ==========================================
   CONTACT PAGE STYLES
========================================== */

.contact-section {
    background: linear-gradient(135deg, #D4E8D4 0%, #B8D8B8 50%, #C8E0C8 100%);
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

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

/* ==========================================
   CONTACT HEADER
========================================== */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #B85C3C;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   CONTACT FORM
========================================== */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 4px 20px rgba(184, 92, 60, 0.15);
    transform: translateY(-2px);
}

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

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

/* ==========================================
   SUBMIT BUTTON
========================================== */
.btn-submit {
    background: linear-gradient(135deg, #B85C3C 0%, #A04528 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(184, 92, 60, 0.3);
    align-self: center;
    min-width: 200px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 92, 60, 0.4);
    background: linear-gradient(135deg, #A04528 0%, #B85C3C 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ==========================================
   CONTACT INFO CARDS
========================================== */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: linear-gradient(135deg, #B85C3C 0%, #A04528 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.info-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: white;
}

.info-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-container {
        padding: 0 30px;
    }
    
    .contact-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 35px 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-header {
        margin-bottom: 30px;
    }
    
    .contact-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 16px;
        margin-bottom: 30px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .btn-submit {
        padding: 14px 30px;
        font-size: 14px;
        min-width: 160px;
        border-radius: 10px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    
    .info-card {
        padding: 20px 18px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .info-title {
        font-size: 13px;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }
    
    .info-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .form-message {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .contact-section {
        padding: 25px 0;
    }
    
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-header {
        margin-bottom: 25px;
    }
    
    .contact-title {
        font-size: 26px;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
    }
    
    .contact-subtitle {
        font-size: 13px;
    }
    
    .contact-form-wrapper {
        padding: 20px 16px;
        border-radius: 14px;
        margin-bottom: 25px;
    }
    
    .contact-form {
        gap: 12px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .form-textarea {
        min-height: 90px;
    }
    
    .btn-submit {
        padding: 12px 24px;
        font-size: 13px;
        min-width: 140px;
        border-radius: 8px;
    }
    
    .contact-info-cards {
        gap: 10px;
        margin-top: 25px;
    }
    
    .info-card {
        padding: 16px 14px;
        border-radius: 12px;
        gap: 12px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .info-title {
        font-size: 12px;
    }
    
    .info-text {
        font-size: 11px;
    }
    
    .form-message {
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
}

/* ==========================================
   ANIMATIONS
========================================== */
.contact-container {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Success/Error Message */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.5s ease-out;
}

.form-message.success {
    background: #4CAF50;
    color: white;
}

.form-message.error {
    background: #f44336;
    color: white;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}