/* ===================================
   CONTACT PAGE - Premium Styling
   =================================== */

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/kashmir-mountains.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    /* Slightly higher opacity for mountains */
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-yellow);
}

.breadcrumb i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
    color: var(--primary-yellow);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    /* Increased padding */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    /* Increased gap */
}

/* Contact Form Area */
.contact-form-area {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(253, 183, 20, 0.1);
}

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

.contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--dark-navy);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 183, 20, 0.4);
}

.contact-form .submit-btn i {
    font-size: 18px;
}

/* Contact Info Area */
.contact-info-area {
    display: flex;
    flex-direction: column;
}

.contact-widget {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-widget h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.widget-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    /* Circle icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

.item-icon i {
    font-size: 20px;
    color: var(--white);
}

.item-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.item-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-link {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-orange);
}

/* Widget Social */
.widget-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.widget-social h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(253, 183, 20, 0.4);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--white);
}

.map-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* contact-info-area no longer needs grid layout as it contains a single widget */
}

@media (max-width: 768px) {
    .page-header {
        height: 250px;
    }

    .page-header-content h1 {
        font-size: 32px;
    }

    .page-header-content p {
        font-size: 16px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form-area,
    .contact-widget {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 26px;
    }

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

    .contact-item {
        flex-direction: row;
        /* Keep icon side-by-side on mobile if space permits, or column if very narrow */
        gap: 15px;
    }

    .map-section {
        padding: 50px 0;
    }

    .map-section h2 {
        font-size: 26px;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 22px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 26px;
    }
}