/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Section 1 Start - Hero Section */
.contact-hero-section {
    position: relative;
    padding: 100px 20px 80px;
    background-image: url('../img/downloaded/Contact.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #f0b429;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    color: #f0b429;
    font-size: 14px;
    font-weight: 600;
}
/* Section 1 End */

/* Section 2 Start - Contact Main Section */
.contact-main-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Column - Info Boxes */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    position: relative;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.85);
    z-index: 1;
}

.box-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-label {
    font-size: 16px;
    color: #f0b429;
    margin-bottom: 10px;
    font-weight: 500;
}

.box-value {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.box-value:hover {
    color: #f0b429;
}

/* Right Column - Form */
.contact-form-column {
    background-color: #fef3c7;
    padding: 40px;
    border-radius: 8px;
}

.form-wrapper {
    width: 100%;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3c72;
    margin: 0 0 30px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.alert-error p {
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background-color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    color: #000;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background-color:#122B54;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-submit:hover {
    background: #fcfdfd;
    border: 2px solid black;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}
/* Section 2 End */

/* Section 3 Start - Map Section */
.map-section {
    padding: 0 0 80px;
    background-color: #ffffff;
}

.map-container {
    max-width: 100%;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
/* Section 3 End */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-column {
        flex-direction: row;
    }
    
    .info-box {
        flex: 1;
        height: 180px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .contact-form-column {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .contact-main-section {
        padding: 60px 20px;
    }
    
    .contact-info-column {
        flex-direction: column;
    }
    
    .info-box {
        height: 150px;
    }
    
    .box-content {
        padding: 25px;
    }
    
    .box-label {
        font-size: 14px;
    }
    
    .box-value {
        font-size: 18px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .contact-form-column {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .info-box {
        height: 130px;
    }
    
    .box-content {
        padding: 20px;
    }
    
    .box-label {
        font-size: 13px;
    }
    
    .box-value {
        font-size: 16px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .contact-form-column {
        padding: 20px;
    }
}