/*
Theme Name: Twister IT Solution Custom Theme
Theme URI: https://twisterit.in
Author: Twister IT Engineering
Description: A modern, high-performance custom WordPress theme for Twister IT Solution. Built with raw PHP, HTML5, and vanilla CSS, based on the Neo-Dark Design System.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twister-theme
*/

/* ==========================================================================
   DESIGN TOKENS (NEO-DARK CSS VARIABLES)
   ========================================================================== */
:root {
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Color Palette */
    --color-bg-deep: #091500;      /* Deep forest-night canvas */
    --color-bg-surface: #0e2002;   /* Level 1 cards and sections */
    --color-bg-elevated: #132c03;  /* Level 2 elevated panels and cards */
    --color-bg-input: #091500;     /* Recessed input areas */
    --color-primary: #71f100;      /* Neon Lime Brand Accent */
    --color-primary-hover: #5ec800;/* Darker lime for hover */
    
    /* Text Colors */
    --color-text-primary: #daffbd;  /* Pale Mint White text */
    --color-text-secondary: #9ec880;/* Soft Muted Sage text */
    --color-text-muted: #749c58;    /* Muted Sage caption text */
    
    /* Semantic Colors */
    --color-error: #f3727f;
    --color-warning: #ffa42b;
    --color-info: #539df5;

    /* Border & Divider Colors */
    --border-subdued: #1f4207;
    --border-light: #356810;

    /* Border Radius Scale */
    --radius-badge: 8px;
    --radius-input: 16px;
    --radius-card: 24px;
    --radius-panel: 32px;
    --radius-pill: 9999px;
    --radius-circle: 50%;
    
    /* Elevations & Shadows */
    --shadow-heavy: rgba(0, 0, 0, 0.7) 0px 8px 24px;
    --shadow-medium: rgba(0, 0, 0, 0.5) 0px 8px 16px;
    --shadow-card: rgba(0, 0, 0, 0.4) 0px 4px 12px;
    --border-inset: rgb(9, 21, 0) 0px 1px 0px, rgb(31, 66, 7) 0px 0px 0px 1px inset;
    --border-inset-focus: rgb(9, 21, 0) 0px 1px 0px, rgb(113, 241, 0) 0px 0px 0px 1px inset;

    /* Spacing Base */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.3, 0, 0, 1);
}

/* ==========================================================================
   CSS RESET & CORE DENSE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
}

body {
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
    font-size: 24px;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

p {
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--color-text-muted);
}

/* ==========================================================================
   CONTAINERS & SECTIONS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-bg-deep);
}

.section-elevated {
    background-color: var(--color-bg-surface);
}

/* ==========================================================================
   BUTTONS (TACTILE PILLS)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    border: none;
}

.btn:hover {
    transform: scale(1.04);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #091500;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    color: #091500;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-dark-pill {
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    padding: 8px 16px;
    text-transform: capitalize;
    letter-spacing: normal;
    font-weight: 600;
}

.btn-dark-pill:hover {
    background-color: #1a3b04;
}

/* Circular Action Button */
.play-btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-circle);
    background-color: var(--color-primary);
    color: #091500;
    font-size: 1.25rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.play-btn-circle:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.08);
}

/* ==========================================================================
   HEADER / FLOATING TOP NAVBAR (DESKTOP) & MOBILE BAR
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.site-header .container {
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1. Desktop Top-Center Floating Navbar Pill */
.desktop-floating-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    max-width: 1100px;
    padding: 8px 16px 8px 24px;
    background-color: rgba(9, 21, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(218, 255, 189, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: var(--transition-fast);
}

.site-header.scrolled .desktop-floating-nav {
    background-color: rgba(9, 21, 0, 0.96);
    border-color: rgba(218, 255, 189, 0.18);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.75);
}

.desktop-floating-nav .logo a {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.logo-dot {
    color: var(--color-primary);
    font-weight: 900;
}

/* 2. Expandable Desktop Search Bar */
.nav-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-fast);
}

.nav-search-btn:hover {
    background-color: var(--color-primary);
    color: #091500;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.nav-search-form {
    display: flex;
    align-items: center;
    width: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    position: relative;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.nav-search-wrapper.is-open .nav-search-btn {
    display: none;
}

.nav-search-wrapper.is-open .nav-search-form {
    width: 270px;
    opacity: 1;
    pointer-events: auto;
}

.nav-search-form .search-icon {
    position: absolute;
    left: 12px;
    color: var(--color-text-muted);
    font-size: 13px;
    pointer-events: none;
    transition: var(--transition-fast);
    z-index: 2;
}

.nav-search-input {
    width: 100%;
    background-color: var(--color-bg-elevated);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-pill);
    padding: 7px 34px 7px 34px;
    color: var(--color-text-primary);
    font-size: 13px;
    outline: none;
    transition: var(--transition-smooth);
}

.nav-search-input::placeholder {
    color: var(--color-text-muted);
    font-size: 12px;
}

.nav-search-input:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-surface);
    box-shadow: 0 0 0 2px rgba(113, 241, 0, 0.2);
}

.nav-search-input:focus + .search-icon,
.nav-search-form:focus-within .search-icon {
    color: var(--color-primary);
}

.nav-search-close {
    position: absolute;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 11px;
    transition: var(--transition-fast);
    z-index: 2;
}

.nav-search-close:hover {
    color: var(--color-text-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

/* 3. Desktop Navigation Menu */
.desktop-nav-menu {
    display: flex;
    align-items: center;
}

.desktop-nav-menu .nav-menu {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.desktop-nav-menu .nav-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-text-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.desktop-nav-menu .nav-link:hover {
    color: var(--color-text-primary);
    background-color: rgba(218, 255, 189, 0.05);
}

.desktop-nav-menu .nav-link.active {
    color: var(--color-primary);
    background-color: rgba(113, 241, 0, 0.1);
}

/* 4. Actions (Theme Switcher & Quote) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
    background-color: var(--color-primary);
    color: #091500;
    border-color: var(--color-primary);
    transform: rotate(15deg) scale(1.05);
}

[data-theme="light"] .theme-icon-sun {
    display: none;
}
[data-theme="light"] .theme-icon-moon {
    display: inline-block;
}

[data-theme="dark"] .theme-icon-sun,
:not([data-theme="light"]) .theme-icon-sun {
    display: inline-block;
}
[data-theme="dark"] .theme-icon-moon,
:not([data-theme="light"]) .theme-icon-moon {
    display: none;
}

.btn-nav-quote {
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* 5. Mobile Top Bar */
.mobile-top-bar {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background-color: rgba(9, 21, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(218, 255, 189, 0.06);
}

.mobile-top-bar .logo a,
.mobile-shop-header-top .logo a {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--color-text-primary);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    line-height: 1;
}

.mobile-top-bar .logo .logo-dot,
.mobile-shop-header-top .logo .logo-dot {
    color: var(--color-primary);
    font-weight: 900;
}

.mobile-top-actions,
.mobile-header-top-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    cursor: pointer;
    font-size: 14px;
}

.mobile-search-toggle:hover {
    background-color: var(--color-primary);
    color: #091500;
}

/* 6. Mobile Search Expandable Drawer */
.mobile-search-drawer {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-surface);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subdued);
    box-shadow: var(--shadow-heavy);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-search-drawer.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.mobile-search-form .search-drawer-icon {
    position: absolute;
    left: 14px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.mobile-search-input {
    flex: 1;
    background-color: var(--color-bg-deep);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-pill);
    padding: 10px 16px 10px 38px;
    color: var(--color-text-primary);
    font-size: 14px;
    outline: none;
}

.mobile-search-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    font-size: 16px;
    cursor: pointer;
}

/* ==========================================================================
   HERO / IMMERSIVE HEADER SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(ellipse at bottom, #132c03 0%, #091500 100%);
    position: relative;
    overflow: hidden;
}

#stars-parallax-wrapper {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.star-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2000px;
    will-change: transform;
}

.stars-dots {
    position: absolute;
    left: 0;
    background: transparent;
    border-radius: var(--radius-circle);
}

.stars-dots-secondary {
    top: 2000px;
}

@keyframes starScroll {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

.star-layer-1 {
    animation: starScroll 50s linear infinite;
}
.star-layer-1 .stars-dots {
    width: 2px;
    height: 2px;
}

.star-layer-2 {
    animation: starScroll 100s linear infinite;
}
.star-layer-2 .stars-dots {
    width: 4px;
    height: 4px;
}

.star-layer-3 {
    animation: starScroll 150s linear infinite;
}
.star-layer-3 .stars-dots {
    width: 6px;
    height: 6px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(9, 21, 0, 0.1) 0%, rgba(9, 21, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-bg-surface);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-subdued);
    box-shadow: var(--shadow-card);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--color-primary);
}

.hero-description {
    font-size: 14.5px;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Feature Mockup Widget */
.spotify-widget, .neo-widget {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    border: 1px solid var(--border-subdued);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-fast);
}

.spotify-widget:hover, .neo-widget:hover {
    background-color: var(--color-bg-elevated);
}

.widget-art {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-input);
    background: linear-gradient(135deg, var(--color-primary), #091500);
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: var(--shadow-card);
}

.widget-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-track-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.widget-artist {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ==========================================================================
   FEATURE / SERVICES CARD GRID
   ========================================================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 16px;
}

.spotify-grid, .neo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.5rem;
}

.spotify-card, .neo-card {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-card);
    padding: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid rgba(218, 255, 189, 0.04);
    box-shadow: var(--shadow-card);
    position: relative;
}

.spotify-card:hover, .neo-card:hover {
    background-color: var(--color-bg-elevated);
    border-color: var(--border-light);
    box-shadow: var(--shadow-medium);
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-input);
    background-color: var(--color-bg-deep);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border: 1px solid var(--border-subdued);
    box-shadow: var(--shadow-card);
}

.card-play-trigger {
    position: absolute;
    bottom: 8px;
    right: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-smooth);
    z-index: 10;
}

.spotify-card:hover .card-play-trigger,
.neo-card:hover .card-play-trigger {
    opacity: 1;
    transform: translateY(0);
}

.spotify-card h3, .neo-card h3 {
    font-size: 15px;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-card p, .neo-card p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   ABOUT / STATS SECTION (DENSE & BOLD)
   ========================================================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stats-container {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-panel);
    padding: 2.5rem;
    border: 1px solid var(--border-subdued);
    box-shadow: var(--shadow-heavy);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    padding: 1.5rem;
    border-radius: var(--radius-card);
    background-color: var(--color-bg-deep);
    text-align: center;
    border: 1px solid var(--border-subdued);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   CONTACT SECTION (TACTILE INPUTS & HEAVY SHADOWS)
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-surface);
    color: var(--color-primary);
    font-size: 16px;
    border: 1px solid var(--border-subdued);
    box-shadow: var(--shadow-card);
}

.contact-text h4 {
    font-size: 14px;
    color: var(--color-text-primary);
    margin-bottom: 0.15rem;
}

.contact-text p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
}

.contact-form-panel {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-panel);
    padding: 3rem;
    border: 1px solid var(--border-subdued);
    box-shadow: var(--shadow-heavy);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    font-size: 12px;
    font-weight: 700;
}

.form-input {
    width: 100%;
    background-color: var(--color-bg-input);
    border: 1px solid var(--border-subdued);
    border-radius: var(--radius-input);
    padding: 12px 16px;
    color: var(--color-text-primary);
    font-size: 14px;
    box-shadow: var(--border-inset);
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-bg-elevated);
    box-shadow: var(--border-inset-focus);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================================================
   FOOTER (LARGE STROKE TEXT & FLUTED GLASS PANEL SECTION)
   ========================================================================== */
.site-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-deep);
}

/* 1. Large Stroke Text Header Section */
.footer-stroke-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 5rem;
    padding-bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.footer-stroke-text {
    font-family: var(--font-heading);
    font-size: clamp(60px, 15vw, 210px);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(218, 255, 189, 0.2);
    text-stroke: 1.5px rgba(218, 255, 189, 0.2);
    line-height: 0.75;
    user-select: none;
    -webkit-user-select: none;
    margin-bottom: -1rem;
    opacity: 0.55;
    letter-spacing: -0.04em;
    white-space: nowrap;
    text-align: center;
    transition: var(--transition-smooth);
}

/* 2. Fluted Glass Dark Surface Panel */
.footer-glass-panel {
    position: relative;
    width: 100%;
    z-index: 10;
    min-height: 380px;
    background: linear-gradient(180deg, rgba(14, 32, 2, 0.95) 0%, rgba(9, 21, 0, 0.98) 100%);
    border-top: 1px solid rgba(218, 255, 189, 0.1);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5);
}

/* Fluted Glass Shader-style Texture */
.fluted-glass-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        90deg,
        rgba(218, 255, 189, 0.015) 0px,
        rgba(218, 255, 189, 0.015) 2px,
        transparent 2px,
        transparent 14px
    );
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 100%);
}

.footer-content-container {
    position: relative;
    z-index: 10;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Left Brand Section */
.footer-left-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 380px;
    width: 100%;
}

.footer-tagline {
    font-size: 19px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.35;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-social-wrapper {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-circle);
    background-color: var(--color-bg-elevated);
    color: var(--color-text-primary);
    border: 1px solid var(--border-subdued);
    transition: var(--transition-fast);
}

.social-icon-link:hover {
    background-color: var(--color-primary);
    color: #091500;
    border-color: var(--color-primary);
    transform: translateY(-3px) scale(1.05);
}

.footer-copyright-text {
    font-size: 12.5px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Right Navigation Columns */
.footer-links-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 140px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav-list a {
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--color-primary);
    transform: translateX(3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-layout, .about-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        height: 60px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-form-panel {
        padding: 2rem;
    }
}

/* ==========================================================================
   DYNAMIC MARQUEE SECTIONS
   ========================================================================== */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.25rem 0;
    user-select: none;
    display: flex;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation-play-state: running;
    transition: animation-play-state 0.3s ease;
    will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scroll-right {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.animate-left {
    animation: scroll-left 35s linear infinite;
}

.animate-right {
    animation: scroll-right 35s linear infinite;
}

.speed-fast {
    animation-duration: 40s;
}
.speed-slow {
    animation-duration: 75s;
}

/* Client Brand Logo Marquee */
.client-marquee-section {
    background-color: var(--color-bg-deep);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(218, 255, 189, 0.04);
    position: relative;
    z-index: 5;
}

.client-marquee-section::before,
.client-marquee-section::after,
.testimonials-section::before,
.testimonials-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.client-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-deep) 0%, transparent 100%);
}

.client-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-deep) 0%, transparent 100%);
}

.client-marquee-section .marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 3.5rem;
    padding-right: 3.5rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    transition: var(--transition-fast);
}

.logo-item svg {
    height: 30px;
    width: auto;
    max-width: 120px;
    fill: var(--color-text-secondary);
    opacity: 0.5;
    transition: var(--transition-fast);
}

.logo-item:hover svg {
    fill: var(--color-primary);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(113, 241, 0, 0.4));
}

/* Testimonials Marquee */
.testimonials-section {
    background-color: var(--color-bg-deep);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-deep) 0%, transparent 100%);
}

.testimonials-section::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-deep) 0%, transparent 100%);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonials-section .marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 1.5rem;
    padding-right: 1.5rem;
}

.testimonial-card {
    background-color: var(--color-bg-surface);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    width: 360px;
    height: 185px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(218, 255, 189, 0.04);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    background-color: var(--color-bg-elevated);
    border-color: var(--border-light);
    transform: scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.6) 0px 8px 16px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--color-warning);
    font-size: 13px;
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--color-text-primary);
    background-color: #132c03;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
}

.testimonial-card:hover .author-avatar {
    background-color: var(--color-primary);
    color: #091500;
    border-color: var(--color-primary);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.author-meta {
    font-size: 11.5px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   MOBILE FLOATING BOTTOM NAVIGATION DOCK
   ========================================================================== */
.mobile-floating-nav {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 24px);
    max-width: 440px;
    transition: transform 0.35s cubic-bezier(0.3, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-floating-nav.is-hidden {
    transform: translate(-50%, calc(100% + 30px));
    opacity: 0;
    pointer-events: none;
}

.floating-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
    border-radius: var(--radius-pill);
    background-color: rgba(9, 21, 0, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(218, 255, 189, 0.12);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
    position: relative;
}

.floating-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: color 0.2s ease;
    border-radius: var(--radius-pill);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.floating-nav-item .nav-icon {
    font-size: 16px;
    margin-bottom: 2px;
    transition: transform 0.2s ease;
}

.nav-cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--color-primary);
    color: #091500;
    font-size: 9.5px;
    font-weight: 900;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1.5px solid #091500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .nav-cart-badge {
    background: #4ab300;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 2px 6px rgba(9, 21, 0, 0.15);
}

.floating-nav-item.active {
    color: var(--color-primary);
}

.floating-nav-item.active .nav-icon {
    transform: scale(1.1);
}

/* Sliding active indicator pill */
.floating-nav-indicator {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    border-radius: var(--radius-pill);
    background: rgba(113, 241, 0, 0.15);
    border: 1px solid rgba(113, 241, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.3, 0, 0.2, 1), width 0.3s ease;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS (DESKTOP & MOBILE NAVIGATION)
   ========================================================================== */
@media (max-width: 900px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0;
        pointer-events: auto;
    }

    .site-header .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        display: block;
    }

    .container {
        padding: 0 12px;
    }

    .desktop-floating-nav {
        display: none;
    }

    .mobile-top-bar {
        display: flex;
    }

    .mobile-search-drawer {
        display: block;
    }

    .mobile-floating-nav {
        display: block;
    }

    .footer-links-grid {
        display: none;
    }

    .footer-content-container {
        padding-top: 6.5rem;
        padding-bottom: 4.5rem;
    }

    body {
        padding-bottom: 84px;
    }

    .testimonial-card {
        width: 300px;
        height: 165px;
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 12.5px;
        -webkit-line-clamp: 3;
    }
    
    .logo-item svg {
        height: 24px;
        max-width: 100px;
    }
    
    .client-marquee-section::before,
    .client-marquee-section::after,
    .testimonials-section::before,
    .testimonials-section::after {
        width: 60px;
    }
    
    .animate-left, .animate-right {
        animation-duration: 25s;
    }
}

/* ==========================================================================
   LIGHT THEME DESIGN TOKENS & SURFACE OVERRIDES
   ========================================================================== */
[data-theme="light"] {
    --color-bg-deep: #f6fcf0;
    --color-bg-surface: #ffffff;
    --color-bg-elevated: #eaf7df;
    --color-bg-input: #f2faec;
    --color-primary: #4ab300;
    --color-primary-hover: #3d9400;
    
    --color-text-primary: #091500;
    --color-text-secondary: #2f5213;
    --color-text-muted: #5b7d3d;

    --border-subdued: #dbeec6;
    --border-light: #bde49c;

    --shadow-heavy: rgba(9, 21, 0, 0.12) 0px 12px 28px;
    --shadow-medium: rgba(9, 21, 0, 0.08) 0px 8px 16px;
    --shadow-card: rgba(9, 21, 0, 0.05) 0px 4px 12px;
    --border-inset: rgb(246, 252, 240) 0px 1px 0px, rgb(219, 238, 198) 0px 0px 0px 1px inset;
    --border-inset-focus: rgb(246, 252, 240) 0px 1px 0px, rgb(74, 179, 0) 0px 0px 0px 1px inset;
}

[data-theme="light"] .desktop-floating-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #dbeec6;
    box-shadow: 0 10px 30px rgba(9, 21, 0, 0.08);
}

[data-theme="light"] .site-header.scrolled .desktop-floating-nav {
    background-color: rgba(255, 255, 255, 0.98);
    border-color: #bde49c;
    box-shadow: 0 14px 36px rgba(9, 21, 0, 0.12);
}

[data-theme="light"] .nav-search-input {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .nav-search-input:focus {
    background-color: #ffffff;
    border-color: var(--color-primary);
}

[data-theme="light"] .desktop-nav-menu .nav-link:hover {
    color: #091500;
    background-color: rgba(74, 179, 0, 0.08);
}

[data-theme="light"] .desktop-nav-menu .nav-link.active {
    color: #4ab300;
    background-color: rgba(74, 179, 0, 0.12);
}

[data-theme="light"] .mobile-top-bar,
[data-theme="light"] .mobile-shop-header-bar {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #dbeec6;
    box-shadow: 0 4px 18px rgba(9, 21, 0, 0.05);
}

[data-theme="light"] .mobile-search-drawer {
    background-color: #ffffff;
    border-bottom-color: #dbeec6;
}

[data-theme="light"] .mobile-search-input {
    background-color: #f2faec;
    border-color: #dbeec6;
    color: #091500;
}

[data-theme="light"] .floating-nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: #dbeec6;
    box-shadow: 0 12px 35px rgba(9, 21, 0, 0.12);
}

[data-theme="light"] .floating-nav-item {
    color: #2f5213;
}

[data-theme="light"] .floating-nav-item.active {
    color: #4ab300;
}

[data-theme="light"] .floating-nav-indicator {
    background: rgba(74, 179, 0, 0.12);
    border-color: rgba(74, 179, 0, 0.3);
}

[data-theme="light"] .hero-section {
    background: radial-gradient(ellipse at bottom, #eaf7df 0%, #f6fcf0 100%);
}

[data-theme="light"] .hero-overlay {
    background: radial-gradient(circle, rgba(246, 252, 240, 0.1) 0%, rgba(246, 252, 240, 0.7) 100%);
}

[data-theme="light"] .hero-badge {
    background-color: #ffffff;
    border-color: #dbeec6;
    color: #3d9400;
}

[data-theme="light"] .card-image-wrapper {
    background-color: #f2faec;
    border-color: #dbeec6;
}

[data-theme="light"] .widget-art {
    background: linear-gradient(135deg, var(--color-primary), #eaf7df);
}

[data-theme="light"] .btn-primary {
    color: #ffffff;
}

[data-theme="light"] .play-btn-circle {
    color: #ffffff;
}

[data-theme="light"] .author-avatar {
    background-color: #eaf7df;
    color: #091500;
    border-color: #bde49c;
}

[data-theme="light"] .mobile-search-toggle,
[data-theme="light"] .mobile-search-close,
[data-theme="light"] .theme-toggle-btn {
    background-color: #ffffff;
    color: #091500;
    border-color: #dbeec6;
}

[data-theme="light"] .mobile-search-toggle:hover,
[data-theme="light"] .theme-toggle-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

[data-theme="light"] .client-marquee-section::before,
[data-theme="light"] .testimonials-section::before {
    background: linear-gradient(to right, var(--color-bg-deep) 0%, transparent 100%);
}

[data-theme="light"] .client-marquee-section::after,
[data-theme="light"] .testimonials-section::after {
    background: linear-gradient(to left, var(--color-bg-deep) 0%, transparent 100%);
}

[data-theme="light"] .footer-stroke-text {
    -webkit-text-stroke: 1.5px rgba(9, 21, 0, 0.12);
    text-stroke: 1.5px rgba(9, 21, 0, 0.12);
    opacity: 0.6;
}

[data-theme="light"] .footer-glass-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f6fcf0 100%);
    border-top: 1px solid #dbeec6;
    box-shadow: 0 -20px 40px rgba(9, 21, 0, 0.04);
}

[data-theme="light"] .fluted-glass-texture {
    background: repeating-linear-gradient(
        90deg,
        rgba(9, 21, 0, 0.012) 0px,
        rgba(9, 21, 0, 0.012) 2px,
        transparent 2px,
        transparent 14px
    );
}

[data-theme="light"] .social-icon-link {
    background-color: #f2faec;
    color: #091500;
    border-color: #dbeec6;
}

[data-theme="light"] .social-icon-link:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

