/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #0b0f19;
    --bg-card: #131b2e;
    --bg-card-hover: #1b2640;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(14, 165, 233, 0.3);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Accent Colors (HSL Tailored) */
    --accent-primary: #0ea5e9;       /* Electric Cyan */
    --accent-primary-hover: #0284c7;
    --accent-secondary: #6366f1;     /* Cyber Indigo */
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --accent-gradient-glow: rgba(99, 102, 241, 0.15);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Shadow & Glass Effects */
    --glass-bg: rgba(11, 15, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

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

body::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    margin: 18px auto;
}

.section-divider.align-left {
    margin-left: 0;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.45);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(11, 15, 25, 0.9);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.logo-accent {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-smooth);
    border-radius: var(--radius-full);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.phone-icon {
    margin-right: 2px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO BANNER SLIDER
   ========================================================================== */
.hero-slider-section {
    height: 90vh;
    min-height: 600px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.0);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 20%, rgba(11, 15, 25, 0.5) 60%, rgba(11, 15, 25, 0.8) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding-top: 80px; /* offset header */
    opacity: 1;
    transform: translateY(0);
}

.slide-content > * {
    opacity: 0;
}

.slide-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    display: inline-block;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.slide-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.slide-actions {
    display: flex;
    gap: 16px;
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-primary);
    width: 32px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* ==========================================================================
   SERVICES & FEATURES
   ========================================================================== */
.features-section {
    background-color: rgba(19, 27, 46, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.4) 0%, rgba(11, 15, 25, 0.6) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(100px circle at top left, rgba(14, 165, 233, 0.1), transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(14, 165, 233, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent-gradient);
    color: #fff;
    transform: scale(1.05) rotate(5deg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT US & STATS
   ========================================================================== */
.about-visual {
    position: relative;
}

.visual-card {
    height: 480px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1b2640 0%, #0b0f19 100%);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.storefront-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.visual-card:hover .storefront-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.visual-glow-bg {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(14, 165, 233, 0.2) 0deg, rgba(99, 102, 241, 0.2) 120deg, transparent 200deg, rgba(14, 165, 233, 0.2) 360deg);
    animation: rotate 15s linear infinite;
    z-index: 1;
}

.storefront-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 280px;
}

.storefront-badge svg {
    color: var(--accent-primary);
    width: 48px;
    height: 48px;
}

.storefront-badge span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.rating-bubble {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #f59e0b; /* Amber star rating */
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.visual-decor {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-primary);
    z-index: 2;
    opacity: 0.3;
}

.visual-decor.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.visual-decor.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

/* Text Content details */
.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-details {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-icon {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.detail-item span {
    font-weight: 500;
    color: var(--text-primary);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: var(--accent-secondary);
    background: rgba(255, 255, 255, 0.04);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   PRODUCT CATEGORIES
   ========================================================================== */
.products-section {
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(19, 27, 46, 0.3) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.7) 0%, rgba(11, 15, 25, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.product-card:hover::after {
    background: var(--accent-primary);
}

/* Special styling for Best Seller Anker Card */
.product-card.featured-category {
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.9) 0%, rgba(27, 38, 64, 0.8) 100%);
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.05);
}

.product-card.featured-category::after {
    background: var(--accent-gradient);
}

.product-card.featured-category:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.featured-category .category-icon {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
}

.category-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.badge-featured {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.product-features li {
    font-size: 0.88rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li::before {
    content: '•';
    color: var(--accent-primary);
    font-size: 1.2rem;
}

/* Brands section */
.brands-marquee-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.marquee-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: 1px;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-item:hover {
    color: var(--text-primary);
    opacity: 1;
    transform: scale(1.08);
}

/* ==========================================================================
   CONTACT US & MAPS
   ========================================================================== */
.contact-section {
    background-color: rgba(19, 27, 46, 0.2);
    border-top: 1px solid var(--border-color);
}

.contact-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.contact-text h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.accent-text {
    color: var(--accent-primary) !important;
    font-weight: 500;
}

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

/* Styled map box */
.map-container {
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    filter: grayscale(0%) invert(0%) !important;
}

/* Form submission banners */
.form-banner {
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid transparent;
}
.success-banner {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}
.error-banner {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Inquiry form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 32px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.25);
    background: rgba(11, 15, 25, 0.8);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 44px;
}

.success-message.active {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.success-message h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 320px;
    margin-bottom: 32px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #060911;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-col .brand-tagline {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.25);
    width: fit-content;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.footer-nav a:hover {
    color: var(--accent-primary);
    transform: translateX(6px);
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-details li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lbl-contact {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.val-contact {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.val-contact a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.val-contact a:hover {
    color: var(--accent-primary);
}

.support-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.footer-hours-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lbl-hours {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.val-hours {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-whatsapp-cta {
    margin-top: 8px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25d366;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.btn-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #0b0f19;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 18px;
    height: 18px;
    transition: stroke 0.3s ease;
}

.footer-copyright-banner {
    grid-column: 1 / -1;
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright-banner a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-copyright-banner a:hover {
    color: var(--accent-primary);
}

/* ==========================================================================
   INTERACTIVE PC BUILDER
   ========================================================================== */
.pc-builder-section {
    background: linear-gradient(180deg, rgba(19, 27, 46, 0.3) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-color);
}

.pc-builder-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin-top: 50px;
}

.builder-options {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.builder-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.group-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-step {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.builder-options .builder-group:last-child .builder-cards {
    grid-template-columns: repeat(2, 1fr);
}

.builder-card {
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.4) 0%, rgba(11, 15, 25, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.builder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background 0.3s ease;
}

.builder-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
    background: rgba(19, 27, 46, 0.6);
}

.builder-card.active {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.8) 0%, rgba(27, 38, 64, 0.6) 100%);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
}

.builder-card.active::before {
    background: var(--accent-gradient);
}

.builder-card h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    flex-grow: 1;
}

.card-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 4px;
}

.builder-pricing-wrapper {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.builder-pricing-card {
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.8) 0%, rgba(11, 15, 25, 0.9) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.pricing-summary-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spec-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-val {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.pricing-display {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.price-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-num {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.price-total {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-container {
        gap: 40px;
    }
    .slide-title {
        font-size: 2.8rem;
    }
    .features-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pc-builder-grid {
        grid-template-columns: 1fr;
    }
    .builder-pricing-wrapper {
        position: relative;
        top: 0;
    }
    .footer-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Navigation */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-main);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    /* Header menu open states */
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero/Slider controls adjust */
    .hero-slider-section {
        height: 80vh;
    }
    
    .slide-title {
        font-size: 2.3rem;
    }
    
    .slider-arrow {
        width: 44px;
        height: 44px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    /* visual about layout stack order */
    .about-visual {
        order: 2;
    }
    .about-content {
        order: 1;
    }
    
    .visual-card {
        height: 380px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-copyright-banner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.8rem;
    }
    .slide-desc {
        font-size: 0.95rem;
    }
    .slide-actions {
        flex-direction: column;
        gap: 12px;
    }
    .features-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    .builder-cards {
        grid-template-columns: 1fr !important;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .logo-accent {
        font-size: 1.2rem;
    }
    .logo-sub {
        font-size: 0.58rem;
        letter-spacing: 2.5px;
    }
}
