* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FFFFFF;
    font-family: 'Inter', 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.contact-page {
    width: 100%;
}

/* ========== 1. HERO SECTION ========== */
.hero-contact {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    background: url('https://images.pexels.com/photos/210182/pexels-photo-210182.jpeg?auto=compress&cs=tinysrgb&w=1600') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    isolation: isolate;
}

.hero-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.88) 0%, rgba(2, 15, 35, 0.85) 100%);
    z-index: 1;
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/3862132/pexels-photo-3862132.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center 35%;
    transform: scale(1.05);
    transition: transform 8s ease-out;
    z-index: 0;
}

.hero-contact:hover .hero-bg-zoom {
    transform: scale(1.12);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 3rem;
    color: white;
}

.breadcrumb {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb a {
    color: #aad4ff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #00e0ff;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    background: linear-gradient(125deg, #ffffff, #b6e4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e2ecff;
    margin-bottom: 2.2rem;
    max-width: 620px;
    line-height: 1.5;
    animation: fadeUp 0.9s 0.1s forwards;
    opacity: 0;
    transform: translateY(25px);
    animation-fill-mode: forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   SECTION 1 — HERO
   ================================================================ */

/* Tablet landscape (max 1100px) */
@media (max-width: 1100px) {
    .hero-content {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.15rem;
        max-width: 540px;
    }
}

/* Tablet portrait (max 900px) */
@media (max-width: 900px) {
    .hero-contact {
        height: 55vh;
        min-height: 380px;
        background-attachment: scroll;
        /* fixes iOS fixed bg bug */
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        max-width: 480px;
    }

    .breadcrumb {
        font-size: 0.82rem;
    }
}

/* Large mobile (max 768px) */
@media (max-width: 768px) {
    .hero-contact {
        height: 52vh;
        min-height: 340px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 1.5rem;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }
}

/* Small mobile (max 576px) */
@media (max-width: 576px) {
    .hero-contact {
        height: 48vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .breadcrumb {
        font-size: 0.78rem;
        margin-bottom: 0.8rem;
    }
}

/* XS mobile (max 480px) */
@media (max-width: 480px) {
    .hero-contact {
        height: 44vh;
        min-height: 270px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.88rem;
    }
}

/* container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== CONTACT INFORMATION CARDS ========== */
.contact-info {
    background: #fff;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* ── Section Header ── */
.connect-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.connect-section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 600;
    color: #000000;
    letter-spacing: -1px;
    margin: 0 0 12px;
    line-height: 1.1;
}

.connect-section-header h2 span {
    background: linear-gradient(135deg, #00ccff, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.connect-header-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ccff, #0077ff);
    margin: 16px auto 18px;
    border-radius: 4px;
}

.connect-section-header p {
    font-size: 1rem;
    color: #4a5b7a;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 52px;
}

/* Card */
.info-card {
    background: linear-gradient(160deg, #0A1F44 0%, #0e2a58 100%);
    border-radius: 24px;
    padding: 4rem 1.6rem 2rem;
    text-align: center;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(0, 200, 255, 0.18);
    box-shadow: 0 20px 36px -12px rgba(0, 0, 0, 0.28);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 32px 48px -12px rgba(0, 140, 255, 0.38), 0 0 0 1px rgba(0, 204, 255, 0.35);
    border-color: rgba(0, 204, 255, 0.45);
}

.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(125deg, rgba(0, 224, 255, 0.25), rgba(0, 100, 255, 0.5));
    -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;
    opacity: 0;
    transition: opacity 0.4s;
}

.info-card:hover::after {
    opacity: 1;
}

/* Decorative outer ring */
.card-img-ring {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 204, 255, 0.18);
    pointer-events: none;
    z-index: 9;
    transition: border-color 0.35s;
}

.info-card:hover .card-img-ring {
    border-color: rgba(0, 204, 255, 0.35);
}

/* Image badge - half outside top center */
.card-img-wrap {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0e2657, #0a1f44);
    border: 3px solid rgba(0, 200, 255, 0.35);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.35),
        0 0 0 5px rgba(0, 204, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
    transition: all 0.35s ease;
}

.info-card:hover .card-img-wrap {
    border-color: rgba(0, 204, 255, 0.65);
    box-shadow:
        0 10px 30px rgba(0, 160, 255, 0.4),
        0 0 0 6px rgba(0, 204, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) scale(1.06);
}

.card-img-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0, 220, 255, 0.6));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.info-card:hover .card-img-wrap img {
    filter: brightness(0) saturate(200%) invert(85%) sepia(60%) saturate(400%) hue-rotate(170deg) drop-shadow(0 0 8px rgba(0, 220, 255, 0.8));
    transform: scale(1.08);
}

/* Text */
.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #ffffff, #b8dcff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.info-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #c0d4ec;
}

.info-card a {
    color: #c0d4ec;
    text-decoration: none;
    transition: color 0.2s;
}

.info-card a:hover {
    color: #00e0ff;
}

/* Accent line */
.card-accent {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #00ccff, #0077ff);
    margin: 1.1rem auto 0;
    border-radius: 2px;
    opacity: 0.55;
    transition: width 0.35s, opacity 0.35s;
}

.info-card:hover .card-accent {
    width: 56px;
    opacity: 1;
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.8rem;
    }
}

/* ================================================================
   SECTION 2 — CONTACT INFO CARDS
   ================================================================ */

/* Tablet landscape (max 1100px) — 2 columns */
@media (max-width: 1100px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.8rem;
    }

    .contact-info {
        padding: 70px 20px 50px;
    }
}

/* Tablet portrait (max 900px) */
@media (max-width: 900px) {
    .contact-info {
        padding: 60px 20px 45px;
    }

    .connect-section-header {
        margin-bottom: 16px;
    }

    .cards-grid {
        gap: 2.2rem 1.5rem;
        padding-top: 48px;
    }

    .card-img-wrap {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .card-img-wrap img {
        width: 36px;
        height: 36px;
    }

    .card-img-ring {
        width: 96px;
        height: 96px;
        top: -48px;
    }

    .info-card {
        padding: 3.5rem 1.4rem 1.8rem;
    }
}

/* Large mobile (max 768px) */
@media (max-width: 768px) {
    .contact-info {
        padding: 50px 1.5rem 40px;
    }

    .cards-grid {
        gap: 2rem 1.2rem;
        padding-top: 44px;
    }

    .connect-section-header h2 {
        font-size: 1.9rem;
    }

    .connect-section-header p {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 3.2rem 1.2rem 1.6rem;
        border-radius: 20px;
    }

    .info-card::after {
        border-radius: 20px;
    }

    .info-card h4 {
        font-size: 1.05rem;
    }

    .info-card p {
        font-size: 0.82rem;
    }
}

/* Small mobile (max 576px) */
@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem 1rem;
        padding-top: 42px;
    }

    .contact-info {
        padding: 44px 1rem 36px;
    }

    .card-img-wrap {
        width: 72px;
        height: 72px;
        top: -36px;
    }

    .card-img-wrap img {
        width: 32px;
        height: 32px;
    }

    .card-img-ring {
        width: 88px;
        height: 88px;
        top: -44px;
    }

    .info-card {
        padding: 3rem 1rem 1.4rem;
        margin-bottom: 20px;
    }
}

/* XS mobile (max 480px) — single column */
@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
    }

    .connect-section-header h2 {
        font-size: 1.65rem;
    }

    .info-card {
        padding: 3rem 1.2rem 1.5rem;
    }
}

/* ========== 3. CONTACT FORM + IMAGE SPLIT ========== */
.form-section {
    position: relative;
    padding: 0;
    min-height: 600px;
    overflow: hidden;
    background: #fff;
}

/* Full background image */
.form-section .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Dark overlay — fades left dark → right transparent */
.form-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.88) 50%,
            rgba(0, 0, 0, 0.55) 80%,
            rgba(0, 0, 0, 0.08) 100%);
    z-index: 2;
}

.form-section .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 2rem;
}

/* Split layout */
.form-section .split-layout {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    gap: 0;
}

/* LEFT: Form column */
.form-section .form-col {
    flex: 0 0 52%;
    max-width: 52%;
    padding: 4rem 3.5rem 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section .form-col h3 {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #ffffff, #b8dcff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-section .form-col h3 span {
    background: linear-gradient(135deg, #00ccff, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-section .form-col>p {
    color: #9ab8d8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-section .form-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #00ccff, #0077ff);
    border-radius: 4px;
    margin-bottom: 1.8rem;
}

.form-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Two-column row */
.form-section .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-section .input-group input,
.form-section .input-group textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 255, 0.2);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.07);
    color: #e8f2ff;
    transition: all 0.25s;
    outline: none;
}

.form-section .input-group input::placeholder,
.form-section .input-group textarea::placeholder {
    color: rgba(160, 190, 220, 0.6);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: rgba(0, 204, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.12);
}

.form-section .input-group textarea {
    resize: none;
    line-height: 1.6;
}

.form-section .submit-btn {
    background: linear-gradient(95deg, #0077ff, #00ccff);
    border: none;
    padding: 0.95rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    box-shadow: 0 6px 18px rgba(0, 119, 255, 0.4);
    margin-top: 0.4rem;
}

.form-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 160, 255, 0.5);
}

/* RIGHT: Image column — white background */
.form-section .image-col {
    width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 30%;
    position: relative;
    z-index: 3;
    margin: auto;
    background-color: #ffffff;
    transform: rotate(100deg);
}

.form-section .message-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30%;
    transition: transform 0.5s ease;
}


/* Tablet landscape (max 1100px) */
@media (max-width: 1100px) {
    .form-section .form-col {
        flex: 0 0 55%;
        max-width: 55%;
        padding: 3.5rem 2.5rem 3.5rem 0;
    }

    .form-section .form-col h3 {
        font-size: 2.5rem;
    }

    .form-section .image-col {
        width: 420px;
        height: 340px;
    }
}

/* Tablet portrait (max 900px) — stacked layout */
@media (max-width: 900px) {
    .form-section .split-layout {
        flex-direction: column;
        min-height: auto;
    }

    .form-section .form-col {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding: 3rem 2rem;
    }

    .form-section .form-col h3 {
        font-size: 2.2rem;
    }

    .form-section .image-col {
        width: 360px;
        height: 290px;
        margin: 0 auto 2rem;
        transform: rotate(0deg);
    }

    .form-section .message-img {
        border-radius: 24px;
    }
}

/* Large mobile (max 768px) */
@media (max-width: 768px) {
    .form-section {
        min-height: auto;
    }

    .form-section .form-col {
        padding: 2.5rem 1.5rem;
    }

    .form-section .form-col h3 {
        font-size: 1.9rem;
    }

    .form-section .input-row {
        grid-template-columns: 1fr;
    }

    .form-section .image-col {
        width: 300px;
        height: 240px;
    }

    .form-section .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small mobile (max 576px) */
@media (max-width: 576px) {

    /* Dark overlay — fades left dark → right transparent */
    .form-section .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.88) 50%,
                rgba(0, 0, 0, 0.55) 80%,
                rgba(0, 0, 0, 0.08) 100%);
        z-index: 2;
    }

    .form-section .form-col {
        padding: 2rem 1.2rem;
    }

    .form-section .form-col h3 {
        font-size: 1.65rem;
    }

    .form-section .form-col>p {
        font-size: 0.88rem;
    }

    .form-section .image-col {
        width: 260px;
        height: 210px;
    }

    .form-section .input-group input,
    .form-section .input-group textarea {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .form-section .submit-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.88rem;
    }
}

/* XS mobile (max 480px) */
@media (max-width: 480px) {
    .form-section .form-col {
        padding: 1.8rem 1rem;
    }

    .form-section .form-col h3 {
        font-size: 1.45rem;
    }

    .form-section .image-col {
        width: 220px;
        height: 180px;
        border-radius: 20px;
        padding: 6px;
    }

    .form-section .message-img {
        border-radius: 16px;
    }

    .form-section .form-divider {
        margin-bottom: 1.2rem;
    }
}

/* ========== 4. MAP SECTION ========== */
.map-section {
    background: #FFFFFF;
    padding: 4rem 2rem;
}

.map-container {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2fa;
}

iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Tablet landscape (max 1100px) */
@media (max-width: 1100px) {
    .map-section {
        padding: 3.5rem 1.8rem;
    }

    iframe {
        height: 380px;
    }
}

/* Tablet portrait (max 900px) */
@media (max-width: 900px) {
    .map-section {
        padding: 3rem 1.5rem;
    }

    iframe {
        height: 340px;
    }

    .map-container {
        border-radius: 24px;
    }
}

/* Large mobile (max 768px) */
@media (max-width: 768px) {
    .map-section {
        padding: 2.5rem 1.2rem;
    }

    iframe {
        height: 300px;
    }

    .map-container {
        border-radius: 20px;
    }
}

/* Small mobile (max 576px) */
@media (max-width: 576px) {
    .map-section {
        padding: 2rem 1rem;
    }

    iframe {
        height: 260px;
    }

    .map-container {
        border-radius: 16px;
    }
}

/* XS mobile (max 480px) */
@media (max-width: 480px) {
    .map-section {
        padding: 1.5rem 0.8rem;
    }

    iframe {
        height: 230px;
    }

    .map-container {
        border-radius: 14px;
        box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.1);
    }
}


/* ========== 5. SUPPORT CTA ========== */
.support-cta {
    background: #FFFFFF;
    padding: 2rem 2rem 4rem;
}

.cta-dark {
    background: linear-gradient(115deg, #0A1F44, #0d2a55);
    border-radius: 48px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.2);
}

.cta-dark h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.8rem;
}

.cta-dark p {
    color: #cae3ff;
    margin-bottom: 1.8rem;
}

.cta-glow {
    background: linear-gradient(95deg, #00aaff, #00e0ff);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    color: #0A1F44;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.cta-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 28px rgba(0, 200, 255, 0.5);
    background: linear-gradient(95deg, #1ab0ff, #2ae5ff);
    color: #fff;
}

/* Default (1280px+) */
.support-cta {
    padding: 2rem 2rem 4rem;
}

.cta-dark {
    border-radius: 48px;
    padding: 3rem 3rem;
}

.cta-dark h3 {
    font-size: 1.8rem;
}

.cta-dark p {
    font-size: 1rem;
    margin-bottom: 1.8rem;
}

.cta-glow {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Tablet landscape (max 1100px) */
@media (max-width: 1100px) {
    .cta-dark {
        padding: 2.5rem 2.5rem;
        border-radius: 40px;
    }

    .cta-dark h3 {
        font-size: 1.6rem;
    }
}

/* Tablet portrait (max 900px) */
@media (max-width: 900px) {
    .support-cta {
        padding: 1.5rem 1.5rem 3rem;
    }

    .cta-dark {
        padding: 2.2rem 2rem;
        border-radius: 36px;
    }

    .cta-dark h3 {
        font-size: 1.5rem;
    }

    .cta-dark p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* Large mobile (max 768px) */
@media (max-width: 768px) {
    .support-cta {
        padding: 1.2rem 1.2rem 2.5rem;
    }

    .cta-dark {
        padding: 2rem 1.5rem;
        border-radius: 28px;
    }

    .cta-dark h3 {
        font-size: 1.35rem;
    }

    .cta-dark p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-glow {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }
}

/* Small mobile (max 576px) */
@media (max-width: 576px) {
    .support-cta {
        padding: 1rem 1rem 2rem;
    }

    .cta-dark {
        padding: 1.8rem 1.2rem;
        border-radius: 24px;
    }

    .cta-dark h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .cta-dark p {
        font-size: 0.86rem;
        margin-bottom: 1rem;
    }

    .cta-glow {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.4rem;
        font-size: 0.88rem;
    }
}

/* XS mobile (max 480px) */
@media (max-width: 480px) {
    .cta-dark {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .cta-dark h3 {
        font-size: 1.1rem;
    }

    .cta-dark p {
        font-size: 0.83rem;
    }

    .cta-glow {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
        border-radius: 40px;
    }
}


/* ========== 6. FAQ ACCORDION ========== */
.faq-section {
    background: #F8FAFF;
    padding: 4rem 2rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 24px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9eef4;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem 1.8rem;
    font-weight: 700;
    font-size: 1rem;
    color: #0A1F44;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

.faq-question i {
    color: #0077ff;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.8rem 1.2rem 1.8rem;
    color: #4a627a;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Scroll Reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: 0.7s;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: 0.7s;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   SECTION 6 — FAQ
   ================================================================ */

/* Tablet landscape (max 1100px) */
@media (max-width: 1100px) {
    .faq-section {
        padding: 3.5rem 1.8rem;
    }

    .faq-grid {
        max-width: 780px;
    }
}

/* Tablet portrait (max 900px) */
@media (max-width: 900px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-grid {
        max-width: 100%;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.1rem 1.5rem;
    }

    .faq-answer {
        font-size: 0.88rem;
        padding: 0 1.5rem 1.1rem;
    }

    .section-title h3 {
        font-size: 1.6rem;
    }
}

/* Large mobile (max 768px) */
@media (max-width: 768px) {
    .faq-section {
        padding: 2.5rem 1.2rem;
    }

    .faq-item {
        border-radius: 18px;
        margin-bottom: 0.8rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.2rem;
        gap: 10px;
    }

    .faq-answer {
        padding: 0 1.2rem 1rem;
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .section-title h3 {
        font-size: 1.4rem;
    }
}

/* Small mobile (max 576px) */
@media (max-width: 576px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-question {
        font-size: 0.86rem;
        padding: 0.9rem 1rem;
    }

    .faq-question i {
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 1rem 0.9rem;
        font-size: 0.84rem;
    }

    .section-title h3 {
        font-size: 1.25rem;
    }
}

/* XS mobile (max 480px) */
@media (max-width: 480px) {
    .faq-section {
        padding: 1.8rem 0.8rem;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 0.6rem;
    }

    .faq-question {
        font-size: 0.82rem;
        padding: 0.85rem 0.9rem;
        font-weight: 600;
    }

    .faq-answer {
        font-size: 0.82rem;
        padding: 0 0.9rem 0.85rem;
        line-height: 1.5;
    }

    .section-title h3 {
        font-size: 1.15rem;
    }
}


/* ================================================================
   GLOBAL CONTAINER RESPONSIVE
   ================================================================ */

@media (max-width: 1280px) {
    .container {
        max-width: 1100px;
        padding: 0 1.8rem;
    }
}

@media (max-width: 1100px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 100%;
        padding: 0 1.4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
}

.divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #00ccff, #0077ff);
    margin: 0.5rem auto 0;
    border-radius: 4px;
}

.faq-question {
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f5f9ff;
}

.submit-btn i,
.cta-glow i {
    transition: transform 0.2s;
}

.submit-btn:hover i,
.cta-glow:hover i {
    transform: translateX(4px);
}

.info-card a {
    font-weight: 500;
}