/* Contact Hero Section (Only Background Image) */
.contact-hero-section {
    width: 100%;
    height: 350px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Contact Main Section */
.contact-main-section {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Contact Info */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    border-color: #FACD14;
    box-shadow: 0 5px 20px rgba(240, 180, 41, 0.15);
    transform: translateY(-3px);
}

.info-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    stroke: #1e3a5f;
    stroke-width: 2;
}

.info-content {
    flex: 1;
}

.info-link {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #FACD14;
}

.info-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Right Column - Form */
.contact-form-column {
    padding-left: 20px;
}

.form-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px;
}

/* Alert Messages */
.alert-success {
    padding: 15px 20px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    padding: 15px 20px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 25px;
}

.alert-error p {
    margin: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FACD14;
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    padding: 14px 40px;
    background-color: #FACD14;
    color: #0a0a0a;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #09436A;
    color: white;
    transform: translateY(-2px);
 
}

/* Map Section */
.map-section {
    width: 100%;
    line-height: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-column {
        padding-left: 0;
    }
    
    .contact-info-column {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-info-box {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 250px;
    }
    
    .contact-main-section {
        padding: 50px 20px 60px;
    }
    
    .form-card {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        height: 200px;
    }
    
    .form-card {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 14px;
    }
    
    .map-section iframe {
        height: 300px;
    }
}