/* =========================================
   FONTS
   ========================================= */
@font-face {
    font-family: 'Product Sans';
    src: url(Fonts/Product\ Sans\ Regular.ttf);
}
@font-face {
    font-family: 'Product Sans B';
    src: url(Fonts/Product\ Sans\ Bold.ttf);
}

/* =========================================
   RESET & ROOT
   ========================================= */
:root {
    --orange:      #FF6200;
    --orange-lt:   #FF9A00;
    --orange-dk:   #CC4400;
    --dark:        #1a0c08;
    --dark-2:      #2e1209;
    --white:       #ffffff;
    --glass:       rgba(255,255,255,0.08);
    --glass-border:rgba(255,255,255,0.15);
    --coca:        #c8102e;
    --pepsi:       #004B93;
    --radius:      24px;
    --transition:  cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; width: 100%;
    font-family: 'Outfit', 'Product Sans', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { display: none; }

/* =========================================
   LOADER
   ========================================= */
#loader {
    position: fixed; inset: 0;
    background: var(--dark);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.5rem; z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
    width: 60px; height: 60px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
#loader span {
    font-size: 0.9rem; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   CUSTOM CURSOR
   ========================================= */
#cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.08s var(--transition), width 0.3s, height 0.3s, background 0.3s;
    will-change: transform;
}
#cursor-follower {
    position: fixed;
    width: 36px; height: 36px;
    border: 2px solid rgba(255,98,0,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: left 0.12s var(--transition), top 0.12s var(--transition), width 0.3s, height 0.3s, border-color 0.3s;
    will-change: transform;
}
body.cursor-hover #cursor { width: 6px; height: 6px; background: var(--orange-lt); }
body.cursor-hover #cursor-follower { width: 50px; height: 50px; border-color: var(--orange-lt); }

/* =========================================
   NAVIGATION
   ========================================= */
nav {
    position: fixed; top: 0; left: 0;
    display: flex; align-items: center;
    justify-content: space-between;
    width: 100%; height: 70px;
    padding: 0 5vw;
    z-index: 500;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
    background: rgba(26, 12, 8, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-logo {
    font-size: 1.5rem; font-weight: 700;
    text-decoration: none; color: var(--white);
    letter-spacing: -0.02em;
}
.logo-dot { color: var(--orange); }
.logo-amp { color: var(--orange-lt); }
.cntr-nav { display: flex; gap: 2.5rem; }
.cntr-nav a {
    font-size: 0.9rem; font-weight: 400;
    text-decoration: none; color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
    position: relative; padding-bottom: 2px;
    transition: color 0.3s ease;
}
.cntr-nav a::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    height: 2px; width: 0;
    background: var(--orange);
    transition: width 0.35s var(--transition);
}
.cntr-nav a:hover { color: var(--white); }
.cntr-nav a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.5rem 1.4rem;
    background: var(--orange);
    color: var(--white);
    border: none; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Outfit', sans-serif;
}
.nav-cta:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,98,0,0.5);
}
.nav-menu-icon {
    display: none; font-size: 1.4rem;
    cursor: pointer; color: var(--white);
}

/* MOBILE MENU */
#mobile-menu {
    display: none; flex-direction: column;
    position: fixed; top: 70px; left: 0;
    width: 100%; background: rgba(26,12,8,0.97);
    backdrop-filter: blur(16px);
    padding: 2rem; gap: 1.5rem; z-index: 490;
    transform: translateY(-20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#mobile-menu.open {
    display: flex; opacity: 1; transform: translateY(0);
}
#mobile-menu a {
    font-size: 1.2rem; color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
#mobile-menu a:hover { color: var(--orange); }

/* =========================================
   SECTION 1 — HERO
   ========================================= */
.one {
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    width: 100%; height: 100vh;
    background: linear-gradient(150deg, rgba(255,190,50,1) 0%, rgba(255,94,0,1) 60%, rgba(180,40,0,1) 100%);
    overflow: hidden;
}
.hero-bg-glow {
    position: absolute;
    width: 70vw; height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,220,100,0.25) 0%, transparent 65%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%       { transform: scale(1.08); opacity: 1; }
}
.hero-title {
    font-family: 'Product Sans B', 'Outfit', sans-serif;
    font-size: clamp(5rem, 22vw, 22rem);
    color: rgba(255,255,255,0.12);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
    z-index: 1;
    animation: hero-text-in 1.2s var(--transition) forwards;
    opacity: 0;
}
@keyframes hero-text-in {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}
.hero-sub {
    position: absolute; bottom: 28%; left: 6%;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300; line-height: 1.5;
    color: rgba(255,255,255,0.9);
    z-index: 5;
    animation: slide-up 1s 0.4s var(--transition) both;
}
.hero-sub strong { display: block; font-weight: 700; font-size: 1.3em; color: #fff; }
.hero-cta {
    position: absolute; bottom: 16%; left: 6%;
    padding: 0.8rem 2rem;
    background: var(--white); color: var(--orange);
    border: none; border-radius: 50px;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; z-index: 5;
    font-family: 'Outfit', sans-serif;
    display: flex; align-items: center; gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: slide-up 1s 0.6s var(--transition) both;
    transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
}
.hero-cta:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.scroll-hint {
    position: absolute; bottom: 4%; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 0.3rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; z-index: 5;
    animation: bounce-scroll 2s infinite;
}
@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero images */
#fanta {
    position: absolute; width: clamp(220px, 38%, 520px);
    z-index: 3; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    transition: all 0.5s var(--transition);
    animation: float-fanta 3s ease-in-out infinite alternate;
}
@keyframes float-fanta {
    from { transform: translateY(0) rotate(-2deg); }
    to   { transform: translateY(-18px) rotate(2deg); }
}
#orange-cut {
    position: absolute; top: 10%; left: 32%; width: 14%;
    z-index: 2; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: all 0.5s var(--transition);
    animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
#orange {
    position: absolute; width: 18%; z-index: 4;
    top: 55%; right: 30%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: all 0.5s var(--transition);
    animation: float-orange 4s ease-in-out infinite alternate;
}
@keyframes float-orange {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(-12px) scale(1.05); }
}
#leaf  { top: 10%; left: 0%;  transform: rotate(60deg);  position: absolute; width: 18%; transition: all 0.5s var(--transition); }
#leaf2 { top: 70%; left: 80%; transform: rotate(-90deg); position: absolute; width: 12%; transition: all 0.5s var(--transition); }
#leaf3 { position: absolute; width: 18%; top: 10%; right: 0%; opacity: 0.85; }

/* =========================================
   SECTION 2 — ABOUT
   ========================================= */
.two {
    display: flex; align-items: center;
    width: 100%; min-height: 100vh;
    background: linear-gradient(135deg, #1a0c08, #3b1208);
    overflow: hidden;
}
.lft-two, .rght-two {
    display: flex; align-items: flex-start;
    justify-content: center; flex-direction: column;
    gap: 2.5rem; width: 50%; height: 100%;
    padding: 8rem 5vw;
}
.lft-two svg { width: 80%; max-width: 340px; filter: drop-shadow(0 0 40px rgba(224,68,40,0.4)); }
.features-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 1rem; font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 0.7rem 1.2rem;
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 50px; backdrop-filter: blur(8px);
    transition: background 0.3s, transform 0.3s;
}
.feature-item:hover { background: rgba(255,98,0,0.15); transform: translateX(6px); }
.feature-item i { color: var(--orange); font-size: 1.1rem; }

.about-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255,98,0,0.2);
    border: 1px solid var(--orange);
    border-radius: 50px;
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--orange-lt);
    text-transform: uppercase;
}
.rght-two h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-family: 'Product Sans B', 'Outfit', sans-serif;
    line-height: 1.1;
}
.highlight { color: var(--orange); }
.rght-two p {
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    line-height: 1.8; color: rgba(255,255,255,0.65);
    max-width: 480px;
}
.stats-row { display: flex; gap: 2.5rem; }
.stat strong { display: block; font-size: 2.2rem; font-weight: 700; color: var(--orange); }
.stat span   { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; }

/* =========================================
   SECTION 3 — PRODUCTS
   ========================================= */
.three {
    display: flex; flex-direction: column;
    align-items: center;
    gap: 4rem; width: 100%;
    min-height: 100vh;
    background: linear-gradient(150deg, #FF9A00, #FF6200, #cc3a00);
    padding: 7rem 5vw 5rem;
    overflow: hidden;
}
.section-header { text-align: center; }
.section-badge {
    display: inline-block; margin-bottom: 0.8rem;
    padding: 0.35rem 1rem;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px; font-size: 0.7rem; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.9); text-transform: uppercase;
}
.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Product Sans B', 'Outfit', sans-serif;
    color: var(--white); line-height: 1.1;
}
.highlight-orange { color: var(--white); text-shadow: 0 0 30px rgba(255,255,255,0.6); }
.section-header p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-top: 0.5rem; }

/* Cards wrapper */
.cards-wrapper {
    display: flex; align-items: flex-end;
    gap: 2rem; justify-content: center;
    flex-wrap: wrap; width: 100%;
}

/* Card */
.card {
    position: relative; overflow: visible;
    display: flex; flex-direction: column;
    align-items: center;
    width: clamp(240px, 22vw, 300px);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.95);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    padding-top: 8rem; padding-bottom: 0;
    transition: transform 0.4s var(--transition), box-shadow 0.4s ease;
    cursor: pointer;
    opacity: 0; /* will be revealed by JS */
}
.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}
.card-featured {
    width: clamp(270px, 26vw, 340px);
    background: linear-gradient(160deg, #fff 60%, rgba(255,210,100,0.2));
    transform: scale(1.04);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 3px rgba(255,98,0,0.3);
    z-index: 2;
}
.card-featured:hover {
    transform: scale(1.04) translateY(-12px);
}

/* Glow effects on cards */
.card-glow {
    position: absolute; inset: 0;
    border-radius: var(--radius);
    pointer-events: none; opacity: 0;
    transition: opacity 0.4s ease;
}
.card:hover .card-glow { opacity: 1; }
.coca-glow  { box-shadow: inset 0 0 40px rgba(200,16,46,0.1);  }
.fanta-glow { box-shadow: inset 0 0 40px rgba(255,98,0,0.12); }
.pepsi-glow { box-shadow: inset 0 0 40px rgba(0,75,147,0.1);  }

/* Badges */
.card-badge {
    position: absolute; top: 16px; left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.9rem;
    background: var(--orange); color: var(--white);
    border-radius: 50px; font-size: 0.65rem;
    font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; white-space: nowrap;
}
.featured-badge { background: linear-gradient(90deg, var(--orange), #ff9a00); }
.pepsi-badge    { background: var(--pepsi); }

/* Product images */
#cocacola, #pepsi, #fanta-card {
    position: absolute; top: -18%;
    left: 50%; transform: translate(-50%, 0%);
    transition: transform 0.5s var(--transition), filter 0.3s ease;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    will-change: transform;
}
#cocacola  { width: 62%; }
#pepsi     { width: 88%; }
#fanta-card{ width: 72%; top: -22%; }

.card:hover #cocacola,
.card:hover #pepsi,
.card:hover #fanta-card {
    transform: translate(-50%, -12px) scale(1.05);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4));
}

/* Lemons */
.lemon {
    position: absolute; top: -28%;
    left: 50%; width: 22vw;
    transform: translate(-50%, 0%);
    pointer-events: none;
    opacity: 0.9;
    transition: all 0.5s var(--transition);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}
.card:hover .lemon { transform: translate(-50%, -8px) scale(1.05); opacity: 0; }

/* Card info area */
.card-info {
    display: flex; flex-direction: column;
    gap: 1rem; width: 100%; padding: 1.5rem 1.4rem 1.8rem;
    background: transparent;
}
.card-info h3 {
    font-size: 1.6rem; font-weight: 700;
    color: #1a0c08; text-align: center;
    font-family: 'Product Sans B', 'Outfit', sans-serif;
}
.card-price {
    text-align: center; font-size: 1.3rem;
    font-weight: 700; color: var(--orange);
}
.card-price span { font-size: 0.8rem; font-weight: 400; color: #888; }

/* =========================================
   STATUS BARS
   ========================================= */
.status-section { display: flex; flex-direction: column; gap: 0.5rem; }
.status-label {
    display: flex; justify-content: space-between;
    font-size: 0.72rem; color: #666; font-weight: 500;
}
.status-count { color: #333; font-weight: 600; }
.status-bar {
    width: 100%; height: 6px;
    background: #e8e8e8; border-radius: 20px;
    overflow: hidden;
}
.status-fill {
    height: 100%; width: 0%;
    border-radius: 20px;
    transition: width 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.coca-fill  { background: linear-gradient(90deg, #c8102e, #ff4060); }
.fanta-fill { background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }
.pepsi-fill { background: linear-gradient(90deg, #004B93, #006ede); }
.pop-fill   { background: linear-gradient(90deg, #FFD700, #FFA500); }

/* Buy button */
.buy-btn {
    width: 100%; padding: 0.85rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: var(--white); border: none; border-radius: 12px;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.25s var(--transition), box-shadow 0.25s ease, background 0.25s;
    box-shadow: 0 4px 20px rgba(255,98,0,0.35);
}
.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,98,0,0.5);
    background: linear-gradient(135deg, var(--orange-lt), #ffbb00);
}
.buy-btn:active { transform: scale(0.97); }
.buy-featured {
    background: linear-gradient(135deg, #ff6200, #ff9a00, #ffbb00);
    box-shadow: 0 6px 25px rgba(255,98,0,0.45);
}

/* =========================================
   MODAL
   ========================================= */
#modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 2000; display: none;
    align-items: center; justify-content: center;
    animation: fade-in 0.3s ease;
}
#modal-overlay.open { display: flex; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

#modal {
    position: relative;
    background: linear-gradient(160deg, #fff 70%, #fff7ee);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 440px; width: 92%;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    color: #1a0c08;
    animation: modal-in 0.45s var(--transition);
    max-height: 90vh; overflow-y: auto;
}
@keyframes modal-in {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
#modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: #f0f0f0; border: none; border-radius: 50%;
    width: 36px; height: 36px; font-size: 1.2rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #555; transition: background 0.2s, color 0.2s;
}
#modal-close:hover { background: var(--orange); color: #fff; }
.modal-icon {
    font-size: 2.5rem; color: var(--orange);
    text-align: center; margin-bottom: 0.5rem;
}
#modal-title {
    font-size: 1.6rem; font-weight: 700;
    text-align: center; margin-bottom: 0.4rem;
}
#modal-desc {
    font-size: 0.9rem; color: #777;
    text-align: center; margin-bottom: 1.5rem;
}
#order-form {
    display: flex; flex-direction: column; gap: 0.9rem;
}
#order-form input,
#order-form textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1.5px solid #e0e0e0; border-radius: 12px;
    font-size: 0.95rem; font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none; color: #222;
    background: #fafafa;
    resize: vertical;
}
#order-form input:focus,
#order-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,98,0,0.12);
    background: #fff;
}
.send-btn {
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: #fff; border: none; border-radius: 12px;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; font-family: 'Outfit', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    transition: transform 0.25s var(--transition), box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(255,98,0,0.35);
    margin-top: 0.3rem;
}
.send-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,98,0,0.45); }

/* Modal success state */
#modal-success { text-align: center; padding: 1rem 0; }
.success-icon { font-size: 3.5rem; color: #22c55e; margin-bottom: 0.5rem; }
#modal-success h3 { font-size: 1.5rem; color: #1a0c08; }
#modal-success p  { font-size: 0.95rem; color: #666; margin-top: 0.3rem; }

/* =========================================
   FOOTER
   ========================================= */
#section-footer {
    background: #0d0604;
    padding: 5rem 5vw 2rem;
}
.footer-content {
    display: flex; gap: 4rem; flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 3rem; margin-bottom: 2rem;
}
.footer-brand {
    flex: 2; font-size: 1.8rem; font-weight: 700; color: var(--white);
}
.footer-brand p {
    font-size: 0.9rem; color: rgba(255,255,255,0.5);
    margin-top: 0.6rem; font-weight: 400;
    max-width: 260px;
}
.footer-links, .footer-contact {
    flex: 1; display: flex; flex-direction: column; gap: 0.8rem;
}
.footer-links h4, .footer-contact h4 {
    font-size: 0.85rem; letter-spacing: 0.15em;
    color: var(--orange); text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.footer-links a, .footer-contact a {
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
    text-decoration: none; transition: color 0.3s;
    display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-cta {
    margin-top: 0.5rem; padding: 0.7rem 1.4rem;
    background: var(--orange); color: #fff; border: none; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; cursor: pointer;
    font-family: 'Outfit', sans-serif;
    display: flex; align-items: center; gap: 0.4rem;
    width: fit-content;
    transition: background 0.3s, transform 0.2s;
}
.footer-cta:hover { background: var(--orange-lt); transform: translateY(-2px); }
.footer-bottom {
    text-align: center; font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
[data-scroll-reveal] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
[data-scroll-reveal="left"]  { transform: translateX(-60px); }
[data-scroll-reveal="right"] { transform: translateX(60px); }
[data-scroll-reveal].visible {
    opacity: 1; transform: translateX(0) translateY(0);
}
@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .cntr-nav, .nav-cta { display: none; }
    .nav-menu-icon { display: block; }
    .two { flex-direction: column; }
    .lft-two, .rght-two { width: 100%; padding: 4rem 5vw; }
    .lft-two { display: none; }
    .cards-wrapper { flex-direction: column; align-items: center; }
    .card, .card-featured { width: min(86vw, 360px); transform: none !important; }
    .footer-content { flex-direction: column; gap: 2rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 5rem; }
    .hero-sub, .hero-cta { left: 4%; }
    #fanta { width: 70%; }
}
