﻿/* ============================================================
   home-animations.css
   Extracted from EN/index.jsp for DOM de-noising / GEO optimization
   ============================================================ */

/* ── Hari Raya / Ramadan Banner ─────────────────────────────── */
.ramadan-banner {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 40%, #047857 100%);
    position: relative;
    overflow: hidden;
    padding: 22px 0;
    margin: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    border-bottom: 3px solid #D4AF37;
}

@keyframes ramadanSparkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

@keyframes ramadanShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .ramadan-banner h2 {
        font-size: 18px !important;
    }
    .ramadan-banner p {
        font-size: 12px !important;
    }
}

/* ── Furniture (Welcome) Area ───────────────────────────────── */
.furniture_area {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* ── Project / Feature Card Styles ─────────────────────────── */
.feature_area {
    background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 25%, #f0f9ff 60%, #d1fae5 100%);
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    margin: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.proj-card-col {
    padding: 0 16px;
    margin-bottom: 32px;
}

.proj-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07), 0 1px 4px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.proj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.13), 0 4px 16px rgba(15, 23, 42, 0.06);
}

.proj-card-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    flex-shrink: 0;
}

.proj-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 36px auto 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.proj-card:hover .proj-card-icon {
    transform: scale(1.1) rotate(-4deg);
}

.proj-card-body {
    padding: 28px 36px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.proj-card-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.proj-card-title {
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.3px;
}

.proj-card-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex: 1;
    margin-bottom: 28px;
}

.proj-card-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
}

.proj-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    color: #fff !important;
}

@media (max-width: 992px) {
    .feature_area h2 {
        font-size: 34px !important;
    }
    .proj-card-body {
        padding: 24px 28px 32px;
    }
    .proj-card-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .feature_area {
        padding: 70px 0 80px !important;
    }
    .feature_area h2 {
        font-size: 28px !important;
    }
    .proj-card-col {
        padding: 0 12px;
    }
    .proj-card-body {
        padding: 20px 22px 28px;
    }
    .proj-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin-top: 28px;
    }
    .proj-card-title {
        font-size: 18px;
    }
    .proj-card-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .proj-card-col {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .proj-card-body {
        padding: 16px 18px 24px;
    }
    .proj-card-title {
        font-size: 17px;
    }
    .proj-card-btn {
        padding: 10px 22px;
        font-size: 12px;
    }
}

/* ── More About Us – Overlay / Popup ───────────────────────── */
.overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ── More About Us – 3D Icon Card Animations ───────────────── */
.icon-card-3d { background: #ffffff; border: 1px solid rgba(226, 232, 240, 0.8); border-radius: 24px; padding: 40px 20px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; perspective: 800px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 10; cursor: pointer; height: 100%; min-height: 180px; 
    perspective: 800px;
}

.icon-card-3d svg {
    transform-style: preserve-3d;
    will-change: transform;
    transition: stroke 0.3s ease 0.5s, fill 0.3s ease 0.5s;
}

.icon-card-3d:hover svg {
    animation: spinAndPop 0.9s ease-out forwards;
}

@keyframes spinAndPop {
    0%   { transform: rotateY(0deg) scale(1) translateY(0); }
    30%  { transform: rotateY(120deg) scale(1.05) translateY(-3px); }
    60%  { transform: rotateY(280deg) scale(1.15) translateY(-8px); }
    80%  { transform: rotateY(360deg) scale(1.3) translateY(-14px); }
    100% { transform: rotateY(360deg) scale(1.4) translateY(-18px) rotateX(-5deg); }
}

/* Individual Icon Hover Colours */
.icon-eshop:hover svg   { stroke: #3b82f6 !important; }
.icon-eshop:hover h4    { color: #3b82f6 !important; }

.icon-mobile:hover svg  { stroke: #8b5cf6 !important; }
.icon-mobile:hover h4   { color: #8b5cf6 !important; }

.icon-member:hover svg  { stroke: #10b981 !important; }
.icon-member:hover h4   { color: #10b981 !important; }

.icon-facebook:hover svg { fill: #1877f2 !important; }
.icon-facebook:hover h4  { color: #1877f2 !important; }

.icon-youtube:hover svg path:first-child { fill: #ff0000 !important; }
.icon-youtube:hover h4   { color: #ff0000 !important; }

.icon-instagram:hover svg { stroke: #e1306c !important; }
.icon-instagram:hover h4  { color: #e1306c !important; }

.icon-policy:hover svg  { stroke: #f59e0b !important; }
.icon-policy:hover h4   { color: #f59e0b !important; }

.icon-feedback:hover svg { stroke: #06b6d4 !important; }
.icon-feedback:hover h4  { color: #06b6d4 !important; }

.icon-card-3d::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.icon-card-3d:hover::before { opacity: 1; }

.icon-card-3d h4 { transition: all 0.3s ease 0.4s; }
.icon-card-3d:hover h4 { transform: translateY(-5px); }

/* ── More About Us Section ──────────────────────────────────── */
.more_about_us {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

/* ── World Journey Section ──────────────────────────────────── */
.World_Journey_Area {
    background-image: url('../img/world-journey/MC Ocean World Journey BG.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

/* Plane / trail animations */
@keyframes planeFlyIn {
    0%   { right: -350px; bottom: -150px; transform: rotate(15deg) scale(0.6); opacity: 0; }
    15%  { opacity: 1; }
    50%  { transform: rotate(15deg) scale(0.9); }
    100% { right: 75%; bottom: 70%; transform: rotate(15deg) scale(1.2); opacity: 1; }
}

@keyframes planeFloat {
    0%,  100% { transform: scale(1.2) translateY(0) rotate(15deg); }
    25%        { transform: scale(1.2) translateY(-15px) rotate(17deg); }
    50%        { transform: scale(1.2) translateY(-5px) rotate(14deg); }
    75%        { transform: scale(1.2) translateY(-20px) rotate(16deg); }
}

@keyframes trailFadeDiagonal {
    0%   { right: -50%; bottom: 10%; opacity: 0; }
    25%  { opacity: 0.8; }
    70%  { opacity: 0.5; }
    100% { right: 80%; bottom: 60%; opacity: 0; }
}

@keyframes particleFloat {
    0%,  100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50%        { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

@keyframes cloudFloat {
    0%,  100% { transform: translateX(0) translateY(0); opacity: 0.7; }
    50%        { transform: translateX(30px) translateY(-15px); opacity: 0.9; }
}

.plane-particle {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(147,197,253,0.6) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(147, 197, 253, 0.8);
}

.cloud-element {
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,0.2) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(5px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    #animatedPlane {
        width: 150px !important;
        top: 5% !important;
    }
    .World_Journey_Area .container > div {
        padding: 40px 25px !important;
        margin: 0 15px;
    }
    .World_Journey_Area h2 {
        font-size: 28px !important;
    }
    .World_Journey_Area p {
        font-size: 15px !important;
    }
}

/* ── Product Carousel ───────────────────────────────────────── */
.impress_area.product-carousel {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px 0;
    margin: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.product-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31,38,135,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 50px rgba(59,130,246,0.25);
    border-color: rgba(59,130,246,0.4);
}

.product-card img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* sr-only helper (accessible visually-hidden text) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes scrollProducts {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 18 - 20px * 18)); }
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* ============================================================
   INLINE CSS PURGE – replacement classes
   ============================================================ */

/* ── Ramadan Banner internals ───────────────────────────────── */
.ramadan-decor-wrap { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.ramadan-moon-left  { position: absolute; left: 4%; top: 50%; transform: translateY(-50%); opacity: 0.55; }
.ramadan-moon-right { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); opacity: 0.55; }
.ramadan-star-1 { position: absolute; left: 18%; top: 20%; width: 5px; height: 5px; background: #D4AF37; border-radius: 50%; box-shadow: 0 0 10px #D4AF37; animation: ramadanSparkle 2.2s ease-in-out infinite; }
.ramadan-star-2 { position: absolute; left: 30%; top: 70%; width: 4px; height: 4px; background: #D4AF37; border-radius: 50%; box-shadow: 0 0 8px  #D4AF37; animation: ramadanSparkle 3s ease-in-out infinite 0.5s; }
.ramadan-star-3 { position: absolute; right: 18%; top: 25%; width: 5px; height: 5px; background: #D4AF37; border-radius: 50%; box-shadow: 0 0 10px #D4AF37; animation: ramadanSparkle 2.6s ease-in-out infinite 1s; }
.ramadan-star-4 { position: absolute; right: 30%; top: 65%; width: 4px; height: 4px; background: #D4AF37; border-radius: 50%; box-shadow: 0 0 8px  #D4AF37; animation: ramadanSparkle 2s ease-in-out infinite 1.8s; }
.ramadan-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.08) 50%, transparent 100%); animation: ramadanShimmer 3s linear infinite; }
.ramadan-text-wrap { position: relative; z-index: 2; text-align: center; }
.ramadan-eyebrow  { color: #D4AF37; font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin: 0 0 6px; font-family: 'Outfit', sans-serif; }
.ramadan-heading  { color: #ffffff; font-size: 28px; font-weight: 800; margin: 0; letter-spacing: 2px; font-family: 'Outfit', sans-serif; text-shadow: 0 2px 15px rgba(0,0,0,0.25); }
.ramadan-subtext  { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; margin: 8px 0 0; letter-spacing: 1px; font-family: 'Plus Jakarta Sans', sans-serif; }
@media (max-width: 768px) {
    .ramadan-heading { font-size: 18px !important; }
    .ramadan-eyebrow, .ramadan-subtext { font-size: 12px !important; }
}

/* ── Furniture Area internals ───────────────────────────────── */
.furniture-orb-tr { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%); border-radius: 50%; }
.furniture-orb-bl { position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(147,197,253,0.08) 0%, transparent 70%); border-radius: 50%; }
.furniture-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.15; }
.furniture-dot { position: absolute; background: #3b82f6; border-radius: 50%; box-shadow: 0 0 10px rgba(59,130,246,0.3); }
.furniture-dot-1 { top: 15%; left: 15%; width: 3px; height: 3px; }
.furniture-dot-2 { top: 25%; right: 25%; width: 2px; height: 2px; }
.furniture-dot-3 { bottom: 35%; left: 35%; width: 3px; height: 3px; }
.furniture-dot-4 { bottom: 20%; right: 20%; width: 2px; height: 2px; }
.furniture-container { position: relative; z-index: 1; max-width: 1400px; }
.furniture-header   { margin-bottom: 80px; text-align: center; }
.furniture-h1       { margin-bottom: 0; }
.furniture-eyebrow  { display: block; font-size: 14px; color: #3b82f6; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; }
.furniture-title    { display: block; font-size: 52px; font-weight: 300; color: #1e293b; letter-spacing: 2px; }
.furniture-divider  { width: 60px; height: 3px; background: linear-gradient(90deg, transparent, #3b82f6, transparent); margin: 20px auto 0; }
.furniture-inner    { justify-content: center; }
.furniture-col      { margin-bottom: 30px; padding: 0 20px; }
.furniture-link     { text-decoration: none; }
.furniture-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.15) 100%);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.3); margin-bottom: 20px; border-radius: 20px;
    padding: 60px 40px; box-shadow: 0 8px 32px rgba(31,38,135,0.15), inset 0 1px 0 rgba(255,255,255,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
    min-height: 400px; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.furniture-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.25) 100%);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 12px 48px rgba(59,130,246,0.2), inset 0 1px 0 rgba(255,255,255,0.6);
}
.furniture-item-overlay { position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%); pointer-events: none; }
.furniture-item-accent  { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: linear-gradient(90deg, transparent, #3b82f6, transparent); }
.furniture-img          { width: 50%; margin-bottom: 35px; opacity: 0.85; transition: all 0.4s ease; position: relative; z-index: 1; }
.furniture-img:hover    { opacity: 1; transform: scale(1.05); }
.furniture-item-title   { color: #1e293b; font-size: 26px; font-weight: 400; margin-bottom: 0; letter-spacing: 1px; position: relative; z-index: 1; }
.furniture-caption      { color: #475569; font-size: 15px; font-weight: 400; line-height: 1.7; padding: 0 20px; }

/* ── Feature / Projects Area internals ─────────────────────── */
.feature-orb-tl { position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(99,102,241,0.30) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.feature-orb-br { position: absolute; bottom: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(16,185,129,0.28) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.feature-orb-c  { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.feature-container { position: relative; z-index: 1; max-width: 1200px; padding: 0 20px; }
.feature-header    { text-align: center; margin-bottom: 70px; }
.feature-eyebrow   { color: #6366f1; font-size: 12px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 14px; font-family: 'Outfit', sans-serif; }
.feature-heading   { color: #0f172a; font-size: 44px; font-weight: 800; margin-bottom: 18px; letter-spacing: -1px; font-family: 'Outfit', sans-serif; line-height: 1.1; }
.feature-subtext   { color: #64748b; font-size: 16px; font-weight: 400; max-width: 560px; margin: 0 auto; line-height: 1.7; font-family: 'Plus Jakarta Sans', sans-serif; }
.feature-divider   { width: 60px; height: 4px; background: linear-gradient(90deg,#6366f1,#3b82f6); border-radius: 4px; margin: 28px auto 0; }
.proj-cards-row    { justify-content: center; }

/* ── More About Us internals ────────────────────────────────── */
.mau-topline   { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(31,66,152,0.1), transparent); }
.mau-container { position: relative; z-index: 1; max-width: 1200px; padding: 100px 20px; }
.mau-header    { text-align: center; margin-bottom: 70px; }
.mau-eyebrow   { color: #64748b; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.mau-heading   { color: #1e293b; font-size: 42px; font-weight: 700; margin-bottom: 0; letter-spacing: -0.5px; }
.mau-icon-row  { justify-content: center; }
.mau-icon-col  { margin-bottom: 30px; }
.mau-icon-link { text-decoration: none; display: block; width: 100%; height: 100%; }
/* icon-card-3d base is already defined above; add hover shadow overrides */
.icon-card-3d:hover    { transform: translateY(-10px) scale(1.02) rotateX(5deg); box-shadow: 0 25px 60px rgba(59,130,246,0.25); }
.icon-mobile:hover     { box-shadow: 0 25px 60px rgba(139,92,246,0.25); }
.icon-member:hover     { box-shadow: 0 25px 60px rgba(16,185,129,0.25); }
.icon-facebook:hover   { box-shadow: 0 25px 60px rgba(24,119,242,0.25); }
.icon-youtube:hover    { box-shadow: 0 25px 60px rgba(255,0,0,0.25); }
.icon-instagram:hover  { box-shadow: 0 25px 60px rgba(225,48,108,0.25); }
.icon-policy:hover     { box-shadow: 0 25px 60px rgba(245,158,11,0.25); }
.icon-feedback:hover   { box-shadow: 0 25px 60px rgba(6,182,212,0.25); }
.icon-card-svg   { margin-bottom: 20px; display: block; }
.icon-card-title { color: #0f172a; font-size: 18px; font-weight: 700; margin: 0; }

/* ── World Journey internals ────────────────────────────────── */
#planeContainer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 10; overflow: hidden; }
#animatedPlane  { position: absolute; width: 280px; height: auto; bottom: -150px; right: -350px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); animation: planeFlyIn 4s ease-out forwards, planeFloat 4s ease-in-out 4s infinite; z-index: 15; }
#planeTrail     { position: absolute; bottom: 10%; right: -50%; width: 150%; height: 12px; background: linear-gradient(225deg, transparent 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.4) 85%, transparent 100%); filter: blur(4px); transform: rotate(-35deg); transform-origin: right bottom; animation: trailFadeDiagonal 4s ease-out forwards; z-index: 5; }
.plane-trail-secondary { position: absolute; bottom: 15%; right: -40%; width: 100%; height: 6px; background: linear-gradient(225deg, transparent 0%, rgba(59,130,246,0.2) 30%, rgba(147,197,253,0.7) 55%, rgba(59,130,246,0.3) 75%, transparent 100%); filter: blur(3px); transform: rotate(-35deg); transform-origin: right bottom; animation: trailFadeDiagonal 4.5s ease-out 0.3s forwards; z-index: 4; }
.plane-particle-1 { position: absolute; top: 18%; left: 20%; animation: particleFloat 6s   ease-in-out infinite 0.5s; }
.plane-particle-2 { position: absolute; top: 25%; left: 35%; animation: particleFloat 5s   ease-in-out infinite 1s; }
.plane-particle-3 { position: absolute; top: 12%; left: 50%; animation: particleFloat 7s   ease-in-out infinite 1.5s; }
.plane-particle-4 { position: absolute; top: 28%; left: 65%; animation: particleFloat 5.5s ease-in-out infinite 2s; }
.plane-particle-5 { position: absolute; top: 15%; left: 80%; animation: particleFloat 6.5s ease-in-out infinite 0.8s; }
.cloud-1 { position: absolute; top: 10%; left: 5%; width: 120px; height: 60px; animation: cloudFloat 20s ease-in-out infinite; }
.cloud-2 { position: absolute; top: 60%; right: 10%; width: 150px; height: 75px; animation: cloudFloat 25s ease-in-out infinite 5s; }
.cloud-3 { position: absolute; bottom: 20%; left: 15%; width: 100px; height: 50px; animation: cloudFloat 22s ease-in-out infinite 8s; }
.wj-overlay  { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,20,60,0.1) 0%, rgba(0,20,60,0.05) 30%, transparent 50%, rgba(0,20,60,0.08) 80%, rgba(0,20,60,0.15) 100%); pointer-events: none; z-index: 1; }
.wj-container { position: relative; z-index: 20; max-width: 1000px; padding: 60px 20px; }
.wj-card { background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.2) 100%); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid rgba(255,255,255,0.6); border-radius: 30px; padding: 60px 50px; box-shadow: 0 25px 80px rgba(31,38,135,0.2), inset 0 1px 0 rgba(255,255,255,0.8); text-align: center; position: relative; overflow: hidden; }
.wj-card-reflection { position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%); pointer-events: none; border-radius: 30px 30px 0 0; }
.wj-card-accent     { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 4px; background: linear-gradient(90deg, transparent, #1f4298, transparent); border-radius: 2px; }
.wj-eyebrow  { color: #64748b; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; position: relative; z-index: 1; }
.wj-heading  { color: #0f172a; font-size: 42px; font-weight: 700; margin-bottom: 30px; letter-spacing: -0.5px; position: relative; z-index: 1; }
.wj-divider  { width: 80px; height: 3px; background: linear-gradient(90deg, #1f4298, #3b82f6, #1f4298); margin: 0 auto 30px; border-radius: 2px; }
.wj-desc     { color: #334155; font-size: 17px; font-weight: 500; line-height: 1.8; max-width: 650px; margin: 0 auto 35px; position: relative; z-index: 1; }
.wj-cta      { display: inline-block; padding: 16px 45px; background: linear-gradient(135deg, #1f4298 0%, #3b82f6 100%); color: #ffffff; text-decoration: none; font-size: 15px; font-weight: 700; border-radius: 50px; box-shadow: 0 10px 30px rgba(31,66,152,0.3); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); text-transform: uppercase; letter-spacing: 1.5px; position: relative; z-index: 1; overflow: hidden; }
.wj-cta:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(31,66,152,0.4); color: #ffffff; }

/* ── Carousel section wrapper ───────────────────────────────── */
.carousel-section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
.carousel-eyebrow  { color: #64748b; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.carousel-heading  { color: #1e293b; font-size: 42px; font-weight: 700; margin-bottom: 0; letter-spacing: -0.5px; }
.carousel-divider  { width: 80px; height: 3px; background: linear-gradient(90deg, transparent, #3b82f6, transparent); margin: 20px auto 0; }
.carousel-wrapper  { position: relative; overflow: visible; width: 100%; padding: 30px 0; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }

/* ── Ramadan Footer Message ────────────────────────────────── */
.ramadan-footer {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #065f46 100%);
    padding: 36px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #D4AF37;
}
.ramadan-footer-decor { position: absolute; inset: 0; pointer-events: none; }
.ramadan-footer-moon-left  { position: absolute; left: 6%;  top: 50%; transform: translateY(-50%); opacity: 0.25; }
.ramadan-footer-moon-right { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); opacity: 0.25; }
.ramadan-footer-star-1 { position: absolute; left: 20%;  top: 30%; width: 5px; height: 5px; background: #D4AF37; border-radius: 50%; box-shadow: 0 0 10px #D4AF37; animation: ramadanSparkle 2.5s ease-in-out infinite; }
.ramadan-footer-star-2 { position: absolute; right: 20%; top: 60%; width: 4px; height: 4px; background: #D4AF37; border-radius: 50%; box-shadow: 0 0 8px  #D4AF37; animation: ramadanSparkle 3s ease-in-out infinite 1s; }
.ramadan-footer-star-3 { position: absolute; left: 40%;  top: 70%; width: 4px; height: 4px; background: #D4AF37; border-radius: 50%; box-shadow: 0 0 8px  #D4AF37; animation: ramadanSparkle 2s ease-in-out infinite 0.5s; }
.ramadan-footer-text { position: relative; z-index: 1; }
.ramadan-footer-eyebrow { color: #D4AF37; font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin: 0 0 8px; font-family: 'Outfit', sans-serif; }
.ramadan-footer-heading { color: #ffffff; font-size: 22px; font-weight: 800; margin: 0 0 8px; letter-spacing: 1px; font-family: 'Outfit', sans-serif; }
.ramadan-footer-subtext { color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 500; margin: 0; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── Carousel Track ─────────────────────────────────────────── */
.carousel-track {
    display: grid;
    grid-template-columns: repeat(36, 300px);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    animation: scrollProducts 120s linear infinite;
    will-change: transform;
}
@media (max-width: 768px) {
    .carousel-track {
        grid-template-columns: repeat(36, 250px);
        gap: 15px;
    }
    .product-card  { min-height: 240px; padding: 20px; }
    .product-card img { max-width: 150px; height: 150px; }
    .product-card h3  { font-size: 14px; }
    @keyframes scrollProducts {
        0%   { transform: translateX(0); }
        100% { transform: translateX(calc(-250px * 18 - 15px * 18)); }
    }
}

/* ── GEO FAQ Section ───────────────────────────────────────── */
.geo-faq-item {
    background: #f8fafc;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.geo-faq-item[open] {
    background: #ffffff;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}
.geo-faq-q {
    padding: 20px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.geo-faq-q::-webkit-details-marker {
    display: none;
}
.geo-faq-q::after {
    content: '+';
    font-size: 24px;
    color: #3b82f6;
    transition: transform 0.3s ease;
}
.geo-faq-item[open] .geo-faq-q::after {
    content: '-';
    transform: rotate(180deg);
}
.geo-faq-a {
    padding: 0 24px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid transparent;
}
.geo-faq-item[open] .geo-faq-a {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 16px;
}