/* contact-style.css */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/contact-bg.png') no-repeat center center;
    opacity: 0.3;
    background-size: cover;
    filter: blur(2px);
    z-index: -1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero>* {
    position: relative;
    z-index: 1;
}



.contact-hero .section-headline {
    font-weight: 800;
    font-size: calc(2.5rem + 1.5vw);
    line-height: 1.1;
    color: var(--text-dark);
}

.contact-form-section .section-headline::before{
position: absolute;
content: "";
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 2px;
background-color: rgba(0, 75, 202, 1);
}

.contact-form-section .section-headline{
    margin: auto;
    width: fit-content;
}

.contact-form-section .section-headline{
position: relative;
}




.contact-hero-content {
    background: transparent;
    box-shadow: none;
}

.hero-subtitle {
    max-width: 820px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #424656;
    font-weight: 500;
}

.btn-visit-help {
    background-color: transparent;
    color: #475569;
    border: 2px solid #C2C6D9;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-visit-help:hover {
    background-color: #E2E8F0;
    color: var(--text-dark);
}

/* Updated Contact Cards v2 */
.container-large {
    max-width: 1320px;
}

.info-card-v2 {
    border-radius: 48px;
    transition: all 0.3s ease;
}

.peach-card {
    background-color: #F8E4DD;
    /* Light peach */
}

.vibrant-blue-card {
    background-color: #0061FF;
    /* Vibrant blue */
}

.card-icon-circle-v2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-brown {
    background-color: #C66148;
    /* Terracotta brown */
}

.card-title-v2 {
   
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.card-text-v2 {
  
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
}

.btn-card-v2-brown {
    display: inline-block;
    padding: 14px 36px;
    background-color: #C66148;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-card-v2-brown:hover {
    background-color: #a85a42;
    color: #ffffff;
}

.btn-card-v2-white {
    display: inline-block;
    padding: 14px 36px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-card-v2-white:hover {
    background-color: #f8fafc;
}

/* Investor Container v2 */
.investor-container-v2 {
    background-color: #EEF1F8;
    /* Light lavender-gray tint */
    border-radius: 64px;
}

.investor-title-v2 {
   
    font-weight: 800;
    font-size: calc(2rem + 1vw);
    line-height: 1.1;
    color: #1A202C;
}

.illustration-shadow-card {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.rounded-luxury-card {
    position: relative;
    border-radius: 40px !important;
    background: #fff;
}

.card-wrapper{
    position: relative;

  width: 280px;
    height: 280px;
}

.card-outline{
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 75, 202, 0.1);
    border-radius: 40px;
}



.shadow-fancy {
    box-shadow: 0 40px 80px -20px rgba(20, 88, 217, 0.15);
}

.pill-decoration {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #F1F5F9;
    padding: 12px 18px;
    border-radius: 99px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pill-line {
    width: 24px;
    height: 4px;
    background-color: #B2C3FF;
    border-radius: 2px;
}

.pill-line:last-child {
    width: 16px;
}

.border-top-luxury {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.investor-feature-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748B;
}

/* Contact Form */
.contact-form-section {
    background-color: #F1F5F9;
}

.contact-form-card {
    background-color: #F8FAFC;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(20, 88, 217, 0.03);
}

.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid #E2E8F0;
    background-color: #F8FAFC;
    transition: all 0.2s ease;
}

.get-in-touch-label {
    color: #0066FF;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.subtitle-form {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

.contact-form-container-v2 {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 48px;
}

.form-label-v2 {
    display: block;
    font-weight: 700;
    font-size: 0.825rem;
    color: #424656;
    margin-bottom: 8px;
}

.text-optional {
    color: #94A3B8;
    font-weight: 400;
    font-size: 0.8rem;
    margin-left: 4px;
}

.form-control-v2,
.form-select-v2 {
    width: 100%;
    padding: 16px 20px;
    background-color: #E1E1EE;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    font-size: 0.95rem;
    color: #737687;
    transition: all 0.2s ease;
}

textarea.form-control-v2 {
    border-radius: 48px;
}


.form-control-v2::placeholder {
    color: #737687;
}

.form-control-v2:focus {
    background-color: #E2E8F0;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.05);
}

/* Creator Ambassador Section v2 */
.creator-container-v2 {
    background-color: #FEF9E7;
    /* Light pastel cream-yellow */
    border-radius: 60px;
    padding: 80px 100px !important;
}

.creator-title-v2 {

    font-weight: 700;
    font-size: 56px;
    line-height: 1.1;
    color: #191B24;
    letter-spacing: -1.5px;
}

.creator-text-v2 {
  
    font-size: 18px;
    line-height: 1.65;
    color: #555555;
    max-width: 680px;
}

.btn-ambassador {
    background-color: #E1A95F;
    color: #ffffff;
    border-radius: 9999px;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 40px !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-ambassador:hover {
    background-color: #d19550;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(225, 166, 97, 0.2);
}

.btn-learn-more-dark {
    background-color: #1F1717;
    color: #ffffff;
    border-radius: 9999px;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 40px !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-learn-more-dark:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.investor-feature-item-alt {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #1F1F1F;
}

.investor-feature-item-alt i {
    color:#AF8B39 ;
}

.feature-check-circle {
    width: 20px;
    height: 20px;
    background-color: #E1A661;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.feature-check-circle svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
    stroke-width: 3.5;
}

.illustration-shadow-card.white-box {
    background-color: #ffffff;
    border-radius: 50px !important;
    width: 280px;
    height: 280px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.response-time-info {
    gap: 10px;
}
.response-time-info i {
    color: var(--primary-blue);
    font-weight: 900;
}

.cta-footer-list{

    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-footer-list li {
    display:flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

/* Contact page responsive hardening */
@media (max-width: 991.98px) {
    .contact-hero {
        min-height: auto;
        padding: clamp(92px, 14vw, 130px) 0 clamp(52px, 9vw, 86px);
    }

    .contact-hero .section-headline,
    .contact-form-section .section-headline,
    .investor-title-v2,
    .creator-title-v2,
    .cta-heading {
        max-width: 100%;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: balance;
    }

    .contact-hero .section-headline {
        font-size: clamp(2.35rem, 7vw, 4rem);
        line-height: 1.08;
    }

    .hero-subtitle {
        max-width: 680px;
        font-size: clamp(1rem, 2vw, 1.12rem);
    }

    .info-card-v2,
    .investor-container-v2,
    .creator-container-v2,
    .contact-form-container-v2 {
        border-radius: 36px;
    }

    .info-card-v2,
    .contact-hero-card,
    .investor-container-v2,
    .creator-container-v2,
    .contact-form-container-v2 {
        padding: clamp(2rem, 5vw, 3rem) !important;
    }

    .investor-section .row,
    .creator-ambassador-section .row {
        --bs-gutter-y: 2rem;
        text-align: center;
    }

    .investor-title-v2,
    .creator-title-v2 {
        font-size: clamp(2rem, 5vw, 3rem);
        letter-spacing: -0.04em;
    }

    .investor-text-v2,
    .creator-text-v2 {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .investor-bottom-row {
        justify-content: center !important;
        gap: 1rem 1.5rem !important;
    }

    .card-wrapper,
    .illustration-shadow-card,
    .illustration-shadow-card.white-box {
        width: clamp(210px, 42vw, 280px);
        height: clamp(210px, 42vw, 280px);
        margin-left: auto;
        margin-right: auto;
    }

    .illustration-shadow-card svg {
        max-width: 46%;
        height: auto;
    }

    .illustration-shadow-card.white-box svg {
        max-width: 76%;
    }

    .contact-form-section {
        padding-top: clamp(3rem, 8vw, 5rem) !important;
        padding-bottom: clamp(3rem, 8vw, 5rem) !important;
    }

    .contact-form-section > .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .form-control-v2,
    .form-select-v2 {
        min-height: 54px;
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    textarea.form-control-v2 {
        min-height: 150px;
        border-radius: 30px;
    }

    .cta-card {
        min-height: 0;
    }


    .cta-profile-image {
        width: 100%;
        height: clamp(260px, 46vw, 380px);
        min-height: 0;
        object-fit: contain;
        object-position: center bottom;
        border-radius: 24px 24px 0 0;
    }

    .cta-content-col {
        margin-left: 0 !important;
        padding: clamp(2rem, 5vw, 3rem) !important;
        text-align: center;
        align-items: center;
    }

    .cta-footer-list {
        width: min(100%, 620px);
        margin-left: auto;
        margin-right: auto;
        gap: 1.25rem;
    }

    .cta-footer-list li {
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        line-height: 1.55;
    }

    .contact-form-section iframe,
    .contact-form-section .map iframe,
    .contact-form-section .map-wrapper iframe,
    .contact-map iframe,
    .contact-map-wrapper iframe {
        width: 100% !important;
        max-width: 100%;
        height: min(42vw, 350px) !important;
        max-height: 350px;
        display: block;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 88px 0 46px;
    }

    .contact-hero-card,
    .info-card-v2,
    .investor-container-v2,
    .creator-container-v2,
    .contact-form-container-v2 {
        padding: 1.5rem !important;
        border-radius: 28px;
    }

    .contact-hero .section-headline {
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 1.12;
        margin-bottom: 1rem !important;
    }

    .contact-hero br,
    .investor-title-v2 br,
    .creator-title-v2 br {
        display: none;
    }

    .hero-subtitle,
    .subtitle-form {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .contact-hero .d-flex,
    .creator-container-v2 .d-flex {
        width: 100%;
    }

    .contact-hero .btn-join-waitlist,
    .contact-hero .btn-visit-help,
    .btn-ambassador,
    .btn-learn-more-dark,
    .contact-form-section .btn-join-waitlist,
    .btn-cta-join {
        width: 100%;
        justify-content: center;
        min-width: 0;
    }

    .info-grid-section,
    .investor-section,
    .creator-ambassador-section {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }

    .info-card-v2 {
        text-align: center;
    }

    .card-icon-circle-v2 {
        width: 54px;
        height: 54px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-title-v2 {
        font-size: 1.35rem;
    }

    .card-text-v2 {
        font-size: 0.98rem;
        margin-bottom: 1.75rem !important;
    }

    .investor-title-v2,
    .creator-title-v2,
    .contact-form-section .section-headline {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        line-height: 1.14;
        letter-spacing: -0.03em;
    }

    .investor-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1.5rem !important;
    }

    .investor-feature-item,
    .investor-feature-item-alt {
        width: 100%;
        align-items: flex-start;
        font-size: 0.95rem;
    }

    .card-wrapper,
    .illustration-shadow-card,
    .illustration-shadow-card.white-box {
        width: min(100%, 220px);
        height: 220px;
    }

    .card-outline {
        top: 12px;
        left: -12px;
        border-radius: 32px;
    }

    .pill-decoration {
        right: 20px;
        bottom: 20px;
        padding: 10px 14px;
    }

    .contact-form-section .row.g-4 {
        --bs-gutter-y: 1rem;
    }

    .form-control-v2,
    .form-select-v2 {
        min-height: 50px;
        padding: 13px 16px;
        font-size: 0.92rem;
    }

    textarea.form-control-v2 {
        min-height: 138px;
        border-radius: 24px;
    }

    .form-label-v2 {
        font-size: 0.78rem;
    }

    .response-time-info {
        align-items: flex-start !important;
        text-align: left;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 3.5rem 0;
    }

    .cta-image-col,
    .cta-profile-image {
        height: 260px;
        min-height: 260px;
    }

    .cta-content-col {
        padding: 1.75rem 1.25rem 2rem !important;
    }

    .cta-heading {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
        line-height: 1.15;
    }

    .cta-footer-list li {
        font-size: 0.92rem;
    }

    .cta-footer-list li img {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .contact-form-section iframe,
    .contact-form-section .map iframe,
    .contact-form-section .map-wrapper iframe,
    .contact-map iframe,
    .contact-map-wrapper iframe {
        height: 300px !important;
        max-height: 350px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero .container,
    .info-grid-section .container,
    .investor-section .container,
    .creator-ambassador-section .container,
    .contact-form-section .container,
    .cta-section .container {
        --bs-gutter-x: 1.25rem;
    }

    .contact-form-container-v2 {
        box-shadow: 0 24px 52px -28px rgba(20, 88, 217, 0.25);
    }

    .contact-form-section .section-headline {
        width: 100%;
    }

    .contact-form-section .section-headline::before {
        width: min(100%, 220px);
        margin-left: auto;
        margin-right: auto;
    }

    .cta-footer-list li {
        flex-direction: row;
    }
}
