/* ============================================
   CONTACT US PAGE CSS
   ============================================ */

/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.85), rgba(255, 122, 0, 0.75));
    z-index: 1;
}

.breadcrumb-section > .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-content {
    text-align: center;
    color: #ffffff;
}

.breadcrumb-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.breadcrumb-current {
    color: #FFD700;
    font-weight: 600;
}

/* Contact Us Page Section */
.contact-us-page-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.3);
}

.contact-info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.contact-info-card-text {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-card-text a {
    color: #F28C28;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card-text a:hover {
    color: #FF7A00;
    text-decoration: underline;
}

.contact-info-card-label {
    font-size: 0.9375rem;
    color: #6B7280;
}

/* Contact Page Wrapper */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.contact-form-title .title-accent {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-subtitle {
    font-size: 1.0625rem;
    color: #6B7280;
    line-height: 1.7;
}

.contact-form-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact-form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1F2937;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    color: #1F2937;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background: #ffffff;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #F28C28;
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

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

.contact-form-submit-btn {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
}

.contact-form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.4);
}

.contact-form-submit-btn:active {
    transform: translateY(0);
}

.contact-form-submit-btn i {
    font-size: 1rem;
}

/* Locations Section */
.locations-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.locations-header {
    margin-bottom: 1rem;
}

.locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.locations-title .title-accent {
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.locations-subtitle {
    font-size: 1.0625rem;
    color: #6B7280;
    line-height: 1.7;
}

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.location-map {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.location-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #F28C28, #FF7A00);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-page-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 300px;
    }
    
    .breadcrumb-title {
        font-size: 2.5rem;
    }
    
    .breadcrumb-nav {
        font-size: 1rem;
    }
    
    .contact-us-page-section {
        padding: 4rem 0;
    }
    
    .contact-info-cards {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .contact-form-title,
    .locations-title {
        font-size: 2rem;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .location-map {
        height: 250px;
    }
}

