/* =========================================
           CSS VARIABLES
        ========================================= */
:root {
    --primary: #e21f26;
    --primary-dark: #e21f26;
    --primary-light: #e21f26;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --dark: #1A0E05;
    --dark-2: #2D1A0A;
    --mid: #5C3D20;
    --cream: #FDF6ED;
    --cream-2: #F5E8D0;
    --white: #FFFFFF;
    --text-body: #4A3520;
    --text-light: #7A6050;
    --shadow-warm: 0 20px 60px rgba(212, 80, 30, 0.15);
    --shadow-deep: 0 40px 80px rgba(26, 14, 5, 0.25);
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-height: 80px;
}
@font-face {
  font-family: "PotatoChips";
  src: url("../fonts/Potato Chips.ttf") format("truetype");
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    overflow-x: hidden;
    cursor: none;
}

/* =========================================
           CUSTOM CURSOR — POTATO (normal) / CHIPS (hover)
        ========================================= */
.cursor-potato {
    width: 44px;
    height: 44px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear, opacity 0.3s;
    background-image: url("../images/Cursor\ Point\ Potato.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    will-change: transform;
}

.cursor-potato.hovering {
    background-image: url("../images/Cursor\ Point\ Potato\ 2.png");
    height: 50px;
    transform: translate(-50%, -50%) rotate(-15deg);
}

/* =========================================
           NAVBAR
        ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 5%;
    transition: background 0.5s var(--transition), box-shadow 0.5s, height 0.4s var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(26, 14, 5, 0.08);
    height: 90px;
    color: red;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 150px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s var(--transition), box-shadow 0.4s;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

/* Fallback letter if image fails */
.nav-logo-icon .fallback-letter {
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: var(--primary);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(-10deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(212, 80, 30, 0.4);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    transition: color 0.4s;
}

.nav-logo-text .tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.4s;
}

.navbar.scrolled .nav-logo-text .brand {
    color: var(--dark);
}

.navbar.scrolled .nav-logo-text .tagline {
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin-left: auto;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #e21f26;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--transition);
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.nav-menu a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-menu a {
    color: #e21f26;
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary);
}

.navbar.scrolled .nav-menu a::after {
    background: var(--primary);
}

.nav-cta {
    background: #e21f26 !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(212, 80, 30, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    z-index: 1100;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.navbar.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 14, 5, 0.98);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s var(--transition);
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-overlay a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-overlay a:hover {
    color: var(--primary-light);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* =========================================
           HERO
        ========================================= */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("../images/Chips\ Hero\ 3\ \(2\).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    /* padding-top: var(--nav-height); */
    padding-top: 40px;
}

.hero-text {
    position: relative;
    bottom: 50px;
    width: 100%;
    max-width: 700px;
}

.hero-title {
    font-family: "PotatoChips";
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-span {
    color: #e21f26;
}

.hero-subtitle-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e21f26;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e21f26;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: none;
    transition: all 0.4s var(--transition);
    box-shadow: 0 8px 25px rgba(212, 80, 30, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 80, 30, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* =========================================
           SECTION COMMONS
        ========================================= */
section {
    padding: 100px 5%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title {
    font-family: "PotatoChips";
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title .accent {
    color: #e21f26;
    font-style: italic;
}

/* =========================================
           ABOUT SECTION
        ========================================= */
.about {
    background: var(--white);
    padding: 100px 5%;
}

.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}


.section2-img {
    animation: bounce-idle 2.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
    height: 100%;
    width: 100%;
}

@keyframes bounce-idle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    30%       { transform: translateY(-18px) rotate(-3deg); }
    60%       { transform: translateY(-10px) rotate(2deg); }
    80%       { transform: translateY(-16px) rotate(-1deg); }
}

.section2-img:hover {
    animation: none;
    transform: scale(1.1) rotate(3deg);
    transition: transform 0.3s ease;

}
.about-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text p strong {
    color: var(--text-body);
    font-weight: 600;
}

/* =========================================
           PRODUCTS SECTION
        ========================================= */
.products {
    background: var(--cream);
    padding: 100px 5%;
}

.products-header {
    max-width: 1280px;
    margin: 0 auto 60px;
}

.products-intro p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 12px;
}

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto 40px;
}

.tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: none;
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--transition);
    background: var(--white);
    color: var(--text-light);
}

.tab.active,
.tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(212, 80, 30, 0.3);
    transform: translateY(-2px);
}

.products-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Card: full-bleed image, text overlaid at bottom ── */
.product-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s var(--transition), box-shadow 0.4s;
    cursor: none;
    position: relative;
    height: 380px;
    /* fixed card height */
    /* background: #1a1a1a; */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}

/* Full-bleed background image */
.product-card-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--transition);
    display: block;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* Dark gradient overlay — transparent top, dark bottom */
.product-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 6, 2, 0.05) 0%,
            rgba(10, 6, 2, 0.15) 35%,
            rgba(10, 6, 2, 0.75) 65%,
            rgba(10, 6, 2, 0.95) 100%);
    z-index: 1;
}

/* Badge sits top-left above overlay */
.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
}

/* Text body pinned to bottom of card, above overlay */
.product-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.product-category-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.product-name {
    font-family: 'Burush';
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.70rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* =========================================
           WHY CHOOSE US — FIXED (no yellow drip covering it)
        ========================================= */
.why {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    /* keeps the section self-contained */
    background-color: var(--primary);
}

.why::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.why-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-header .section-label {
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.why-header .section-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.why-header .section-title {
    color: var(--white);
    max-width: 560px;
    margin: 0 auto 20px;
}

.why-header p {
    color: rgb(255, 255, 255);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 36px;
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 80, 30, 0.2);
    transform: translateY(-4px);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 80, 30, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s var(--transition);
}

.why-card:hover .why-icon {
    background: rgba(212, 80, 30, 0.25);
    transform: rotate(-8deg) scale(1.05);
}

.why-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.why-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgb(255, 255, 255);
}

.why-cta-text {
    text-align: center;
}

.why-cta-text p {
    color: rgb(255, 255, 255);
    max-width: 500px;
    margin: 0 auto 8px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.why-cta-text p:last-of-type {
    color: var(--gold-light);
    font-weight: 900;
}

/* =========================================
           DECORATIVE DIVIDER IMAGE
           — Placed BETWEEN why and CTA, NOT overlapping
        ========================================= */
.section-divider-img {
    width: 100%;
    display: block;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    background-color: rgb(249 236 14);
}

.section-divider-img img {
    width: 100%;
    display: block;
}

/* =========================================
           CTA SECTION
        ========================================= */
.cta-section {
    background: var(--cream);
    padding: 10px 100px 100px 100px;
    background-color: rgb(249 236 14);
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cta-box {
    background: var(--primary);
    border-radius: 32px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-bg-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.04);
    bottom: -40px;
    right: -20px;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.cta-content .section-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.cta-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 1rem;
}

.cta-content .bulk-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    font-style: italic;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.cta-action {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 50px;
    border: none;
    cursor: none;
    transition: transform 0.4s var(--transition), box-shadow 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cta-contact-info strong {
    color: var(--white);
}

/* =========================================
           FOOTER — PROPERLY ALIGNED
        ========================================= */
footer {
    background: var(--dark);
    padding: 60px 5% 40px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 36px;
    align-items: start;
}

.footer-brand .nav-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-brand .nav-logo-text .brand {
    color: var(--white);
}

.footer-brand .nav-logo-text .tagline {
    color: rgba(255, 255, 255, 0.45);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================
           SCROLL ANIMATIONS
        ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveals {
    background-color: #88595b4f !important;

}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

/* =========================================
           RESPONSIVE
        ========================================= */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-action {
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: flex;
    }

    .hero-text {
        bottom: 0;
        right: 0;
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 70px 5%;
    }

    .cursor-potato {
        display: none;
    }

    body {
        cursor: auto;
    }

    * {
        cursor: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 24px;
    }
}


.section-divider-img img {
  animation: floatUpDown 4s ease-in-out infinite;

}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

