﻿/* ============================================= */
/* STITCHyALCHEMY - MAIN STYLESHEET               */
/* ============================================= */
/* File: style.css                               */
/* Description: Complete styling for the         */
/* StitchyAlchemy one-page website                */
/* ============================================= */
/* ============================================= */
/* 1. CSS VARIABLES & ROOT                       */
/* ============================================= */

:root {
/* Brand Colors */
    --primary: #B8860B;
    --primary-dark: #8B6508;
    --primary-light: #DAA520;
    --accent: #C4956A;
    --accent-light: #E8C9A0;

    /* Neutrals */
    --bg-dark: #0D0D0D;
    --bg-darker: #080808;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #F5F0E8;
    --text-secondary: #B0A898;
    --text-muted: #7A7068;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #B8860B, #DAA520, #C4956A);
    --gradient-dark: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    --gradient-card: linear-gradient(145deg, #1A1A1A, #252525);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(184, 134, 11, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}


/* ============================================= */
/* 2. RESET & BASE STYLES                        */
/* ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 15px;
    position: relative;
    padding: 5px 20px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-divider span {
    width: 60px;
    height: 1px;
    background: var(--gradient-primary);
}

.section-divider i {
    color: var(--primary);
    font-size: 1.2rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


/* ============================================= */
/* 3. PRELOADER                                  */
/* ============================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


/* ============================================= */
/* 4. NAVIGATION                                 */
/* ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.nav-logo:hover .logo-img {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav {
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================= */
/* 5. HERO SECTION                               */
/* ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-darker);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(13, 13, 13, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-logo-wrapper {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--primary-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.7s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.scroll-indicator {
    position: fixed;
    right: 30px;
    bottom: 40px;
    left: auto;
    transform: none;
    text-align: center;
    z-index: 100;
    animation: fadeInUp 1s ease 1.2s both;
}

/* ============================================= /
/ 20. HIDE SCROLL INDICATOR OVERRIDE            /
/ ============================================= */
.scroll-indicator.hide-indicator {
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.5s ease, visibility 0.5s ease !important;
    pointer-events: none !important;
}

.scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    writing-mode: vertical-rl; /* Makes text vertical */
    transform: rotate(180deg);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}



/* ============================================= */
/* 6. ABOUT SECTION                              */
/* ============================================= */
.about-section {
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--gradient-card);
    border: 1px solid rgba(184, 134, 11, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(184, 134, 11, 0.3);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-process {
    margin-bottom: 60px;
}

.process-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.process-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition-fast);
}

.process-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.process-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-item h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-examples {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.about-examples h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-primary);
}

.examples-grid {
    display: grid;
    gap: 15px;
}

.example-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(184, 134, 11, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.example-item:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: translateX(10px);
}

.example-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.example-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}


/* ============================================= */
/* 7. PROBLEM & SOLUTION SECTION                 */
/* ============================================= */
.problem-solution {
    background: var(--bg-darker);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.ps-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.ps-card.problem {
    border-left: 4px solid #e74c3c;
}

.ps-card.solution {
    border-left: 4px solid #2ecc71;
}

.ps-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.ps-header i {
    font-size: 2rem;
}

.ps-card.problem .ps-header i {
    color: #e74c3c;
}

.ps-card.solution .ps-header i {
    color: #2ecc71;
}

.ps-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.ps-card ul {
    list-style: none;
}

.ps-card ul li {
 padding: 12px 0 12px 25px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    line-height: 1.6;}

.ps-card ul li::before {
  content: '•';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;}

.ps-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-divider i {
    font-size: 2rem;
    color: var(--primary);
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}


/* ============================================= */
/* 8. PRODUCTS SECTION                           */
/* ============================================= */
.products-section {
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition-fast);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(184, 134, 11, 0.3);
}

.product-card.featured {
    border-color: rgba(184, 134, 11, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(196, 149, 106, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.product-card:hover .product-image {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(196, 149, 106, 0.1));
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}


/* ============================================= */
/* 9. GALLERY / SLIDER SECTION                   */
/* ============================================= */
.gallery-section {
    background: var(--bg-darker);
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide-content {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.slide-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
}

.slide-1 { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.slide-2 { background: linear-gradient(135deg, #2d1b00, #4a2c00, #6b3f00); }
.slide-3 { background: linear-gradient(135deg, #1b2d1b, #2d4a2d, #3d6b3d); }
.slide-4 { background: linear-gradient(135deg, #2d1b2d, #4a2d4a, #6b3d6b); }
.slide-5 { background: linear-gradient(135deg, #1b2d2d, #2d4a4a, #3d6b6b); }
.slide-6 { background: linear-gradient(135deg, #2d2d1b, #4a4a2d, #6b6b3d); }
.slide-7 { background: linear-gradient(135deg, #1b1b2d, #2d2d4a, #3d3d6b); }
.slide-8 { background: linear-gradient(135deg, #2d1b1b, #4a2d2d, #6b3d3d); }

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.slide-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 5px;
}

.slide-caption p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.8);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 15px; }
.slider-next { right: 15px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-card);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.slide-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-light);
    z-index: 10;
    backdrop-filter: blur(10px);
}

/* Thumbnail Strip */
.thumbnail-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 0;
    max-width: 900px;
    margin: 0 auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-card);
}

.thumbnail-strip::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-strip::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 3px;
}

.thumbnail-strip::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.thumb {
    min-width: 120px;
    padding: 15px 10px;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.thumb:hover,
.thumb.active {
    border-color: var(--primary);
    background: rgba(184, 134, 11, 0.1);
}

.thumb i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.thumb span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}


/* ============================================= */
/* 10. MARKET SECTION                            */
/* ============================================= */
.market-section {
    background: var(--bg-dark);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.market-card {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition-fast);
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(184, 134, 11, 0.3);
}

.market-icon {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.market-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.market-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ============================================= */
/* 11. TARGET MARKET SECTION                     */
/* ============================================= */
.target-section {
    background: var(--bg-darker);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.target-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.target-card.primary {
    border-top: 4px solid var(--primary);
}

.target-card.secondary {
    border-top: 4px solid var(--accent);
}

.target-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.target-card.primary .target-badge {
    background: var(--primary);
    color: #000;
}

.target-card.secondary .target-badge {
    background: var(--accent);
    color: #000;
}

.target-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.target-demographics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.demo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.demo-item i {
    color: var(--primary);
}

.target-card h4 {
    font-size: 1rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.target-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.target-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}


/* ============================================= */
/* 12. COMPETITIVE ADVANTAGE SECTION             */
/* ============================================= */
.advantage-section {
    background: var(--bg-dark);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.advantage-item {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition-fast);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(184, 134, 11, 0.3);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition-fast);
}

.advantage-item:hover .advantage-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.advantage-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.advantage-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ============================================= */
/* 13. CUSTOM ORDERS SECTION                     */
/* ============================================= */
.custom-section {
    background: var(--bg-darker);
}

.custom-content {
    display: grid;
    gap: 50px;
}

.custom-send h3,
.custom-pricing h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-send h3 i,
.custom-pricing h3 i {
    color: var(--primary);
}

.send-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.send-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: var(--transition-fast);
}

.send-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.send-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.send-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.1);
    position: relative;
    transition: var(--transition-fast);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured-price {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured-price:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-tier {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.pricing-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ============================================= */
/* 14. REVENUE STREAMS SECTION                   */
/* ============================================= */
.revenue-section {
    background: var(--bg-dark);
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.revenue-card {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    border: 1px solid rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.revenue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(184, 134, 11, 0.3);
}

.revenue-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(184, 134, 11, 0.1);
    line-height: 1;
}

.revenue-icon {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.revenue-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.revenue-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ============================================= */
/* 15. CTA / NEWSLETTER SECTION                  */
/* ============================================= */
.cta-section {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(13, 13, 13, 1));
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-3px);
}


/* ============================================= */
/* 16. FOOTER                                    */
/* ============================================= */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 0;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--primary);
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* ============================================= */
/* 17. 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%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}


/* ============================================= */
/* 18. ANIMATIONS                                */
/* ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================= */
/* 19. RESPONSIVE DESIGN                         */
/* ============================================= */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ps-grid {
        grid-template-columns: 1fr;
    }

    .ps-divider {
        transform: rotate(90deg);
    }

    .hero-stats {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: var(--transition-medium);
        z-index: 998;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .hero-logo {
        width: 130px;
        height: 130px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .slide-content {
        height: 300px;
    }

    .slide-placeholder i {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured-price {
        transform: scale(1);
    }

    .pricing-card.featured-price:hover {
        transform: translateY(-8px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .about-examples {
        padding: 25px 20px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .send-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .revenue-grid {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================= /
/ 21. GDPR COOKIE CONSENT BANNER                /
/ ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 550px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--radius-md);
    padding: 25px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.cookie-banner.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}

.btn-reject:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-accept {
    background: var(--gradient-primary);
    color: #000;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile adjustments for cookie banner */
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .btn-cookie {
        width: 100%;
    }
}