﻿/* ====================================
   Contact Us Hero Section
   ==================================== */
.contact_us_hero_section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5faff 0%, #e8f4ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact_us_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a7cc4, #4fc3f7);
}

.contact_us_hero_content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_us_main_title {
    color: #1a1a1a;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact_us_hero_divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #0a7cc4, #4fc3f7);
    margin: 20px auto;
    border-radius: 2px;
}

.contact_us_hero_subtitle {
    color: #0a7cc4;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact_us_tagline {
    color: #666;
    font-size: 18px;
    font-style: italic;
    margin-top: 10px;
}

/* ====================================
   Contact Us Intro Section
   ==================================== */
.contact_us_intro_section {
    padding: 80px 0;
    background: #ffffff;
}

.contact_us_intro_content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_us_intro_header {
    text-align: center;
    margin-bottom: 40px;
}

.contact_us_intro_title {
    color: #0a7cc4;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_us_intro_subtitle {
    color: #333333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact_us_single_blue_line {
    width: 80px;
    height: 2px;
    background: #0a7cc4;
    margin: 0 auto;
}

.contact_us_intro_text p {
    color: #555555;
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ====================================
   Contact Us Main Section
   ==================================== */
.contact_us_main_section {
    padding: 80px 0;
    background: #f9fbfd;
}

.contact_us_main_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Details Section */
.contact_us_details_section {
    padding: 10px 0;
}

.contact_us_details_header {
    margin-bottom: 40px;
}

.contact_us_details_header h2 {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_us_small_blue_line {
    width: 60px;
    height: 2px;
    background: #0a7cc4;
}

.contact_us_info_container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact_us_info_card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #e8f2ff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact_us_info_card:hover {
    border-color: #0a7cc4;
}

.contact_us_info_icon {
    width: 55px;
    height: 55px;
    background: #f0f8ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a7cc4;
    font-size: 22px;
    flex-shrink: 0;
    border: 2px solid #e3f2fd;
}

.contact_us_info_content h3 {
    color: #0a7cc4;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact_us_info_content p {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact_us_hours_item {
    margin-bottom: 10px;
}

.contact_us_hours_item:last-child {
    margin-bottom: 0;
}

.contact_us_hours_day {
    color: #333333;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.contact_us_hours_time {
    color: #555555;
    font-size: 15px;
}

.contact_us_phone_number {
    color: #555555;
    font-size: 15px;
    margin-bottom: 8px;
}

.contact_us_phone_number:last-child {
    margin-bottom: 0;
}

.contact_us_email {
    color: #0a7cc4;
    font-weight: 600;
    font-size: 15px;
}

/* Contact Form Section */
.contact_us_form_section {
    padding: 10px 0;
}

.contact_us_form_container {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f2ff;
}

.contact_us_form_header {
    margin-bottom: 30px;
}

.contact_us_form_header h2 {
    color: #1a1a1a;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_us_form_header p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 15px;
}

.contact_us_form_wrapper {
    width: 100%;
}

.contact_us_form_group {
    margin-bottom: 22px;
    position: relative;
}

.contact_us_form_group label {
    display: block;
    color: #444444;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Remove the asterisk from labels since they're in the placeholder */
.contact_us_form_group label::after {
    display: none;
}

.contact_us_form_control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1e3ff;
    border-radius: 8px;
    font-size: 15px;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.contact_us_form_control:focus {
    outline: none;
    border-color: #0a7cc4;
    box-shadow: 0 0 0 3px rgba(10, 124, 196, 0.1);
}

.contact_us_form_control::placeholder {
    color: #666666;
    font-size: 14px;
    font-weight: 400;
}

textarea.contact_us_form_control {
    resize: vertical;
    min-height: 130px;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.5;
}

.contact_us_form_group.contact_us_focused label {
    color: #0a7cc4;
}

.contact_us_submit_btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0a7cc4, #3db3e3);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.contact_us_submit_btn:hover {
    background: linear-gradient(135deg, #095ea8, #2da0d1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 124, 196, 0.2);
}

.contact_us_submit_btn:active {
    transform: translateY(0);
}

/* ====================================
   Contact Us Map Section
   ==================================== */
.contact_us_map_section {
    padding: 80px 0;
    background: #ffffff;
}

.contact_us_map_header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.contact_us_map_header h2 {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact_us_map_header p {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
}

.contact_us_map_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_us_map_wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f2ff;
}

.contact_us_map_wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* ====================================
   Animation Classes
   ==================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1200px) {
    .contact_us_main_grid {
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .contact_us_main_grid {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 700px;
    }
    
    .contact_us_main_title {
        font-size: 38px;
    }
    
    .contact_us_hero_subtitle {
        font-size: 24px;
    }
    
    .contact_us_intro_title {
        font-size: 28px;
    }
    
    .contact_us_intro_subtitle {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .contact_us_hero_section {
        padding: 100px 0 60px;
    }
    
    .contact_us_main_title {
        font-size: 32px;
    }
    
    .contact_us_hero_subtitle {
        font-size: 22px;
    }
    
    .contact_us_tagline {
        font-size: 16px;
    }
    
    .contact_us_intro_section {
        padding: 60px 0;
    }
    
    .contact_us_main_section {
        padding: 60px 0;
    }
    
    .contact_us_map_section {
        padding: 60px 0;
    }
    
    .contact_us_intro_title {
        font-size: 26px;
    }
    
    .contact_us_intro_subtitle {
        font-size: 20px;
    }
    
    .contact_us_intro_text p {
        font-size: 16px;
    }
    
    .contact_us_details_header h2 {
        font-size: 24px;
    }
    
    .contact_us_form_header h2 {
        font-size: 24px;
    }
    
    .contact_us_map_header h2 {
        font-size: 28px;
    }
    
    .contact_us_form_container {
        padding: 25px;
    }
    
    .contact_us_info_card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact_us_info_icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .contact_us_main_title {
        font-size: 28px;
    }
    
    .contact_us_hero_subtitle {
        font-size: 20px;
    }
    
    .contact_us_intro_title {
        font-size: 24px;
    }
    
    .contact_us_intro_subtitle {
        font-size: 18px;
    }
    
    .contact_us_intro_text p {
        font-size: 15px;
        text-align: left;
    }
    
    .contact_us_details_header h2 {
        font-size: 22px;
    }
    
    .contact_us_form_header h2 {
        font-size: 22px;
    }
    
    .contact_us_map_header h2 {
        font-size: 24px;
    }
    
    .contact_us_form_container {
        padding: 20px;
    }
    
    .contact_us_info_content h3 {
        font-size: 16px;
    }
    
    .contact_us_info_content p,
    .contact_us_hours_time,
    .contact_us_phone_number,
    .contact_us_email {
        font-size: 14px;
    }
    
    .contact_us_map_wrapper iframe {
        height: 350px;
    }
}