@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =============== CSS VARIABLES =============== */
:root {
    --blue: #0a5cff;
    --blue-dark: #0440c9;
    --blue-glow: rgba(10, 92, 255, 0.35);
    --accent: #ff3c3c;
    --accent-glow: rgba(255, 60, 60, 0.3);
    --bg: #ffffff;
    --bg2: #f0f4ff;
    --text: #0d1117;
    --text-muted: #6b7280;
    --card-bg: #ffffff;
    --border: rgba(10, 92, 255, 0.15);
    --shadow: 0 20px 60px rgba(10, 92, 255, 0.12);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --header-h: 74px;
}

body.dark {
    --bg: #060c1a;
    --bg2: #0c1528;
    --text: #e8edf8;
    --text-muted: #8b98b5;
    --card-bg: #0d1628;
    --border: rgba(10, 92, 255, 0.25);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --nav-bg: rgba(6, 12, 26, 0.88);
}

/* =============== RESET =============== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background 0.4s, color 0.4s;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: auto; padding: 0 24px; }

/* =============== NOISE TEXTURE OVERLAY =============== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

/* =============== ANIMATED GRID BG =============== */
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    animation: gridShift 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridShift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* =============== FLOATING ORB BLOBS =============== */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    animation: orbFloat 15s ease-in-out infinite alternate;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(10,92,255,0.18) 0%, transparent 70%);
    top: -200px; left: -200px;
    animation-duration: 18s;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,60,60,0.12) 0%, transparent 70%);
    bottom: -150px; right: -150px;
    animation-duration: 22s;
    animation-delay: -8s;
}

.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(10,92,255,0.10) 0%, transparent 70%);
    top: 50%; left: 60%;
    animation-duration: 15s;
    animation-delay: -4s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.15); }
}

/* =============== SCROLL T-SHIRT BG =============== */
.scroll-shirt-bg {
    position: fixed;
    inset: 0;
    background: url('img/greytshirt.png') center/280px repeat;
    opacity: 0.025;
    z-index: -1;
    pointer-events: none;
}

/* =============== FLOATING SHIRT PARTICLES =============== */
.shirt-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shirt {
    position: absolute;
    width: 100px; height: 100px;
    background: url('img/pishon_tshirt_animated.svg') no-repeat center/contain;
    opacity: 0.06;
}

.s1 { top: 8%; left: 12%; animation: floatDrift 20s ease-in-out infinite; }
.s2 { top: 38%; right: 8%; animation: floatDrift 26s ease-in-out infinite reverse; }
.s3 { bottom: 18%; left: 28%; animation: floatDrift 18s ease-in-out infinite 3s; }
.s4 { top: 65%; right: 32%; animation: floatDrift 23s ease-in-out infinite 6s; }

@keyframes floatDrift {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-25px) rotate(8deg) scale(1.05); }
    66% { transform: translateY(15px) rotate(-5deg) scale(0.95); }
}

/* =============== HEADER =============== */
.header {
    position: sticky;
    top: 0;
    height: var(--header-h);
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 30px var(--blue-glow);
    border-bottom-color: var(--blue);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

/* =============== LOGO WRAP =============== */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-wrap img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s;
    filter: drop-shadow(0 2px 8px rgba(10,92,255,0.25));
}

.logo-wrap:hover img {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 4px 16px rgba(10,92,255,0.45));
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--blue), #4d8aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

/* =============== MENU =============== */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

.menu > li > a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.25s;
    display: block;
    position: relative;
    white-space: nowrap;
}

.menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 12px; right: 12px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.3s;
    border-radius: 2px;
}

.menu > li > a:hover {
    background: rgba(10,92,255,0.08);
    color: var(--blue);
}

.menu > li > a:hover::after { transform: scaleX(1); }

/* =============== DROPDOWN =============== */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);   /* was calc(100% + 8px) */
    left: 0;
    background: var(--card-bg);
    min-width: 240px;
    list-style: none;
    padding: 8px;
    border-radius: 14px;
    box-shadow: var(--shadow), 0 0 0 1px var(--border);
    display: none;
    z-index: 999;
    animation: menuReveal 0.2s ease;
}

@keyframes menuReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}

.dropdown-menu li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s;
    color: var(--blue);
    font-size: 12px;
}

.dropdown-menu li a:hover {
    background: var(--bg2);
    color: var(--blue);
    padding-left: 18px;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.toggle-btn {
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.toggle-btn:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: rotate(20deg);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    padding: 6px;
    border-radius: 8px;
    transition: color 0.2s;
    line-height: 1;
}

.hamburger:hover { color: var(--blue); }

/* =============== HERO =============== */
.hero {
    min-height: 88vh;
    background:
        linear-gradient(135deg, rgba(6,12,26,0.75) 0%, rgba(10,92,255,0.25) 100%),
        url('img/main.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
}

.hero .container { position: relative; z-index: 1; padding-top: 40px; padding-bottom: 40px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,92,255,0.25);
    border: 1px solid rgba(10,92,255,0.5);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: badgePop 0.6s ease backwards;
}

.badge::before {
    content: '';
    width: 8px; height: 8px;
    background: #4afa8a;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes badgePop {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,250,138,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(74,250,138,0); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 7vw, 88px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: heroText 0.8s ease 0.2s backwards;
}

.hero h1 span { color: var(--blue); }

@keyframes heroText {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-size: 16px;
    max-width: 580px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    animation: heroText 0.8s ease 0.4s backwards;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroText 0.8s ease 0.6s backwards;
}

/* =============== BUTTONS =============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--blue);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px var(--blue-glow);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(-1px); }

.btn.outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn.outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    box-shadow: 0 16px 40px rgba(255,255,255,0.1);
}

.btn.red { background: var(--accent); }
.btn.red:hover {
    background: #d42020;
    box-shadow: 0 16px 40px var(--accent-glow);
}

/* =============== SECTIONS =============== */
.section { padding: 80px 0; }
.section1 { padding: 80px 0; }

.section.alt {
    background: var(--bg2);
    position: relative;
}

.section.alt::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 15px;
    padding: 0 16px;
    line-height: 1.6;
}

/* =============== CARDS GRID =============== */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 28px 22px;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #4d8aff);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(10,92,255,0.3);
}

.card:hover::before { transform: scaleX(1); }

.card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.view-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border: none;
}

.view-card h3, .view-card p { color: white; }
.view-card p { opacity: 0.85; }

.view-btn {
    margin-top: 20px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
}
.view-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* =============== PRODUCTS GRID =============== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg2);
    border: 1px solid var(--border);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.product-card:hover img { transform: scale(1.12); }

.product-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,12,26,0.95) 0%, rgba(6,12,26,0.4) 50%, transparent 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    transform: translateY(10px);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-info {
    transform: translateY(0);
    opacity: 1;
}

.product-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-info p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.product-info .view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    background: rgba(10,92,255,0.15);
    border: 1px solid rgba(10,92,255,0.4);
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.product-info .view-link:hover {
    background: var(--blue);
    color: white;
}

/* =============== PROCESS SECTION =============== */
.grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: process;
}

.card1 {
    background: var(--card-bg);
    padding: 36px 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    counter-increment: process;
}

.card1::after {
    content: counter(process, decimal-leading-zero);
    position: absolute;
    top: 16px; right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--blue);
    opacity: 0.12;
    line-height: 1;
}

.card1 img {
    width: 64px; height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.4s;
}

.card1:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(10,92,255,0.3);
}

.card1:hover img { transform: scale(1.15) rotate(-5deg); }

.card1 h3 {
    font-size: 15px;
    font-weight: 700;
}

.card1:not(:last-child)::before {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--blue);
    opacity: 0.4;
    z-index: 2;
}

/* =============== STATS =============== */
.stats {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #0038cc 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats .grid {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 20px 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-box.show { opacity: 1; transform: translateY(0); }

.stat-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    color: #ffffff;
    line-height: 1;
    letter-spacing: 2px;
}

.stat-box p {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
}

/* =============== CONTACT =============== */
.contact-section {
    background: var(--bg);
    padding: 80px 0;
}

.contact-title { text-align: center; margin-bottom: 50px; padding: 0 16px; }

.contact-title h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-title p { color: var(--text-muted); margin-top: 8px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-map iframe {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow);
}

.contact-details {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
}

.contact-details h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 6px;
}

.contact-details .subtitle {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; margin-bottom: 20px; }

.contact-icon {
    width: 40px; height: 40px;
    background: rgba(10,92,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contact-item span { font-size: 14px; font-weight: 500; color: var(--text); }

/* =============== FOOTER =============== */
.footer {
    background: #020617;
    color: #6b7280;
    text-align: center;
    padding: 28px 20px;
    font-size: 14px;
    opacity: 1 !important;
    transform: none !important;
    line-height: 1.6;
}

.footer strong { color: var(--blue); }

/* =============== WHATSAPP FLOAT =============== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 9999;
    animation: waBounce 2s ease-in-out infinite;
    transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.15); animation: none; }
.whatsapp-float img { width: 32px; }

@keyframes waBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* =============== QUOTE POPUP =============== */
.quote-popup {
    position: fixed;
    inset: 0;
    background: rgba(6,12,26,0.8);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 16px;
}

.quote-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 36px 28px;
    width: 100%;
    max-width: 430px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    animation: popupIn 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.85) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.quote-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 20px;
}

.quote-box input,
.quote-box textarea,
.quote-box select {
    width: 100%;
    padding: 13px 14px;
    margin: 6px 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.quote-box input:focus,
.quote-box textarea:focus,
.quote-box select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.quote-box .close-btn {
    position: absolute;
    top: 14px; right: 16px;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.quote-box .close-btn:hover {
    background: rgba(255,60,60,0.1);
    color: var(--accent);
}

button[onclick="sendToWhatsApp()"],
button[onclick="sendWhatsApp()"] {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button[onclick="sendToWhatsApp()"]:hover,
button[onclick="sendWhatsApp()"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37,211,102,0.35);
}

/* =============== REVEAL ANIMATION =============== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE — TABLET 1024px
================================================================ */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .stats .grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .grid1 { grid-template-columns: repeat(2, 1fr); }

    .logo { font-size: 20px; }
    .logo-wrap img { height: 44px; width: 44px; }

    .card1::before { display: none; }
}

/* ================================================================
   RESPONSIVE — MOBILE LANDSCAPE / SMALL TABLET 900px
================================================================ */
@media (max-width: 900px) {
    :root { --header-h: 68px; }

    /* NAV — mobile drawer */
    .menu {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--card-bg);
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 2px;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border: 1px solid var(--border);
        border-top: none;
        display: none;
        z-index: 998;
    }

    .menu.show { display: flex; }
    .hamburger { display: block; }

    .menu > li > a {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
    }

    .dropdown-menu {
        position: relative;
        top: auto;
        box-shadow: none;
        background: var(--bg2);
        border-radius: 10px;
        margin-top: 4px;
        display: block;
        padding: 6px;
        min-width: auto;
        animation: none;
    }

    /* HERO */
    .hero { min-height: 75vh; }
    .hero h1 { font-size: clamp(34px, 8vw, 52px); }
    .hero p { font-size: 15px; }
    .hero-btns { gap: 10px; }

    /* SECTIONS */
    .section { padding: 60px 0; }
    .section1 { padding: 60px 0; }

    /* CONTACT */
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-map iframe { height: 280px; }

    /* CARDS */
    .card1::before { display: none; }
    .grid1 { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RESPONSIVE — MOBILE PORTRAIT 600px
================================================================ */
@media (max-width: 600px) {
    :root { --header-h: 64px; }

    .container { padding: 0 16px; }

    /* LOGO */
    .logo { font-size: 17px; letter-spacing: 1px; }
    .logo-wrap img { height: 38px; width: 38px; }
    .logo-wrap { gap: 8px; }

    /* HERO */
    .hero { min-height: 85vh; }
    .hero .container { padding-top: 30px; padding-bottom: 50px; }
    .hero h1 { font-size: clamp(30px, 9vw, 44px); letter-spacing: 1px; }
    .hero p { font-size: 14px; max-width: 100%; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns .btn { width: 100%; }

    .badge { font-size: 12px; padding: 7px 14px; }

    /* SECTIONS */
    .section { padding: 50px 0; }
    .section1 { padding: 50px 0; }
    .title-sub { margin-bottom: 32px; }

    /* GRIDS — single column on mobile */
    .grid { grid-template-columns: 1fr; gap: 16px; }
    .product-grid { grid-template-columns: 1fr; gap: 16px; }
    .grid1 { grid-template-columns: 1fr; gap: 16px; }
    .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 0; }

    /* CARDS */
    .card { padding: 22px 18px; }
    .card h3 { font-size: 16px; }
    .card1 { padding: 28px 16px; }
    .card1::after { font-size: 28px; }
    .card1 img { width: 52px; height: 52px; }
    .card1::before { display: none; }

    /* PRODUCT CARDS */
    .product-card { aspect-ratio: 3/2; }
    .product-info { padding: 16px; }
    .product-info h3 { font-size: 15px; }

    /* STATS */
    .stats { padding: 50px 0; }
    .stat-box h3 { font-size: clamp(36px, 10vw, 52px); }
    .stat-box p { font-size: 11px; }

    /* CONTACT */
    .contact-section { padding: 50px 0; }
    .contact-details { padding: 22px 16px; }
    .contact-details h3 { font-size: 24px; }
    .contact-map iframe { height: 240px; border-radius: 14px; }
    .contact-item { gap: 10px; }
    .contact-icon { width: 36px; height: 36px; font-size: 15px; }

    /* POPUP */
    .quote-popup { padding: 12px; }
    .quote-box { padding: 28px 16px; border-radius: 18px; }
    .quote-box h2 { font-size: 26px; }

    /* WHATSAPP FLOAT */
    .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
    .whatsapp-float img { width: 28px; }

    /* FOOTER */
    .footer { padding: 20px 16px; font-size: 13px; }
}

/* =============== MARQUEE STRIP =============== */
.marquee-strip {
    background: linear-gradient(135deg, var(--blue) 0%, #0038cc 100%);
    overflow: hidden;
    padding: 13px 0;
    position: relative;
    z-index: 10;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.marquee-dot {
    color: rgba(255,255,255,0.45) !important;
    font-size: 9px !important;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============== FOOTER — SPLIT LAYOUT =============== */
.footer {
    background: #020617;
    color: #6b7280;
    padding: 22px 0;
    font-size: 14px;
    opacity: 1 !important;
    transform: none !important;
    line-height: 1.6;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-left  { color: #6b7280; }
.footer-left strong { color: var(--blue); }
.footer-right { color: #6b7280; }
.dev-link {
    color: #a78bfa;
    font-weight: 700;
    letter-spacing: 0.4px;
}

@media (max-width: 600px) {
    .footer-inner { flex-direction: column; text-align: center; gap: 6px; }
    .footer-left, .footer-right { font-size: 12px; }
}

/* ================================================================
   RESPONSIVE — VERY SMALL PHONES 380px
================================================================ */
@media (max-width: 380px) {
    .logo { font-size: 14px; }
    .logo-wrap img { height: 32px; width: 32px; }
    .logo-wrap { gap: 6px; }

    .hero h1 { font-size: 28px; }
    .btn { padding: 12px 20px; font-size: 14px; }

    .stats .grid { grid-template-columns: 1fr 1fr; }
    .stat-box h3 { font-size: 36px; }

    .quote-box { padding: 22px 12px; }
    .quote-box h2 { font-size: 24px; }
}