/* ============================================
   CONTACT PAGE
   Based on Figma Design (node 4019-18705)
   ============================================ */

/* ============================================
   HERO BANNER
   ============================================ */

.contact-hero {
    margin: var(--section-margin);




    background: linear-gradient(rgba(0, 85, 150, 0.75), rgba(0, 85, 150, 0.75)), 
    url(../images/contact-hero-bg.jpg);
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    border-radius: 5px;
    background-color: var(--primary-blue);
}

.contact-hero .hero-overlay {
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.contact-breadcrumb {
    padding: 16px 0;
    background: #fff;
}

.contact-breadcrumb .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-breadcrumb a,
.contact-breadcrumb .current {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.contact-breadcrumb a {
    color: #525252;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-breadcrumb a:hover {
    color: #0065B0;
}

.contact-breadcrumb .current {
    color: #0065B0;
}

.contact-breadcrumb .separator {
    color: #525252;
    font-size: 10px;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */

.contact-main {
    background: #fff;
    padding: 48px 0 20px;
}

.contact-container {
    /* max-width: 1440px; */
    margin: var(--section-margin);
    /* padding: 0 100px; */
}

/* ============================================
   TWO-COLUMN GRID
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

/* ============================================
   LEFT COLUMN: ADRESSES
   ============================================ */

.contact-info-column {
    background: #e8e8e8;
    border-radius: 16px;
    padding: 32px;
}

.contact-info-column h2 {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 24px 0;
}

/* Info Cards */
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #292929;
    margin: 0 0 16px 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0065B0;
    flex-shrink: 0;
}

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

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-content .label {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 14px;
    color: #666;
}

.info-content .value {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #292929;
}

.info-content a {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 14px;
    color: #0065B0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-content a:hover {
    color: #004a85;
    text-decoration: underline;
}

/* Hours Card */
.hours-card {
    background: #fff;
}

.hours-row {
    display: flex;
    gap: 32px;
}

.hours-item {
    flex: 1;
}

.hours-item h4 {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #292929;
    margin: 0 0 8px 0;
}

.hours-item p {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 14px;
    color: #525252;
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: #0065B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #004a85;
    transform: translateY(-2px);
}

.social-links a i {
    font-size: 18px;
}

/* ============================================
   RIGHT COLUMN: FORM
   ============================================ */

.contact-form-column {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
}

.contact-form-column h2 {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #292929;
    margin: 0 0 24px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #292929;
}

.form-group .required {
    color: #C21D47;
}

.form-group input,
.form-group textarea {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0065B0;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 101, 176, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #292929;
    background: #F5C518;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #e0b000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
}

.btn-submit i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Form Status Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: 'Sansation', 'Helvetica', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.form-message i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    color: #155724;
}

.form-message.success i {
    color: #28a745;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #dc3545;
    color: #721c24;
}

.form-message.error i {
    color: #dc3545;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    display: block;
    width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .contact-breadcrumb .container {
        padding: 0 60px;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        height: 200px;
    }

    .contact-hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-container {
        padding: 0 40px;
    }

    .contact-breadcrumb .container {
        padding: 0 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-column h2,
    .contact-form-column h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 150px;
    }

    .contact-hero h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .contact-main {
        padding: 32px 0 30px;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-breadcrumb .container {
        padding: 0 20px;
    }

    .contact-info-column,
    .contact-form-column {
        padding: 24px;
    }

    .hours-row {
        flex-direction: column;
        gap: 16px;
    }

    .social-links {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .contact-hero {
        height: 120px;
    }

    .contact-hero h1 {
        font-size: 24px;
    }

    .contact-info-column h2,
    .contact-form-column h2 {
        font-size: 24px;
    }

    .info-card {
        padding: 16px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a i {
        font-size: 16px;
    }

    .btn-submit {
        width: 100%;
    }
}