/* =========================================
   PREMIUM CONTACT SECTION
   ========================================= */

.contact-premium-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.contact-premium-container {
    display: flex;
    align-items: flex-end;
    /* Align to bottom like reference */
    gap: 0;
    /* Remove gap to bring them closer if needed, or keep small gap */
}

/* Left side cutout */
.contact-visual-col {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* Move to Left Edge */
    margin-left: -5%;
    /* Pull slightly to edge if container restricts */
}

.contact-visual-col img {
    width: 140%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin-bottom: -100px;
    /* Aligns with bottom edge/footer */
    margin-left: -35%;
    /* Pushes closer to the left edge */

    /* Remove card styling to match 'cutout' reference */
    border-radius: 0;
    box-shadow: none;
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    /* Optional soft fade at bottom if needed, but not requested */
}

/* Right side content */
.contact-form-col {
    flex: 1.2;
    padding-bottom: 40px;
    z-index: 2;
}

.contact-header {
    position: relative;
    margin-bottom: 50px;
}

.contact-bg-text {
    display: none;
}

.contact-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    margin: 0;
}

.contact-header .underline {
    width: 40px;
    height: 4px;
    background: #0f172a;
    margin-top: 10px;
}

/* Shortcuts */
.contact-shortcuts {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.shortcut-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shortcut-item i {
    color: #0d9488;
    /* Teal accent */
    font-size: 1.2rem;
    margin-top: 4px;
}

.shortcut-info span {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 4px;
}

.shortcut-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Form Styles */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
}

.premium-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
}

.premium-form input,
.premium-form textarea {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-bottom-color: #0f172a;
}

.premium-form .btn-submit {
    background: #0f172a;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.premium-form .btn-submit:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-premium-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-visual-col {
        order: 2;
    }

    .contact-visual-col img {
        margin-bottom: 0;
        max-width: 400px;
    }

    .contact-form-col {
        order: 1;
        width: 100%;
        max-width: 600px;
    }

    .contact-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-shortcuts {
        justify-content: center;
        flex-wrap: wrap;
    }

    .shortcut-item {
        flex-direction: column;
        align-items: center;
    }

    .premium-form {
        margin: 0 auto;
        text-align: left;
    }

    .premium-form .btn-submit {
        margin: 10px auto 0;
    }
}