﻿@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap');

:root {
    --primary-color: #00d2ff;
    --secondary-color: #0055ff;
    --bg-dark: #0a0a0a;
    --bg-light: #151515;
    --card-bg: #111;
    --text-light: #f4f4f4;
    --text-muted: #aaaaaa;
    --line: #262626;
    --font-main: 'Barlow', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-display: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.text-center {
    text-align: center;
}

.section-intro {
    color: var(--text-muted);
    margin: -10px auto 30px;
    max-width: 780px;
}

.top-gap {
    margin-top: 35px;
}

.neon-text {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5), 0 0 20px rgba(0, 210, 255, 0.3);
}

#loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.45s ease-out;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 150px;
    animation: pulse 1.5s infinite alternate;
}

.glow-text {
    margin-top: 15px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 0.8;
        filter: drop-shadow(0 0 5px var(--primary-color));
    }
    to {
        transform: scale(1.08);
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--primary-color));
    }
}

header {
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #111;
    padding: 8px 0;
}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
}

#navbar {
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    justify-content: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
    background: transparent;
    border: 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 0;
}

.primary-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.primary-btn:hover {
    box-shadow: 0 4px 25px rgba(0, 210, 255, 0.6);
    transform: translateY(-2px);
}

.outline-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.outline-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px var(--primary-color);
}

.btn.subtle-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid #3a3a3a;
}

.btn.subtle-btn:hover {
    color: var(--text-light);
    border-color: #5a5a5a;
}

.full-width {
    width: 100%;
    margin-top: 15px;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hero,
.page-hero {
    min-height: clamp(320px, 52vh, 560px);
    background:
        radial-gradient(circle at 20% 18%, rgba(0, 210, 255, 0.16), transparent 46%),
        radial-gradient(circle at 82% 78%, rgba(0, 85, 255, 0.13), transparent 44%),
        linear-gradient(145deg, #06080b 0%, #0b1118 45%, #06080b 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 96px;
}

.hero {
    min-height: clamp(420px, 66vh, 760px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52));
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.88) contrast(1.08);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero h1,
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.9rem;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: 0.4px;
}

.hero p,
.page-hero p {
    font-size: 1.12rem;
    margin-bottom: 28px;
    color: var(--text-muted);
}

.section-dark {
    background: var(--bg-dark);
    padding: 84px 0;
}

.section-light {
    background: var(--bg-light);
    padding: 84px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 38px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.section-title::after {
    content: '';
    display: block;
    width: 58px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--primary-color);
}

.discount-banner {
    background: linear-gradient(45deg, #001f3f, #0055ff);
    padding: 22px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 34px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.deal-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: 'SNOW FOAM SPECIAL';
    position: absolute;
    top: 16px;
    left: -46px;
    background: var(--primary-color);
    color: #000;
    padding: 5px 44px;
    transform: rotate(-45deg);
    font-weight: bold;
    font-size: 0.74rem;
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 20px auto;
    max-width: 540px;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.check-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero-content {
    margin-inline: auto;
    text-align: center;
}

.home-hero-content .hero-cta .btn {
    padding: 10px 20px;
    min-width: 210px;
}

.service-strip {
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    background: #090909;
    padding: 16px 0;
}

.service-strip-row {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-chip {
    border: 1px solid #2e2e2e;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.86rem;
    letter-spacing: 0.3px;
    color: #d3d3d3;
    background: #121212;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-pill {
    font-size: 0.83rem;
    color: #d9edf2;
    border: 1px solid rgba(0, 210, 255, 0.24);
    background: rgba(0, 210, 255, 0.08);
    border-radius: 999px;
    padding: 6px 12px;
}

.kicker {
    color: var(--primary-color);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.helper-meta {
    color: #c7c7c7;
    font-size: 0.87rem;
    margin-bottom: 14px;
}

.pricing-card {
    background: var(--bg-dark);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    position: relative;
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.05), rgba(10, 10, 10, 1));
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.pricing-meta {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 8px;
    background: #121212;
    border: 1px solid #2e2e2e;
}

.pricing-meta p {
    margin: 0;
    font-size: 0.86rem;
    color: #d8d8d8;
}

.price-tier {
    margin-bottom: 18px;
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
}


.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.gallery-toolbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.gallery-filter {
    border: 1px solid #2f2f2f;
    background: #101010;
    color: #dedede;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
}

.gallery-filter.active {
    border-color: rgba(0, 210, 255, 0.5);
    color: #dffaff;
    box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.12) inset;
}

.media-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #2d2d2d;
    background: #0e0e0e;
    cursor: pointer;
    padding: 0;
}

.media-card-placeholder {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px dashed #3f3f3f;
    background: linear-gradient(160deg, #101010, #181818);
    color: var(--text-muted);
    cursor: default;
}

.media-card-placeholder i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.media-card-placeholder span {
    font-size: 0.88rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.media-card video {
    background: #000;
}

.media-card:hover img,
.media-card:hover video {
    transform: scale(1.06);
}

.media-card-placeholder:hover img,
.media-card-placeholder:hover video {
    transform: none;
}

.video-pill {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 0.78rem;
    padding: 4px 10px;
}

.category-tag {
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgba(6, 6, 6, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 9px;
}

.media-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    font-size: 0.78rem;
    color: #f2f2f2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
}

.media-card.is-hidden {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 22px;
}

.lightbox.active {
    display: flex;
}

.lightbox-stage {
    max-width: min(1100px, 95vw);
    max-height: 86vh;
}

.lightbox-stage img,
.lightbox-stage video {
    width: 100%;
    max-height: 86vh;
    border-radius: 10px;
    border: 1px solid #3a3a3a;
    background: #000;
}

.lightbox-close {
    position: fixed;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #4a4a4a;
    background: rgba(10, 10, 10, 0.9);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.faq-wrap {
    max-width: 900px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 14px 16px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text-light);
}

.faq-item p {
    color: var(--text-muted);
    margin-top: 10px;
}

.contact-cta {
    margin-top: 28px;
    padding: 24px;
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    background: linear-gradient(140deg, rgba(0, 210, 255, 0.08), rgba(0, 85, 255, 0.08));
}

.contact-cta h3 {
    margin-bottom: 8px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid #2f2f2f;
    border-radius: 10px;
    padding: 16px;
}

.review-card p {
    color: #d5d5d5;
    margin-bottom: 10px;
}

.review-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.tracking-note {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-info p {
    margin-bottom: 14px;
    font-size: 1.03rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.after-hours-note {
    color: var(--primary-color);
    font-size: 0.96rem;
    font-style: italic;
    background: rgba(0, 210, 255, 0.1);
    padding: 10px;
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
}

footer {
    background: #050505;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.footer-logo {
    max-width: 210px;
    margin-bottom: 14px;
}

.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.scrolled {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero h1,
    .page-hero h1 {
        font-size: 2.6rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .service-strip-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 18px 0;
        text-align: center;
        border-top: 1px solid #111;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        top: 8px;
        right: 0;
    }

    .hero,
    .page-hero {
        min-height: clamp(280px, 46vh, 420px);
        padding-top: 88px;
    }

    .hero {
        min-height: clamp(350px, 58vh, 520px);
    }

    .hero h1,
    .page-hero h1 {
        font-size: 1.95rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .service-strip {
        padding: 14px 0;
    }

    .service-chip,
    .trust-pill {
        width: 100%;
        text-align: center;
    }

    .link-row {
        flex-direction: column;
    }

    .whatsapp-sticky {
        width: 54px;
        height: 54px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}


