/* ===================================
   EXOTIC PLUG MINI MART - STYLES
   Phoenix's #1 Exotic Mini Mart
   Premium Landing Page Design
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Bold Neon on Dark */
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --secondary: #ff3366;
    --secondary-glow: rgba(255, 51, 102, 0.3);
    --accent: #ffcc00;
    --accent-glow: rgba(255, 204, 0, 0.3);
    --cyan: #00ccff;
    --purple: #9933ff;
    
    --bg-dark: #050508;
    --bg-darker: #020203;
    --bg-card: #0a0a10;
    --bg-card-hover: #0f0f18;
    --bg-card-alt: #12121a;
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #606075;
    
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    --gradient-secondary: linear-gradient(135deg, #ff3366 0%, #ffcc00 100%);
    --gradient-dark: linear-gradient(180deg, #050508 0%, #0a0a10 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    
    /* Typography */
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 140px;
    --container-max: 1280px;
    
    /* Effects */
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-xs: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --shadow-glow: 0 0 60px var(--primary-glow);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   CUSTOM CURSOR
   =================================== */

/* Main cursor dot */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    mix-blend-mode: difference;
}

/* Cursor ring/follower */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

/* Cursor states */
.cursor.hover {
    width: 20px;
    height: 20px;
    background: var(--secondary);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--secondary);
    opacity: 0.4;
}

.cursor.clicking {
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor-follower.clicking {
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

/* Hide default cursor on desktop */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }
    
    a, button, [role="button"], input, textarea, select, .btn, .nav-link, .mobile-menu-btn {
        cursor: none;
    }
}

/* Disable custom cursor on touch devices */
@media (hover: none) or (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
    
    body, a, button {
        cursor: auto;
    }
}

/* ===================================
   MOBILE TAP EFFECT
   =================================== */

.tap-effect {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.6;
    animation: tapRipple 0.6s ease-out forwards;
}

@keyframes tapRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Secondary ring effect */
.tap-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    animation: tapRing 0.6s ease-out 0.1s forwards;
}

@keyframes tapRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Smaller ripples for scroll trail */
.tap-effect.small {
    animation: tapRippleSmall 0.4s ease-out forwards;
}

.tap-effect.small::before {
    display: none;
}

@keyframes tapRippleSmall {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid rgba(0, 255, 136, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--cyan) 100%);
    border-radius: 10px;
    border: 3px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #33ffaa 0%, var(--primary) 100%);
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary);
}

::-webkit-scrollbar-corner {
    background: var(--bg-dark);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   BACKGROUND EFFECTS
   =================================== */

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: 10%;
    left: -200px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 35%;
    right: 5%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: var(--cyan);
    bottom: -100px;
    right: 25%;
    animation-delay: -15s;
}

.shape-5 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: 55%;
    left: 10%;
    animation-delay: -8s;
}

.shape-6 {
    width: 250px;
    height: 250px;
    background: var(--purple);
    top: 20%;
    left: 30%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(40px, -40px) scale(1.1) rotate(90deg); }
    50% { transform: translate(-30px, 30px) scale(0.9) rotate(180deg); }
    75% { transform: translate(30px, 40px) scale(1.05) rotate(270deg); }
}

/* ===================================
   ANNOUNCEMENT BAR
   =================================== */

.announcement-bar {
    background: var(--gradient-primary);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    overflow: hidden;
    transition: var(--transition);
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.announcement-content {
    display: flex;
    gap: 40px;
    animation: scroll-left 60s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.announcement-divider {
    color: rgba(0, 0, 0, 0.3);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-link.cta {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 24px 120px;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    animation: fadeInUp 0.8s ease;
}

.hero-badge.secondary {
    background: rgba(255, 204, 0, 0.1);
    border-color: rgba(255, 204, 0, 0.3);
    color: var(--accent);
    animation-delay: 0.1s;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(70px, 14vw, 160px);
    line-height: 0.9;
    letter-spacing: 6px;
}

.title-line.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-subtitle em {
    color: var(--primary);
    font-style: normal;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 20px 44px;
    font-size: 17px;
}

.btn-icon {
    font-size: 18px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px 50px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.neon-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.1);
    animation: pulse 5s infinite ease-in-out;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.neon-circle.secondary {
    width: 900px;
    height: 900px;
    border-color: rgba(255, 51, 102, 0.08);
    animation-delay: -1.5s;
}

.neon-circle.tertiary {
    width: 1100px;
    height: 1100px;
    border-color: rgba(0, 204, 255, 0.05);
    animation-delay: -3s;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.3; }
}

/* Hero Scroll Tags */
.hero-scroll-tags {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0.4;
}

.hero-scroll-tags {
    display: flex;
    gap: 20px;
    animation: scroll-tags 20s linear infinite;
}

.scroll-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    white-space: nowrap;
    color: var(--text-muted);
}

@keyframes scroll-tags {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   TRUST BAR
   =================================== */

.trust-bar {
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 70px;
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    letter-spacing: 3px;
    line-height: 1.1;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 24px auto 0;
    line-height: 1.8;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-primary);
}

.about-cta {
    margin-top: 40px;
}

.about-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.visual-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.visual-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.visual-card.delay-1 { transition-delay: 0.1s; }
.visual-card.delay-2 { transition-delay: 0.2s; }
.visual-card.delay-3 { transition-delay: 0.3s; }

.visual-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.visual-card:hover .card-glow {
    opacity: 0.05;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.card-emoji {
    font-size: 40px;
    margin-bottom: 8px;
}

.card-text {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.02) 50%, transparent 100%);
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-category {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.product-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-category:hover {
    border-color: rgba(0, 255, 136, 0.15);
}

.product-category.featured {
    border-color: rgba(0, 255, 136, 0.3);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(0, 255, 136, 0.03) 100%);
}

.category-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.category-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon {
    font-size: 40px;
}

.category-info h3 {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.category-tagline {
    color: var(--text-muted);
    font-size: 14px;
}

.category-content > p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
}

.category-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.highlight-group h4 {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.highlight-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-group li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.highlight-group li::before {
    content: '→';
    color: var(--primary);
    flex-shrink: 0;
}

/* ===================================
   EXPERIENCE SECTION
   =================================== */

.experience {
    background: var(--bg-card);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text .lead {
    font-size: 22px;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 40px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.experience-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-30px);
}

.experience-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.experience-item:hover {
    background: rgba(0, 255, 136, 0.03);
    border-color: rgba(0, 255, 136, 0.1);
}

.exp-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.exp-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.exp-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.experience-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.exp-quote-card {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.08) 0%, rgba(255, 51, 102, 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.15);
    position: relative;
}

.quote-marks {
    font-family: var(--font-display);
    font-size: 100px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.5;
    opacity: 0.5;
}

.exp-quote {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    margin: 20px 0;
    line-height: 1.3;
}

.exp-quote .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-author {
    color: var(--text-muted);
    font-size: 14px;
}

.exp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.exp-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feat-icon {
    font-size: 20px;
}

/* ===================================
   REVIEWS SECTION
   =================================== */

.reviews {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--bg-card-alt);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    border-color: rgba(255, 204, 0, 0.2);
    transform: translateY(-5px);
}

.review-stars {
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    font-size: 13px;
    color: var(--text-muted);
}

.reviews-cta {
    display: flex;
    justify-content: center;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.2);
    padding: 20px 40px;
    border-radius: 60px;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--accent);
    line-height: 1;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars {
    font-size: 16px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   HOURS SECTION
   =================================== */

.hours {
    background: var(--bg-dark);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.hours-intro {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 17px;
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-20px);
}

.hours-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.hours-row.highlight {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.15);
}

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: var(--text-secondary);
}

.hours-badge {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.2);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-top: 30px;
}

.note-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.hours-note p {
    font-size: 14px;
    color: var(--text-secondary);
}

.hours-note strong {
    color: var(--accent);
}

.hours-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.status-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.pulse {
    width: 14px;
    height: 14px;
    background: var(--text-muted);
    border-radius: 50%;
    position: relative;
}

.status-indicator.open .pulse {
    background: var(--primary);
    animation: pulse-glow 2s infinite;
}

.status-indicator.closed .pulse {
    background: var(--secondary);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 0 10px transparent; }
}

.status-text {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
}

.status-indicator.open .status-text {
    color: var(--primary);
}

.status-indicator.closed .status-text {
    color: var(--secondary);
}

.next-open {
    color: var(--text-muted);
    font-size: 14px;
}

.quick-contact {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-contact h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.quick-contact p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* ===================================
   LOCATION SECTION
   =================================== */

.location {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    background: var(--bg-card-alt);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.location-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.location-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
}

.loc-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.loc-details h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.loc-details address {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.loc-details p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.location-landmark {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: var(--border-radius-xs);
    font-size: 13px !important;
    margin-bottom: 24px !important;
}

.parking-card {
    border-color: rgba(255, 204, 0, 0.25);
    background: linear-gradient(145deg, var(--bg-card-alt) 0%, rgba(255, 204, 0, 0.03) 100%);
}

.parking-highlight {
    color: var(--accent) !important;
    font-size: 18px !important;
    margin-bottom: 16px !important;
}

.parking-directions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.direction-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 10px 14px;
    background: rgba(255, 204, 0, 0.05);
    border-radius: var(--border-radius-xs);
}

.direction-step::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.phone-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--text-primary);
}

.contact-extras {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-extras p {
    margin-bottom: 8px;
}

.contact-extras a {
    color: var(--primary);
    text-decoration: none;
}

.contact-extras a:hover {
    text-decoration: underline;
}

.map-section {
    position: relative;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 450px;
    background: var(--bg-card);
}

.map-container iframe {
    filter: grayscale(100%) invert(92%) contrast(90%);
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq {
    background: var(--bg-card);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.15);
}

.faq-question {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--primary);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 60px);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.cta-detail.parking {
    color: var(--accent);
    background: rgba(255, 204, 0, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.detail-icon {
    font-size: 20px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    top: -200px;
    right: -200px;
}

.cta-circle.secondary {
    background: var(--secondary);
    bottom: -200px;
    left: -200px;
    top: auto;
    right: auto;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-darker);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 22px;
}

.footer-tagline {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-stars {
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-section address,
.footer-section p,
.footer-section span,
.footer-section a {
    display: block;
    font-style: normal;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-parking {
    color: var(--accent) !important;
    margin-top: 12px;
}

.footer-phone {
    font-family: var(--font-display);
    font-size: 20px !important;
    color: var(--primary) !important;
    letter-spacing: 1px;
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-seo {
    font-size: 11px !important;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bg-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .about-content,
    .experience-content,
    .hours-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .announcement-bar {
        display: none;
    }
    
    .navbar {
        top: 0;
    }
    
    .hero {
        padding: 120px 20px 80px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 30px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-scroll-tags {
        display: none;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 16px;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
    }
    
    .exp-features {
        grid-template-columns: 1fr;
    }
    
    .category-highlights {
        grid-template-columns: 1fr;
    }
    
    .product-category {
        padding: 30px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-card {
        text-align: center;
    }
    
    .parking-directions {
        align-items: center;
    }
    
    .direction-step {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rating-badge {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .exp-quote {
        font-size: 22px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape,
    .announcement-content,
    .hero-scroll-tags {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .navbar,
    .floating-shapes,
    .bg-grid,
    .hero-visual,
    .scroll-indicator,
    .map-container,
    .announcement-bar,
    .back-to-top,
    .cta-bg-elements {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title,
    .hero-title .title-line {
        -webkit-text-fill-color: black;
        color: black;
    }
}
