*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background: #071217; */
    color: #fff;
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   PAGE BANNER SECTION
============================================================ */

.page-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

/* Background image */
.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.52) saturate(0.75);
}

/* Bottom-to-top dark overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgb(9, 30, 36) 0%,
            rgba(9, 30, 36, 0.836) 35%,
            rgba(9, 30, 36, 0.18) 65%,
            rgba(9, 30, 36, 0.08) 100%);
    mix-blend-mode: normal;
}

/* ── Content — bottom left ── */
.banner-content {
    position: absolute;
    bottom: 13vh;
    left: 80px;
    z-index: 10;
    max-width: 680px;
}

.banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.banner-eyebrow-line {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4ecdc4);
    flex-shrink: 0;
}

.banner-eyebrow-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.32em;
    color: #4ecdc4;
    text-transform: uppercase;
}

.banner-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.18;
    color: #ffffff;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(20px);
    animation: bannerTitleIn 0.9s ease 0.2s forwards;
}

@keyframes bannerTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Right side — vertical scroll indicator ── */
.banner-scroll-indicator {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin-bottom: 10px;
    animation: lineFlicker 2.8s ease-in-out infinite;
}

@keyframes lineFlicker {
    0% {
        opacity: 0;
        transform: scaleY(0.3);
        transform-origin: top;
    }

    30% {
        opacity: 1;
        transform: scaleY(1);
    }

    70% {
        opacity: 1;
        transform: scaleY(1);
    }

    100% {
        opacity: 0;
        transform: scaleY(0.3);
        transform-origin: bottom;
    }
}

.scroll-text {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    animation: scrollTextFade 2.8s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes scrollTextFade {
    0% {
        opacity: 0;
        transform: rotate(180deg) translateY(-8px);
    }

    25% {
        opacity: 1;
        transform: rotate(180deg) translateY(0);
    }

    75% {
        opacity: 1;
        transform: rotate(180deg) translateY(0);
    }

    100% {
        opacity: 0;
        transform: rotate(180deg) translateY(8px);
    }
}

/* ── Placeholder content below banner ── */
.page-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 42px);
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.06em;
    border-top: 1px solid rgba(78, 205, 196, 0.08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .banner-content {
        left: 48px;
        max-width: calc(100% - 80px);
    }
}

@media (max-width: 600px) {
    .banner-content {
        left: 24px;
        right: 40px;
        max-width: 100%;
        bottom: 12vh;
    }

    .banner-scroll-indicator {
        right: 8px;
    }

    .scroll-line {
        height: 56px;
    }
}


/* ============================================================
   ABOUT SECTION 01 — BASE (mobile-first)
============================================================ */

.ab--sec01 {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.ab--sec01--div01 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ab--sec01--div02 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0% 5% 0% 5%;
}

.ab--sec01--div03 {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ab--sec01--headdiv {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: -1rem;
    gap: 16px;
}

.ab--sec01--headleftline {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4ecdc4);
    flex-shrink: 0;
}

.ab--sec01--headrightline {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to left, transparent, #4ecdc4);
    flex-shrink: 0;
}

.ab--sec01--headmidtext {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: #4ecdc4;
    text-transform: uppercase;
    margin: 0;
}

.ab--sec01--heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* ── div04: image + text block — stacked on mobile ── */
.ab--sec01--div04 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.ab--sec01--leftdiv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ab--sec01--leftdivimg {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.ab--sec01--leftdivp {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    text-align: justify;
    margin-top: 0.75rem;
}

.ab--sec01--centdiv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 198, 255, 0.15);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    text-align: justify;
    margin: 1rem 0;
}

.ab--sec01--rightdiv {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ab--sec01--rightdivp {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 0.75rem;
}

.ab--sec01--rightdivimg {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* ── div05: cards grid — mobile first ── */
.ab--sec01--div05 {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.ab--sec01--card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 2rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    position: relative;
}

.ab--sec01--card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* border-radius: 8px; */
    padding: 2px;
    background: linear-gradient(57deg, rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ab--sec01--card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ab--sec01--cardimg {
    width: 25%;
    height: auto;
    opacity: 0.8;
}

.ab--sec01--cardtext {
    font-family: 'Jost', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 15px;
    font-weight: 400;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* ── max 719px (small mobile) ── */
@media only screen and (max-width: 719px) {

    .ab--sec01--div02 {
        padding: 0 1rem;
    }

    .ab--sec01--div05 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }

    /* 5th card: center it alone on its row */
    .ab--sec01--card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: 50%;
        margin: 0 auto;
    }

    .ab--sec01--headleftline,
    .ab--sec01--headrightline {
        width: 40px;
    }

    .ab--sec01--heading {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }

    .ab--sec01--leftdivp,
    .ab--sec01--rightdivp,
    .ab--sec01--centdiv {
        font-size: 13px;
        line-height: 1.75;
    }
}

/* ── 720px – 850px (tablet portrait) ── */
@media only screen and (min-width: 720px) and (max-width: 850px) {

    .ab--sec01--div02 {
        padding: 0 2rem;
    }

    .ab--sec01--heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .ab--sec01--div04 {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .ab--sec01--leftdiv,
    .ab--sec01--rightdiv {
        width: 100%;
    }

    .ab--sec01--centdiv {
        position: static;
        width: 100%;
        height: auto;
        font-size: 0.85rem;
        color: white;
    }

    .ab--sec01--leftdivp,
    .ab--sec01--rightdivp {
        font-size: 0.85rem;
    }

    /* ── Cards: 3 per row, last 2 centered ── */
    .ab--sec01--div05 {
        grid-template-columns: repeat(6, 1fr);
        padding: 0 2rem;
        gap: 1rem;
    }

    /* First 3 cards span 2 columns each → fills 6 columns */
    .ab--sec01--card:nth-child(1) {
        grid-column: 1 / 3;
    }

    .ab--sec01--card:nth-child(2) {
        grid-column: 3 / 5;
    }

    .ab--sec01--card:nth-child(3) {
        grid-column: 5 / 7;
    }

    /* Last 2 cards: centered in row 2 */
    .ab--sec01--card:nth-child(4) {
        grid-column: 2 / 4;
    }

    .ab--sec01--card:nth-child(5) {
        grid-column: 4 / 6;
    }

    .ab--sec01--headleftline,
    .ab--sec01--headrightline {
        width: 60px;
    }
}

/* ── 851px – 1050px ── */
@media only screen and (min-width: 851px) and (max-width: 1050px) {

    .ab--sec01--div04 {
        width: 100%;
        max-width: 1000px;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
    }

    .ab--sec01--heading {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 2.5rem;
        color: white;
        margin-bottom: 2rem;
        text-align: center;
    }

    .ab--sec01--centdiv {
        width: 50%;
        height: 27%;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 198, 255, 0.15);
        border-radius: 0.5rem;
        padding: 0.5rem;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        font-family: 'Jost', sans-serif;
        font-size: 0.7rem;
        text-align: justify;
        color: white;
    }

    .ab--sec01--leftdivp {
        font-family: 'Jost', sans-serif;
        color: white;
        text-align: justify;
        font-size: 0.7rem;
        margin-right: 1rem;
        padding-right: 1rem;
        padding-top: 4rem;
    }

    .ab--sec01--rightdivp {
        font-family: 'Jost', sans-serif;
        color: white;
        text-align: justify;
        font-size: 0.7rem;
        margin-left: 1rem;
        padding-left: 1rem;
        padding-bottom: 5rem;
    }

    .ab--sec01--div05 {
        grid-template-columns: repeat(5, 1fr);
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .ab--sec01--headleftline,
    .ab--sec01--headrightline {
        width: 80px;
    }
}

/* ── 1051px – 1400px ── */
@media only screen and (min-width: 1051px) and (max-width: 1400px) {

    .ab--sec01--div04 {
        width: auto;
        max-width: 1050px;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .ab--sec01--heading {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 2.5rem;
        color: white;
        margin-bottom: 2rem;
        text-align: center;
    }

    .ab--sec01--centdiv {
        width: 50%;
        height: 32%;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 198, 255, 0.15);
        border-radius: 0.5rem;
        padding: 0.5rem;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        font-family: 'Jost', sans-serif;
        font-size: 0.9rem;
        text-align: justify;
        color: white;
        line-height: 1.5;
    }

    .ab--sec01--leftdivp {
        font-family: 'Jost', sans-serif;
        color: white;
        text-align: justify;
        font-size: 0.9rem;
        margin-top: 7rem;
        margin-right: 1rem;
        padding-right: 1rem;
    }

    .ab--sec01--rightdivp {
        font-family: 'Jost', sans-serif;
        color: white;
        text-align: justify;
        font-size: 0.9rem;
        margin-bottom: 8rem;
        margin-left: 1rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .ab--sec01--div05 {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1050px;
        padding: 0 1rem;
        gap: 1rem;
    }
}

/* ── 1401px and above ── */
@media only screen and (min-width: 1401px) {

    .ab--sec01 {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ab--sec01--div01 {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ab--sec01--div02 {
        width: auto;
        max-width: 1400px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0% 5% 0% 5%;
    }

    .ab--sec01--div03 {
        width: auto;
        max-width: 1400px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ab--sec01--headdiv {
        width: auto;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: -1rem;
        gap: 16px;
    }

    .ab--sec01--headleftline {
        display: block;
        width: 100px;
        height: 1px;
        background: linear-gradient(to right, transparent, #4ecdc4);
        flex-shrink: 0;
    }

    .ab--sec01--headmidtext {
        font-family: 'Jost', sans-serif;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.35em;
        color: #4ecdc4;
        text-transform: uppercase;
        margin: 0;
    }

    .ab--sec01--headrightline {
        display: block;
        width: 100px;
        height: 1px;
        background: linear-gradient(to left, transparent, #4ecdc4);
        flex-shrink: 0;
    }

    .ab--sec01--heading {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 2.5rem;
        color: white;
        margin-bottom: 2rem;
        text-align: center;
    }

    .ab--sec01--div04 {
        width: auto;
        max-width: 1400px;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .ab--sec01--centdiv {
        width: 40%;
        max-width: 1400px;
        height: 30%;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 198, 255, 0.15);
        border-radius: 0.5rem;
        padding: 0.5rem;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        font-family: 'Jost', sans-serif;
        font-size: 0.9rem;
        margin-top: 1rem;
        text-align: justify;
        color: white;
        line-height: 1.7;
    }

    .ab--sec01--leftdivp {
        font-family: 'Jost', sans-serif;
        color: white;
        text-align: justify;
        font-size: 0.9rem;
        margin-top: 2rem;
        margin-right: 1rem;
        padding-right: 1rem;
    }

    .ab--sec01--rightdivp {
        font-family: 'Jost', sans-serif;
        color: white;
        text-align: justify;
        font-size: 0.9rem;
        margin-bottom: 3rem;
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .ab--sec01--div05 {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1400px;
        padding: 0 1rem;
        gap: 1.25rem;
    }

    .ab--sec01--cardtext {
        font-family: 'Jost', sans-serif;
        color: rgba(255, 255, 255, 0.85);
        text-align: center;
        /* margin-top: 1rem; */
        font-size: 0.9rem;
        /* font-weight: 300; */
    }
}



/* ============================================================
   CONTACT SECTION — OVERLAP LAYOUT UPDATE
   Replace the existing .ct--sec01 rules in about.css with these
============================================================ */

.ct--sec01 {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 12rem;
    margin-bottom: 3rem;
}

.ct--sec01--div01 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ct--sec01--div02 {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* ── Header ── */
.ct--sec01--headdiv {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin-bottom: -1rem;
    gap: 16px;
}

.ct--sec01--headmidtext {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: #4ecdc4;
    text-transform: uppercase;
    margin: 0;
}

.ct--sec01--headleftline {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4ecdc4);
    flex-shrink: 0;
}

.ct--sec01--headrightline {
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to left, transparent, #4ecdc4);
    flex-shrink: 0;
}

.ct--sec01--heading {
    font-family: "Kaisei Decol", serif;
    color: white;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    align-self: center;
}

/* ── Outer container — relative, enables overlap ── */
.ct--sec01--grid {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   LEFT PANEL — contact form
   65% wide, starts at top:0, z-index:1
═══════════════════════════════════════════ */
.ct--sec01--formpanel {
    width: 65%;
    /* border: 1px solid rgba(0, 198, 255, 0.25); */
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* border-radius: 0.5rem; */
    padding: 2rem 1.75rem;
    /* background: rgba(255, 255, 255, 0.03); */
    /* box-sizing: border-box; */
    position: relative;
    z-index: 1;
}

.ct--sec01--formpanel::before {
    content: '';
    position: absolute;
    inset: 0;
    /* border-radius: 8px; */
    padding: 2px;
    background: linear-gradient(101deg, rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0.507), rgba(78, 205, 197, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ct--sec01--formtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: white;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.ct--sec01--formdesc {
    font-family: 'Jost', sans-serif;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-weight: 300;
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Field rows */
.ct--sec01--fieldrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ct--sec01--fieldrow--full {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ct--sec01--fieldgroup {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.ct--sec01--label {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.04em;
}

.ct--sec01--input {
    background: transparent;
    border: 1px solid #4ecdc53d;
    border-radius: 4px;
    padding: 0.55rem 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
}

.ct--sec01--input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.ct--sec01--input:focus {
    border-color: #4ecdc5a9;
    box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.08);
}

/* Mobile number row - FIXED */
.ct--sec01--mobilewrap {
    display: flex;
    gap: 0;
    border: 1px solid #4ecdc53d;
    border-radius: 4px;
    overflow: visible !important;
    transition: border-color 0.2s ease;
    position: relative;
}

.ct--sec01--mobilewrap:focus-within {
    border-color: #4ecdc5a9;
    box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.08);
}

.ct--sec01--mobileprefix {
    background: rgba(0, 198, 255, 0.08);
    border: none;
    border-right: 1px solid #4ecdc53d;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    padding: 0.55rem 0.6rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.ct--sec01--mobileinput {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    padding: 0.55rem 0.75rem;
    outline: none;
    flex: 1;
    min-width: 0;
    min-height: 38px;
}

.ct--sec01--mobileinput::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.ct--sec01--textarea {
    background: transparent;
    border: 1px solid #4ecdc53d;
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    resize: vertical;
    min-height: 120px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease;
}

.ct--sec01--textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.ct--sec01--textarea:focus {
    border-color: #4ecdc5a9;
    box-shadow: 0 0 0 2px rgba(0, 198, 255, 0.08);
}

/* Submit button */
.ct--sec01--submitrow {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

.ct--sec01--submitbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #4ecdc59a;
    border-radius: 4px;
    padding: 0.55rem 1.4rem;
    color: #4ecdc5;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ct--sec01--submitbtn:hover {
    background: rgba(0, 198, 255, 0.1);
    box-shadow: 0 0 12px #4ecdc53d;
    color: #4ecdc4;
}

.ct--sec01--submitbtn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   RIGHT PANEL — info + socials
   42% wide, absolute top:0 right:0, z-index:2
   overlaps left panel ~40%
═══════════════════════════════════════════ */
.ct--sec01--infopanel {
    width: 42%;
    border: 1px solid rgba(78, 205, 197, 0.507);
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    background: #071217;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-sizing: border-box;
    position: absolute;
    top: 170px;
    right: 0;
    z-index: 2;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
}

.ct--sec01--infotitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: white;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.ct--sec01--infocard {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 50, 70, 0.55);
    border: 1px solid rgba(0, 198, 255, 0.12);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s ease;
}

.ct--sec01--infocard:hover {
    border-color: rgba(0, 198, 255, 0.35);
}

.ct--sec01--iconwrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 198, 255, 0.12);
    border: 1px solid rgba(0, 198, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct--sec01--iconwrap svg {
    width: 16px;
    height: 16px;
    color: #4ecdc4;
    stroke: #4ecdc4;
}

.ct--sec01--infolabel {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.ct--sec01--infovalue {
    font-family: 'Jost', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: white;
}

.ct--sec01--divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 198, 255, 0.12);
    margin: 0.25rem 0;
}

.ct--sec01--socialtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.ct--sec01--socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ct--sec01--socialbtn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    color: white;
}

.ct--sec01--socialbtn:hover {
    background: rgba(0, 198, 255, 0.15);
    border-color: rgba(0, 198, 255, 0.45);
    transform: scale(1.08);
}

.ct--sec01--socialbtn svg {
    width: 18px;
    height: 18px;
    /* fill: currentColor; */
}

/* ============================================================
   COUNTRY DROPDOWN - FIXED CSS
   ============================================================ */

/* Country selector container */
.ct--country--selector {
    position: relative;
    flex-shrink: 0;
}

/* Country button */
.ct--country--btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 198, 255, 0.08);
    border: none;
    border-right: 1px solid rgba(0, 198, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    padding: 0.55rem 0.6rem;
    cursor: pointer;
    white-space: nowrap;
    height: 100%;
    min-height: 38px;
}

.ct--country--btn:hover {
    background: rgba(78, 205, 196, 0.15);
}

.ct--country--chevron {
    font-size: 9px;
    opacity: 0.6;
    transition: transform 0.2s;
}

.ct--country--chevron.open {
    transform: rotate(180deg);
}

/* DROPDOWN - FIXED: High z-index, proper positioning */
.ct--country--dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 280px;
    background: #0d1f27;
    border: 1px solid rgba(78, 205, 196, 0.4);
    border-radius: 8px;
    z-index: 9999 !important;
    max-height: 280px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.ct--country--dropdown.open {
    display: flex;
}

/* Search box inside dropdown */
.ct--country--search {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(78, 205, 196, 0.15);
    flex-shrink: 0;
}

.ct--country--search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    outline: none;
    box-sizing: border-box;
}

.ct--country--search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ct--country--search input:focus {
    border-color: rgba(78, 205, 196, 0.5);
}

/* Country list - scrollable area */
.ct--country--list {
    overflow-y: auto;
    max-height: 200px;
    flex: 1;
}

.ct--country--list::-webkit-scrollbar {
    width: 4px;
}

.ct--country--list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.ct--country--list::-webkit-scrollbar-thumb {
    background: rgba(78, 205, 196, 0.3);
    border-radius: 2px;
}

/* Country option items */
.ct--country--option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.15s;
    border-bottom: 1px solid rgba(78, 205, 196, 0.05);
}

.ct--country--option:last-child {
    border-bottom: none;
}

.ct--country--option:hover {
    background: rgba(78, 205, 196, 0.12);
    color: white;
}

.ct--country--option .cn {
    flex: 1;
    font-size: 0.82rem;
}

.ct--country--option .cc {
    color: rgba(78, 205, 196, 0.9);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Format note */
.ct--country--format {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    color: rgba(78, 205, 196, 0.7);
    margin-top: 0.35rem;
}

/* ============================================================
   RESPONSIVE — CONTACT SECTION
============================================================ */

/* ── max 719px ── */
@media only screen and (max-width: 719px) {
    .ct--sec01--div02 {
        padding: 0 1rem;
    }

    .ct--sec01--grid {
        position: static;
    }

    .ct--sec01--formpanel {
        width: 100%;
        position: static;
    }

    .ct--sec01--infopanel {
        width: 100%;
        position: static;
        margin-top: 1.5rem;
        box-shadow: none;
    }

    .ct--sec01--fieldrow {
        grid-template-columns: 1fr;
    }

    .ct--sec01--headleftline,
    .ct--sec01--headrightline {
        width: 40px;
    }

    .ct--sec01--heading {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }

    .ct--country--dropdown {
        width: 260px;
        left: 0;
    }
}

/* ── 720px – 850px ── */
@media only screen and (min-width: 720px) and (max-width: 800px) {
    .ct--sec01--heading {
        font-size: 2rem;
    }

    .ct--sec01--grid {
        position: static;
    }

    .ct--sec01--formpanel {
        width: 100%;
        position: static;
    }

    .ct--sec01--infopanel {
        width: 100%;
        position: static;
        margin-top: 1.5rem;
        box-shadow: none;
    }

    .ct--sec01--headleftline,
    .ct--sec01--headrightline {
        width: 60px;
    }
}

/* ── 851px and above: overlap layout active ── */
@media only screen and (min-width: 801px) {
    .ct--sec01--grid {
        position: relative;
        min-height: 700px;
        /* Ensure enough space for info panel */
    }

    .ct--sec01--formrowdiv {
        width: 90%;
    }

    .ct--sec01--formpanel {
        width: 65%;
        position: relative;
        z-index: 1;
    }

    .ct--sec01--infopanel {
        width: 42%;
        position: absolute;
        top: 170px;
        right: 0;
        z-index: 2;
    }

    /* FIX: Ensure Email and Mobile fields have same width */
    .ct--sec01--fieldrow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .ct--sec01--fieldgroup {
        width: 100%;
        min-width: 0;
        /* Prevents flex/grid items from overflowing */
    }

    .ct--sec01--input,
    .ct--sec01--mobilewrap {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ── 1051px – 1400px ── */
@media only screen and (min-width: 1051px) and (max-width: 1400px) {
    .ct--sec01--heading {
        font-size: 2.5rem;
    }

    .ct--sec01--headleftline,
    .ct--sec01--headrightline {
        width: 80px;
    }
}

/* ── 1401px and above ── */
@media only screen and (min-width: 1401px) {
    .ct--sec01--heading {
        font-size: 2.5rem;
    }

    .ct--sec01--infotitle {
        font-size: 1.5rem;
    }
}



.ct--sec02 {
    margin-bottom: 5rem;
}

.ct--sec02--div01 {
    width: 100%;
}



/* Responsive dropdown fixes */
@media only screen and (max-width: 400px) {
    .ct--country--dropdown {
        width: 220px;
        left: -20px;
    }
}