﻿/* ══════════════════════════════════════════
   WISHAPPLES — STYLE.CSS
   White Base · Professional · Bold
══════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coral: #E8391D;
    --orange: #F97316;
    --gold: #D97706;
    --violet: #6D28D9;
    --indigo: #4338CA;
    --cyan: #0891B2;
    --teal: #0F766E;
    --green: #15803D;
    --navy: #1E3A5F;
    --pink: #DB2777;
    --dark: #0F0F0F;
    --dark-2: #1A1A1A;
    --mid: #2D2D2D;
    --surface: #FFFFFF;
    --muted: #6B7280;
    --muted-dark: #4B5563;
    --light-bg: #FAFAFA;
    --light-bg-2: #F3F4F6;
    --border: rgba(0,0,0,0.09);
    --border-strong: rgba(0,0,0,0.14);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Cabinet Grotesk', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--dark);
    overflow-x: hidden;
}




/* ── ANIMATIONS ── */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes gallery-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes blob-drift {
    0%,100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes gradient-shift {
    0%,100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── FADE-IN ON SCROLL ── */
.fade-in {
    opacity: 0;
/*    transform: translateY(30px);*/
    transition: opacity 0.6s ease ;
}
/*transform 0.6s ease*/

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ═══════════════════════════
   HERO SECTION — WHITE BASE
═══════════════════════════ */
/*.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 80px 60px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    gap: 40px;
}*/

.hero-section {
    min-height: 100vh;
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    padding: 100px 80px 60px;
    position: relative;
    overflow: visible;
    background: #FFFFFF;
   
}

.hero-bg-shapes,
.hero-bg-shapes * {
    pointer-events: none !important;
    touch-action: none !important;
}

.shape {
    will-change: auto !important;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: blob-drift 10s ease-in-out infinite;
}


.s1 {
    width: 500px;
    height: 500px;
    background: rgba(109,40,217,0.08);
    top: -100px;
    right: 80px;
}

.s2 {
    width: 350px;
    height: 350px;
    background: rgba(8,145,178,0.07);
    bottom: -80px;
    left: 80px;
    animation-delay: 2s;
}

.s3 {
    width: 280px;
    height: 280px;
    background: rgba(232,57,29,0.06);
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

.s4 {
    width: 220px;
    height: 220px;
    background: rgba(217,119,6,0.07);
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,15,15,0.05);
    border: 1px solid rgba(15,15,15,0.12);
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,57,29,0.2);
    animation: pulse-ring 1.5s ease-out infinite;
}

.hero-title {
    /*    font-family: var(--font-display);*/
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 24px;
    color: var(--dark);
}

.word-wish {
    color: var(--dark);
}

.word-apples {
    background: linear-gradient(135deg, var(--coral), var(--gold), var(--violet));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.hero-sub-title {
    display: block;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    color: var(--muted);
    margin-top: 8px;
    font-family: var(--font-body);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted-dark);
    margin-bottom: 36px;
    max-width: 480px;
}

/* HERO BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--coral), var(--violet));
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 32px rgba(232,57,29,0.25);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 48px rgba(232,57,29,0.35);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(15,15,15,0.20);
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s;
}

    .btn-ghost:hover {
        background: rgba(15,15,15,0.05);
        border-color: rgba(15,15,15,0.40);
        color: var(--dark);
    }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    /*    font-family: var(--font-display);*/
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(15,15,15,0.12);
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    justify-self: end;
}

.orb-main {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(109,40,217,0.15), rgba(8,145,178,0.15));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*    filter: blur(2px);*/
}

.fp-img {
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
    border-radius: 140px;
    box-shadow: 0 0 25px rgba(8,145,178,0.6);
    /*    transform: none !important;*/
}

.orb-ring {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1.5px solid rgba(15,15,15,0.10);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-card-float {
    position: absolute;
    background: #FFFFFF;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15,15,15,0.10);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

    .hero-card-float i {
        font-size: 24px;
        color: var(--coral);
    }

/*.card-f1 {
    top: 10%;
    left: 0;
    animation: float 4s ease-in-out infinite;
}
*/
/*.card-f2 {
    top: 50%;
    right: 0;
    animation: float 5s ease-in-out infinite 1s;
}*/

/*.card-f3 {
    bottom: 50%;
    right: 0%;
    animation: float 4.5s ease-in-out infinite 0.5s;
}

.card-f4 {
    bottom: 5%;
    right: 15%;
    animation: float 4.5s ease-in-out infinite 0.5s;
}*/

/*.card-f5 {
    top: 20%;
    right: 0%;
    animation: float 4.5s ease-in-out infinite 1s;
}
.card-f6 {
    top: 20%;
    right: 0%;
    animation: float 4.5s ease-in-out infinite 1s;*/

/**/

/* ===== TABLET HERO FIX (iPad etc) ===== */
@media (min-width:769px) and (max-width:1024px) {

    .hero-section {
        display: grid;
        grid-template-columns: 1fr 300px;
        padding: 80px 40px 40px;
    }

    .hero-visual {
        width: 260px;
        height: 260px;
        justify-self: end;
    }

    .orb-main {
        width: 200px;
        height: 200px;
    }

    .orb-ring {
        width: 240px;
        height: 240px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-section {
        display: grid;
        grid-template-columns: 1fr 300px;
        padding: 80px 40px 40px;
        min-height: auto; /* 🔥 THIS IS THE REAL FIX */
        align-items: start; /* 🔥 stop vertical centering */
    }
}

/* ===================================
   iPAD MINI ONLY FIX (768px)
=================================== */

/*@media (width:768px) {

    .hero-section {
        display: grid;
        grid-template-columns: 1fr 220px;*/ /* smaller orb column */
/*align-items: start;
        min-height: auto;
        text-align: left;
    }*/

/* 🔥 IMPORTANT */
/*.hero-content {
        max-width: 420px;*/ /* reduce from 600 */
/*justify-self: start;
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }*/

/* shrink orb */
/*.hero-visual {
        width: 200px;
        height: 200px;
        justify-self: end;
    }

    .orb-main {
        width: 160px;
        height: 160px;
    }

    .orb-ring {
        width: 190px;
        height: 190px;
    }

    .hero-section {
        display: grid;
        grid-template-columns: 1fr 220px;
        align-items: start;
        min-height: auto;
    }*/

/* content width reduce */
/*.hero-content {
        max-width: 420px;
    }*/

/* 🔥 stop orb from centering itself */
/*.orb-main {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: auto;
    }*/

/* same for ring */
/*.orb-ring {
        position: absolute;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }*/

/* now place visual properly */
/*.hero-visual {
        width: 200px;
        height: 200px;
        justify-self: end;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}*/

/* ===== MOBILE HERO FIX (OVERRIDE ONLY) ===== */
@media(max-width:768px) {

  

/*    .hero-section {
        display: flex !important;
        flex-direction: column;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
        padding: 60px 20px 40px;
    }*/

    .hero-section {
        display: flex !important;
        flex-direction: column;
        min-height: auto !important;
        height: auto !important;
        padding: 120px 20px 40px !important;
    }

    .shape {
        animation: none !important;
        filter: none !important;
    }

    .shape {
        display: none !important;
    }

    .hero-bg-shapes {
        will-change: auto !important;
    }

    .hero-content {
        max-width: 100%;
        justify-self: stretch; /* cancel desktop start */
    }

    .hero-visual {
        order: 2;
        position: static;
        width: 220px;
        height: 220px;
        margin: 30px auto 40px auto; /* 🔥 THIS IS IMPORTANT */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .orb-main {
        width: 230px;
        height: 230px;
        top: 80%;
    }

    .orb-ring {
        width: 270px;
        height: 270px;
        top: 80%;
    }


    .hero-stats {
        justify-content: center;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
    }

    .hero-section {
        overflow: visible !important;
    }

    /* 🔥 Tell content to behave like flex stack */
    .hero-content {
        display: flex;
        flex-direction: column;
    }

    /* 🔥 Move orb after stats */
    .hero-visual {
        order: 2;
        position: static;
        width: 220px;
        height: 220px;
        margin: 20px auto 0;
    }

    /* 🔥 Ensure content comes first */
    .hero-content {
        order: 1;
    }
}

@media (max-width: 768px) {

    /* your existing mobile css */

    /* ===== NAVBAR MOBILE FIX ===== */
    .imi-nav {
        background: rgba(255,255,255,1) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
        filter: none !important;
        will-change: auto !important;
    }

    /* ===== HERO BLUR FIX ===== */
    .hero-bg-shapes .shape {
        filter: none !important;
    }
}

/* ═══════════════════════════
   LOGO SCROLL STRIP
═══════════════════════════ */
.logo-scroll-section {
    background: var(--light-bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    overflow: hidden;
}

.logo-scroll-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
}

.logo-scroll-wrapper {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-scroll-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: logo-scroll 28s linear infinite;
}

    .logo-scroll-track:hover {
        animation-play-state: paused;
    }

.logo-scroll-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
    height: 70px;
}

    .logo-scroll-item:hover {
        background: rgba(232,57,29,0.04);
    }

        .logo-scroll-item:hover .logo-scroll-name {
            color: var(--coral);
        }

.logo-scroll-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-scroll-chip {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.logo-scroll-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    transition: color 0.3s;
}

/* ═══════════════════════════
   GALLERY (AUTO-SCROLL)
═══════════════════════════ */
.gallery-section {
    /*    background: var(--dark);*/
    padding: 50px 0 30px;
    overflow: hidden;
}

.gallery-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 28px;
}

.gallery-track-wrapper {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: gallery-scroll 25s linear infinite;
}

    .gallery-track:hover {
        animation-play-state: paused;
    }

.gallery-slide {
    flex-shrink: 0;
    width: 280px;
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

    .gallery-slide img {
        width: 100%;
        height: 80%;
        object-fit: cover;
        transition: transform 0.4s;
    }

    .gallery-slide:hover img {
        transform: scale(1.05);
    }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s;
}

    .gallery-placeholder i {
        font-size: 28px;
        opacity: 0.7;
    }

    .gallery-placeholder:hover {
        transform: scale(1.03);
    }

.gallery-note code {
    background: rgba(255,255,255,0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}


/* ═══════════════════════════
   SECTION SHARED STYLES
═══════════════════════════ */
.section-tag {
    display: inline-block;
    background: rgba(67,56,202,0.08);
    border: 1px solid rgba(67,56,202,0.18);
    color: var(--indigo);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    /*    font-family: var(--font-display);*/
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
}

    .section-title em {
        font-style: normal;
        color: var(--coral);
        font-weight: 800;
    }

.section-desc {
    font-size: 17px;
    color: var(--muted-dark);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ═══════════════════════════
   PLATFORMS GRID
═══════════════════════════ */
.platforms-section {
    padding: 100px 60px;
    background: var(--light-bg);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pcard {
    border-radius: var(--radius-lg);
    padding: 36px 30px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
    cursor: default;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid var(--border);
}

    .pcard::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

.pcard-coral {
    background: linear-gradient(145deg, #FFF5F4, #FFE8E4);
}

    .pcard-coral::before {
        background: linear-gradient(90deg, var(--coral), var(--orange));
    }

.pcard-light {
    background: linear-gradient(145deg,#FFFBEB, #CFFAFE);
}

    .pcard-light::before {
        background: linear-gradient(90deg, var( --green), var( --teal));
    }


.pcard-violet {
    background: linear-gradient(145deg, #F5F3FF, #EDE9FE);
}

    .pcard-violet::before {
        background: linear-gradient(90deg, var(--violet), var(--indigo));
    }

.pcard-gold {
    background: linear-gradient(145deg, #FFFBEB, #FEF3C7);
}

    .pcard-gold::before {
        background: linear-gradient(90deg, var(--gold), var(--orange));
    }

.pcard-cyan {
    background: linear-gradient(145deg, #ECFEFF, #CFFAFE);
}

    .pcard-cyan::before {
        background: linear-gradient(90deg, var(--cyan), var(--teal));
    }

.pcard-navy {
    background: linear-gradient(145deg, #EFF6FF, #DBEAFE);
}

    .pcard-navy::before {
        background: linear-gradient(90deg, var(--navy), var(--indigo));
    }

.pcard-green {
    background: linear-gradient(145deg, #F0FDF4, #DCFCE7);
}

    .pcard-green::before {
        background: linear-gradient(90deg, var(--green), var(--teal));
    }

.pcard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pcard-icon-wrap {
    width: 90px;
    height: 70px;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 8px;
    border: 1px solid var(--border);
}

.pcard-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pcard-icon-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 28px;
    color: var(--muted);
}

.pcard-num {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0,0,0,0.20);
}

.pcard-body {
    flex: 1;
    margin-bottom: 14px;
}

.pcard-name {
    /*    font-family: var(--font-display);*/
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.pcard-desc {
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.6;
}

.pcard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

    .pcard-tags span {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 4px 12px;
        border-radius: var(--radius-full);
        background: rgba(0,0,0,0.06);
        color: var(--muted-dark);
    }

.pcard-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: auto;
}

    .pcard-btn:hover {
        background: var(--coral);
        box-shadow: 0 8px 24px rgba(232,57,29,0.25);
        transform: translateY(-2px);
    }

.pcard-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--indigo);
    background: rgba(67,56,202,0.10);
    border: 1px solid rgba(67,56,202,0.18);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-top: auto;
    align-self: flex-start;
}


/* ═══════════════════════════
   MEDIA / VIDEO SECTION
═══════════════════════════ */
.media-section {
    padding: 100px 60px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

    .media-section .section-tag {
        background: rgba(232,57,29,0.08);
        border-color: rgba(232,57,29,0.18);
        color: var(--coral);
    }

.media-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.media-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-bg);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .media-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    }

.media-card-featured {
    grid-row: span 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

    .video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.media-info {
    padding: 20px 24px;
}

.media-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(232,57,29,0.10);
    color: var(--coral);
    margin-bottom: 10px;
}

.media-info h4 {
    /*    font-family: var(--font-display);*/
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.media-info p {
    font-size: 13px;
    color: var(--muted);
}


/* ═══════════════════════════
   ABOUT SECTION — WHITE
═══════════════════════════ */
.about-section {
    padding: 100px 60px;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.about-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--coral), var(--violet), var(--cyan), var(--gold));
}

.about-container {
    /*    display: grid;*/
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.about-title {
    /*    font-family: var(--font-display);*/
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.05;
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 36px;
    letter-spacing: 0.3px;
}

/* PILLARS */
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

    .pillar:hover {
        transform: translateX(6px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.pillar strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.pillar span {
    font-size: 12px;
    color: var(--muted);
}

/* SIGNATURE */
.about-sig-block {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.about-sig-line {
    width: 50px;
    height: 2px;
    background: var(--coral);
    margin-bottom: 12px;
}

.about-sig-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-sig-role {
    font-size: 13px;
    color: var(--muted);
}

/* ABOUT TEXT CARD */
.about-text-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.about-intro {
    font-size: 16px;
    line-height: 1.85;
    color: #2D2D2D;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

    .about-intro strong {
        color: var(--dark);
        font-weight: 700;
    }

.about-verticals-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-verticals {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .about-verticals li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        line-height: 1.6;
        color: #2D2D2D;
    }

        .about-verticals li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--coral);
            margin-top: 8px;
            flex-shrink: 0;
        }

.about-closing {
    font-size: 15px;
    line-height: 1.8;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.about-warm-regards {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--muted-dark);
    line-height: 1.7;
}

    .about-warm-regards strong {
        color: var(--dark);
        font-weight: 700;
        display: block;
        margin-bottom: 2px;
    }


/* ═══════════════════════════
   GOOGLE MAP SECTION
═══════════════════════════ */
.map-section {
    padding: 80px 60px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.map-info {
}

    .map-info .section-tag {
        margin-bottom: 16px;
    }

.map-title {
    /*    font-family: var(--font-display);*/
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.15;
}

.map-desc {
    font-size: 15px;
    color: var(--muted-dark);
    line-height: 1.7;
    margin-bottom: 28px;
}

.map-addresses {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.map-address-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--light-bg);
    border: 1px solid var(--border);
}

.map-addr-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: rgba(232,57,29,0.10);
    color: var(--coral);
}

.map-addr-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.map-addr-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.map-embed-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    height: 380px;
}

    .map-embed-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.map-embed-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--light-bg-2);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

    .map-embed-placeholder i {
        font-size: 36px;
        color: var(--coral);
        opacity: 0.5;
    }

    .map-embed-placeholder code {
        font-size: 12px;
        background: rgba(0,0,0,0.06);
        padding: 4px 10px;
        border-radius: 6px;
        font-family: monospace;
        color: var(--dark);
    }


/* ═══════════════════════════
   CONTACT SECTION
═══════════════════════════ */
.contact-section {
    padding: 120px 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-block;
    background: rgba(232,57,29,0.15);
    border: 1px solid rgba(232,57,29,0.30);
    color: #FF6B52;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.contact-title {
    /*    font-family: var(--font-display);*/
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.1;
}

.contact-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.contact-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.corb-1 {
    width: 400px;
    height: 400px;
    background: var(--violet);
    top: -100px;
    left: -100px;
}

.corb-2 {
    width: 350px;
    height: 350px;
    background: var(--coral);
    bottom: -80px;
    right: -80px;
}

.corb-3 {
    width: 200px;
    height: 200px;
    background: var(--cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.imi-footer {
    /*    background: #0A0A0A;*/
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 60px 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.footer-brand img {
    width: 300px; /* control logo size */
    height: auto; /* maintain aspect ratio */
}

.footer-brand {
    display: flex;
    align-items: start;
    gap: 14px;
    margin-bottom: 8px;
}



.footer-cols {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h5 {
    /*    font-family: var(--font-display);*/
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: black;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    /*    color: rgba(255,255,255,0.55);*/
    color: black;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--coral);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid;
    color: black;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 16px;
}

    .footer-bottom span {
        font-size: 13px;
        /*        color: rgba(255,255,255,0.30);*/
    }

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgb(0, 0, 0, 0.00);
        display: flex;
        align-items: center;
        justify-content: center;
        /*        color: rgba(255,255,255,0.50);*/
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s;
    }

        .footer-social a:hover {
            background: var(--coral);
            border-color: var(--coral);
            color: #fff;
            transform: translateY(-3px);
        }


/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 40px 60px;
    }

    .hero-visual {
        width: 300px;
        height: 300px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-card-featured {
        grid-row: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .platforms-section, .media-section, .about-section, .contact-section, .map-section {
        padding: 80px 40px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 1.25; /* THIS FIXES CUTTING */
        padding-top: 4px;
    }

    .word-apples {
        display: inline-block;
        padding-bottom: 6px; /* EXTRA SPACE FOR GRADIENT TEXT */
    }
}


@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        display: block;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .platforms-section, .media-section, .about-section, .contact-section, .map-section {
        padding: 60px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .footer-cols {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .imi-footer {
        padding: 40px 24px 24px;
    }

    .about-text-card {
        padding: 24px;
    }

    .map-embed-wrapper {
        height: 280px;
    }
}


@media (max-width: 768px) {
    .footer-brand img {
        width: 130px;
    }
}
