/* Contact Page Styles */

.contact-page {
    width: 100%;
    min-height: 100vh;
    background-color: #FFFFFF;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding-top: 128px;
}

/* Hero Section */
.contact-hero {
    width: 100%;
    height: 350px;
    background-color: #6B82AC;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/contact_hero_custom.jpg');
    background-size: cover;
    background-position: center;
}

.contact-hero-content {
    max-width: 800px;
    padding: 0 24px;
    z-index: 2;
}

.contact-hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.contact-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Contact Content Section */
.contact-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9FAFB;
    position: relative;
    padding-bottom: 100px;
}



/* New Contact Info Strip */
.contact-info-strip {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin-top: -50px;
    margin-bottom: 60px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-strip-item {
    flex: 1;
    min-width: 300px;
    padding: 32px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #FFFFFF;
}

/* Colors for strip items */
.contact-strip-item.dark {
    background-color: #1F2937;
    /* Dark Slate Gray */
}

.contact-strip-item.primary {
    background-color: #6B82AC;
    /* Brand Primary */
}

.strip-icon-circle {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.strip-icon-circle svg {
    width: 24px;
    height: 24px;
}

.strip-text h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.strip-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.strip-text .cta-text {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
}

/* Contact Container */
.contact-container {
    max-width: 1200px;
    /* Restored to full width */
    width: 100%;
    padding: 0 24px;
    display: grid;
    /* Restored Grid */
    grid-template-columns: 1fr 1.5fr;
    /* Left panel, Right Form */
    gap: 40px;
    align-items: start;
    box-sizing: border-box;
}

/* Support Side Panel (Left) */
.support-side-panel {
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.support-image-wrapper {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Optional subtle shadow */
}

.support-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.support-side-panel h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.4;
    margin-bottom: 24px;
}

.btn-about-company {
    display: inline-block;
    background-color: #4B5563;
    /* Dark Gray Button */
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s;
    width: fit-content;
}

.btn-about-company:hover {
    background-color: #374151;
    /* Darker on hover */
}


/* Form Container (Right) */
.contact-form-container {
    width: calc(100% - 100px);
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #6B82AC;
    margin-bottom: 32px;
    text-align: left;
    /* Aligned left usually better for large forms, or center */
}

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

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

.form-group label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    background-color: #FAFBFD;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6B82AC;
    background-color: #FFFFFF;
}

.btn-submit {
    background-color: #6B82AC;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
    /* Align left */
    width: auto;
    margin-top: 10px;
    max-width: none;
}

.btn-submit:hover {
    background-color: #5A6E91;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-info-strip {
        margin-top: 0;
        flex-direction: column;
    }

    .contact-strip-item {
        width: 100%;
        box-sizing: border-box;
    }

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

    .contact-form-container {
        width: 100%;
        padding: 32px 24px;
    }

    .support-side-panel {
        order: 2;
    }
}

/* Mobile Spacing Optimization (< 500px) */
@media (max-width: 500px) {
    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-hero,
    .contact-content-section {
        padding: 48px 16px !important;
    }

    .contact-info-strip {
        gap: 16px !important;
    }

    .contact-container {
        gap: 24px !important;
    }

    .form-group {
        margin-bottom: 12px !important;
    }

    .strip-text h3 {
        font-size: 13px;
        margin-bottom: 8px !important;
    }

    .strip-text p {
        font-size: 14px;
        margin-bottom: 12px !important;
    }

    .strip-text p:last-child {
        margin-bottom: 0 !important;
    }
}