/* ============================================
   CAMPA COLA - Premium Distributorship Website
   Custom CSS Stylesheet
   ============================================ */

/* ============================================
   1. CSS VARIABLES & ROOT
   ============================================ */
:root {
    /* Primary Brand Colors */
    --color-primary: #E91E8C;
    --color-primary-dark: #C4187A;
    --color-primary-light: #FF4DB2;
    
    /* Secondary Brand Colors */
    --color-secondary: #6B21A8;
    --color-secondary-dark: #581C87;
    --color-secondary-light: #7C3AED;
    
    /* Accent Colors - Product Flavors */
    --color-orange: #FF6B00;
    --color-lemon: #84CC16;
    --color-cola: #7C2D12;
    --color-cyan: #06B6D4;
    
    /* Background Colors - Light Theme */
    --color-white: #FFFFFF;
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F8F5FF;
    --color-bg-tertiary: #F3E8FF;
    --color-bg-card: #FFFFFF;
    
    /* Text Colors */
    --color-text-primary: #1F1F1F;
    --color-text-secondary: #4B5563;
    --color-text-muted: #6B7280;
    --color-text-light: #9CA3AF;
    
    /* Border & Divider Colors */
    --color-border: #E5E7EB;
    --color-border-light: #F3F4F6;
    --color-border-brand: rgba(233, 30, 140, 0.2);
    
    /* Status Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;
    
    /* Brand Gradients */
    --gradient-primary: linear-gradient(135deg, #E91E8C 0%, #6B21A8 100%);
    --gradient-primary-hover: linear-gradient(135deg, #FF4DB2 0%, #7C3AED 100%);
    --gradient-hero: linear-gradient(135deg, #6B21A8 0%, #E91E8C 50%, #FF6B00 100%);
    --gradient-cta: linear-gradient(135deg, #E91E8C 0%, #6B21A8 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F8F5FF 100%);
    --gradient-text: linear-gradient(135deg, #E91E8C 0%, #6B21A8 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-brand: 0 10px 40px rgba(233, 30, 140, 0.2);
    --shadow-card: 0 4px 20px rgba(107, 33, 168, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(233, 30, 140, 0.15);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
    --z-preloader: 9999;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
    
    /* Header */
    --header-height: 80px;

    /* Viewport helper (updated via JS for mobile browser UI) */
    --vh: 1vh;
}

/* ============================================
   2. CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Inputs */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

/* ============================================
   3. UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
}

.section-title span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 1.1em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-secondary {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-tertiary);
    border-color: var(--color-primary);
}

.btn-warning {
    background: var(--color-warning);
    color: var(--color-dark);
}

.btn-warning:hover {
    background: #FCD34D;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--text-base);
}

.btn-block {
    width: 100%;
}

/* ============================================
   5. PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-bottle {
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, var(--color-gray-700) 0%, var(--color-gray-800) 100%);
    border-radius: 10px 10px 20px 20px;
    position: relative;
    margin: 0 auto var(--space-lg);
    overflow: hidden;
}

.preloader-bottle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-gray-600);
    border-radius: 5px 5px 0 0;
}

.preloader-bottle .bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, var(--color-primary) 100%);
    animation: fillUp 2s ease-in-out infinite;
}

.preloader-bottle .bubbles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: bubble 1s ease-in-out infinite;
}

.preloader-bottle .bubbles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.preloader-bottle .bubbles span:nth-child(2) { left: 30%; animation-delay: 0.2s; }
.preloader-bottle .bubbles span:nth-child(3) { left: 50%; animation-delay: 0.4s; }
.preloader-bottle .bubbles span:nth-child(4) { left: 70%; animation-delay: 0.6s; }
.preloader-bottle .bubbles span:nth-child(5) { left: 85%; animation-delay: 0.8s; }

@keyframes fillUp {
    0%, 100% { height: 30%; }
    50% { height: 80%; }
}

@keyframes bubble {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-60px) scale(0.5); opacity: 0; }
}

.preloader p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-primary);
    letter-spacing: 0.2em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: var(--z-fixed);
    background: var(--color-white);
    transition: all var(--transition-base);
    border-bottom: 1px solid var(--color-border);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    height: 50px;
}
.logo img{
    height: 100%;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--text-2xl);
    box-shadow: var(--shadow-brand);
}

.logo-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
    letter-spacing: 0.05em;
}

.logo-text span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
}

/* Business Login Link */
.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary) !important;
    font-weight: 600;
}

.nav-login i {
    font-size: 1.1em;
}

.nav-login:hover {
    color: var(--color-secondary) !important;
}

.nav-login::after {
    display: none;
}




/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: var(--z-fixed);
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    /*
      Full-screen (visible) hero under the fixed header.
      Total first-fold = header + hero = 100vh.
    */
    margin-top: var(--header-height);
    height: calc((var(--vh, 1vh) * 100) - var(--header-height));
    min-height: calc((var(--vh, 1vh) * 100) - var(--header-height));
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    right: -200px;
    filter: blur(100px);
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -100px;
    left: -100px;
    filter: blur(80px);
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 0, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(120px);
    opacity: 0.3;
}

/* Hero Swiper */
.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-wrapper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    height: 100%;
}

/* Full-screen hero background images + centered content */
.hero-slide {
  
  position: relative;
  display: flex;
  align-items: center;
  
  height: 100%;
  min-height: 100%;
  padding-top: 0;

  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Full-screen hero background images (no new local assets required) */
.hero-slide[data-bg="cola"] {
   /* --hero-bg: url('images/products/campa-slide1.png');*/
}

.hero-slide[data-bg="orange"] {
   /* --hero-bg: url('images/products/campa-slide3.png');*/
}

.hero-slide[data-bg="lemon"] {
    /*--hero-bg: url('images/products/campa-silde-2.png');*/
}

/* Overlay for readability */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg,
    rgba(3, 7, 18, 0.70) 0%,
    rgba(3, 7, 18, 0.60) 55%,
    rgba(3, 7, 18, 0.75) 100%
  ); */
  z-index: 1;
}

/* Center content vertically + horizontally */
.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-btns {
  justify-content: center;
}


.hero-text {
    padding: var(--space-4xl) 0;
    max-width: 860px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease forwards;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-5xl), 8vw, var(--text-8xl));
    font-weight: 400;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    color: #FFD700;
    position: relative;
}

.hero-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-bottom: var(--space-2xl);
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-bottle {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.hero-bottle .bottle-img {
    width: 300px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0.4;
    filter: blur(40px);
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

.bottle-glow.orange {
    background: radial-gradient(circle, var(--color-orange) 0%, transparent 70%);
}

.bottle-glow.lemon {
    background: radial-gradient(circle, var(--color-lemon) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Customization */
.hero-swiper .swiper-pagination {
    bottom: 26px;
    right: 40px;
    left: auto;
    width: auto;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-gray-600);
    opacity: 1;
    transition: all var(--transition-base);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 40px;
    border-radius: var(--radius-full);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-base);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    display: none;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--color-primary);
}

.hero-swiper .swiper-button-prev i,
.hero-swiper .swiper-button-next i {
    font-size: var(--text-2xl);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-gray-500);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.scroll-indicator .text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.stats-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card-hover);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-2xl);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    color: var(--color-text-primary);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-sm);
}

/* ============================================
   9. PRODUCTS SECTION - House of Campa
   ============================================ */
.products-section {
    padding: var(--space-4xl) 0 var(--space-5xl);
    background: linear-gradient(180deg, #2D1B69 0%, #1a0f3d 100%);
    position: relative;
    overflow: hidden;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 10;
}

.products-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-white);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.products-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 20;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
    padding: 0;
    position: relative;
    z-index: 30;
}

.nav-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nav-arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Products Carousel */
.products-carousel {
    position: relative;
    width: 100%;
}

.products-swiper {
    width: 100%;
    padding: 10px 0 20px;
}

.products-swiper .swiper-slide {
    height: auto;
}

.products-swiper .swiper-wrapper {
    align-items: stretch;
}

/* Product Card */
.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Flavor-specific backgrounds */
.product-card[data-flavor="cola"] {
    background: linear-gradient(180deg, #6b5b9a 0%, #4a3d7a 60%, #3d2d6a 100%);
}

.product-card[data-flavor="orange"] {
    background: linear-gradient(180deg, #f28c4e 0%, #e8752d 60%, #d96520 100%);
}

.product-card[data-flavor="lemon"] {
    background: linear-gradient(180deg, #f7ca45 0%, #edb830 60%, #daa520 100%);
}

.product-card[data-flavor="powerup"] {
    background: linear-gradient(180deg, #1e5799 0%, #1a4d85 60%, #163d6a 100%);
}

.product-card[data-flavor="cricket"] {
    background: linear-gradient(180deg, #5dade2 0%, #4a9fd4 60%, #3498db 100%);
}

/* Curved highlight overlay */
.product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    pointer-events: none;
}

.product-label {
    padding: 24px 20px 16px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-brand {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.product-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-white);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.product-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 10px 20px;
    position: relative;
    z-index: 2;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
    transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .product-label {
        padding: 20px 16px 12px;
    }
    
    .product-card {
        min-height: 300px;
    }
}

/* Responsive - Mobile Landscape */
@media (max-width: 768px) {
    .products-header {
        margin-bottom: var(--space-xl);
    }
    
    .product-card {
        min-height: 280px;
    }
    
    .product-label {
        padding: 16px 12px 10px;
    }
    
    .product-brand {
        font-size: 10px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
}

/* Responsive - Mobile Portrait */
@media (max-width: 480px) {
    .products-section {
        padding: var(--space-3xl) 0;
    }
    
    .product-card {
        border-radius: 16px;
        min-height: 240px;
    }
    
    .product-label {
        padding: 14px 10px 8px;
    }
    
    .product-brand {
        font-size: 9px;
        letter-spacing: 0.15em;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-image {
        padding: 0 8px 12px;
    }
}

/* ============================================
   10. ABOUT PREVIEW SECTION
   ============================================ */
.about-preview-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--color-primary) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--color-secondary) 0%, transparent 50%);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.image-stack {
    position: relative;
}

.image-main {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-main img {
  width: 80%; 
    height: 450px;
    object-fit: cover;
}

.image-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(233, 30, 140, 0.2) 100%);
    z-index: 1;
}

.image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 5px solid var(--color-white);
    box-shadow: var(--shadow-lg);
}

.image-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brand);
    animation: float 4s ease-in-out infinite;
}

.badge-year {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-white);
    line-height: 1;
}

.badge-text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.about-preview-content {
    padding-left: var(--space-xl);
}

.about-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.about-features {
    margin-bottom: var(--space-2xl);
}

.about-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.about-features li:last-child {
    border-bottom: none;
}

.about-features li i {
    color: var(--color-primary);
    font-size: var(--text-xl);
}

.about-features li span {
    color: var(--color-text-primary);
}

/* ============================================
   11. PLANS SECTION
   ============================================ */
.plans-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.plan-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card-hover);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.featured {
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-bg-tertiary) 100%);
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-brand);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card.featured::before {
    opacity: 1;
}

.plan-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.plan-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-3xl);
}

.plan-name {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.plan-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.plan-price {
    text-align: center;
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.plan-price .currency {
    font-size: var(--text-2xl);
    color: var(--color-text-muted);
    vertical-align: top;
}

.plan-price .amount {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price .unit {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

.plan-features {
    margin-bottom: var(--space-xl);
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.plan-features li i {
    color: var(--color-success);
    font-size: var(--text-lg);
}

/* ============================================
   12. WARNING SECTION
   ============================================ */
.warning-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-secondary);
}

.warning-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.08) 0%, var(--color-white) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-warning);
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.warning-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: #B45309;
    margin-bottom: var(--space-md);
}

.warning-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

/* ============================================
   13. REQUIREMENTS SECTION
   ============================================ */
.requirements-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: start;
}

.requirements-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.requirement-item:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-card-hover);
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.requirement-info h4 {
    font-size: var(--text-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.requirement-info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Requirements CTA */
.requirements-cta {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.cta-card {
    padding: var(--space-2xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    border: none;
    text-align: center;
    box-shadow: var(--shadow-brand);
}

.cta-card .cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--text-4xl);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-card .btn {
    margin-bottom: var(--space-lg);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
}

.cta-features span i {
    color: var(--color-white);
}

/* ============================================
   14. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.05) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials-swiper {
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.testimonials-swiper .swiper-slide {
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.5s ease;
    filter: blur(1px);
}

.testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    z-index: 2;
}

.testimonials-swiper .swiper-slide-prev,
.testimonials-swiper .swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.9);
    filter: blur(0);
}

.testimonial-card {
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(233, 30, 140, 0.12);
    border-color: rgba(233, 30, 140, 0.2);
}

.swiper-slide-active .testimonial-card {
    border-color: var(--color-primary);
    box-shadow: 0 25px 60px rgba(233, 30, 140, 0.2);
}

.testimonial-quote {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    color: var(--color-primary);
    font-size: var(--text-4xl);
    opacity: 0.15;
}

.testimonial-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: var(--text-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--color-primary);
}

/* Testimonial Navigation Arrows */
.testimonials-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-size: var(--text-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-arrow:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.3);
}

.testimonial-prev {
    margin-left: -10px;
}

.testimonial-next {
    margin-right: -10px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: 0 40px;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
    
    .testimonial-prev {
        margin-left: -5px;
    }
    
    .testimonial-next {
        margin-right: -5px;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        padding: 0 30px;
    }
    
    .testimonial-arrow {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   15. CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-5xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bubbles span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: riseBubble 8s linear infinite;
}

.cta-bubbles span:nth-child(1) { left: 10%; width: 30px; height: 30px; animation-delay: 0s; }
.cta-bubbles span:nth-child(2) { left: 25%; width: 15px; height: 15px; animation-delay: 1s; }
.cta-bubbles span:nth-child(3) { left: 50%; width: 25px; height: 25px; animation-delay: 2s; }
.cta-bubbles span:nth-child(4) { left: 70%; width: 20px; height: 20px; animation-delay: 3s; }
.cta-bubbles span:nth-child(5) { left: 85%; width: 35px; height: 35px; animation-delay: 4s; }

@keyframes riseBubble {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content h2 span {
    color: #FBBF24;
}

.cta-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer {
    background: var(--color-text-primary);
}

.footer-top {
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer .logo-text {
    color: var(--color-white);
}

.footer .logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-lg);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.footer-links ul li a:hover {
    color: var(--color-primary);
    padding-left: var(--space-sm);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: var(--color-primary);
    font-size: var(--text-lg);
    margin-top: 3px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding: var(--space-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ============================================
   17. BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--text-xl);
    box-shadow: var(--shadow-glow);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 60px rgba(233, 30, 140, 0.6);
}

/* ============================================
   17b. WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: var(--color-white);
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--color-text-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-text-primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   18. FORM STYLES (For Apply & Contact Pages)
   ============================================ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.form-label .required {
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-primary);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.form-control::placeholder {
    color: var(--color-text-light);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
    outline: none;
}

.form-control.error {
    border-color: var(--color-error);
}

.form-control.success {
    border-color: var(--color-success);
}

.error-message {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-error);
    margin-top: var(--space-xs);
    min-height: 20px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

select.form-control option {
    background: var(--color-white);
    color: var(--color-text-primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   19. PAGE HEADERS (For Inner Pages)
   ============================================ */
.page-header {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, #2D1B69 0%, #6B21A8 40%, #E91E8C 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.3) 0%, transparent 60%);
    filter: blur(80px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-header-content h1 span {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.breadcrumb span {
    color: #FFD700;
    font-weight: 600;
}

/* ============================================
   20. RESPONSIVE STYLES
   ============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    :root {
        --container-max: 1140px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    :root {
        --container-max: 960px;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    :root {
        --container-max: 720px;
        --header-height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        transition: right var(--transition-base);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-bottle .bottle-img {
        width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .about-preview-content {
        padding-left: 0;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-cta {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-list {
        grid-template-columns: 1fr;
    }
    
    .warning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row,
    .form-row.three-cols {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-bottle .bottle-img {
        width: 150px;
    }
    
    .bottle-glow {
        width: 200px;
        height: 200px;
    }
    
    .stat-card {
        padding: var(--space-lg);
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
    
    .products-swiper .swiper-slide {
        width: 280px;
    }
    
    .plan-card {
        padding: var(--space-xl);
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-sm);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-swiper .swiper-pagination {
        right: 18px;
        bottom: 18px;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
}

/* ============================================
   21. ANIMATION CLASSES
   ============================================ */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.6s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* Stagger Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ============================================
   22. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ============================================
   23. ABOUT PAGE STYLES
   ============================================ */

/* About Intro Section */
.about-intro-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, transparent 100%);
    pointer-events: none;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-intro-content .section-tag {
    margin-bottom: var(--space-md);
}

.about-intro-content .section-title {
    margin-bottom: var(--space-xl);
}

.about-intro-content .lead-text {
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.about-intro-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.about-stat {
    text-align: center;
}

.about-stat .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat .stat-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-intro-image {
    position: relative;
}

.about-intro-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-intro-image .image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-intro-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(233, 30, 140, 0.15) 100%);
}

.about-intro-image .floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-primary);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-white);
    box-shadow: var(--shadow-brand);
}

.about-intro-image .floating-card i {
    font-size: var(--text-2xl);
}

.about-intro-image .floating-card span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Timeline Section */
.timeline-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.timeline-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: var(--space-3xl);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.timeline-marker span {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-primary);
}

.timeline-content {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    position: relative;
    max-width: 400px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.timeline-content:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -11px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -11px;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.03) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.mv-card {
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mission-card {
    background: linear-gradient(145deg, rgba(233, 30, 140, 0.05) 0%, var(--color-white) 100%);
    border: 1px solid rgba(233, 30, 140, 0.15);
    box-shadow: var(--shadow-card);
}

.mission-card:hover {
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.12);
}

.vision-card {
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.05) 0%, var(--color-white) 100%);
    border: 1px solid rgba(255, 107, 0, 0.15);
    box-shadow: var(--shadow-card);
}

.vision-card:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.12);
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.mission-card .mv-icon {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
    color: var(--color-primary);
}

.vision-card .mv-icon {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    color: var(--color-orange);
}

.mv-icon i {
    font-size: var(--text-3xl);
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.mv-card > p {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.mv-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text-secondary);
}

.mv-list li i {
    color: var(--color-success);
    font-size: var(--text-lg);
}

/* Values Section */
.values-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.04) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.value-card {
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.value-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(107, 33, 168, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-3xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(233, 30, 140, 0.1);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Partnership Section */
.partnership-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: start;
}

.partnership-content .lead-text {
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
}

.partnership-content > p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.advantage-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.advantage-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card-hover);
}

.advantage-item i {
    width: 50px;
    height: 50px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.advantage-item h4 {
    font-size: var(--text-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.advantage-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.stats-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.stats-header {
    padding: var(--space-xl);
    background: var(--gradient-primary);
    text-align: center;
}

.stats-header h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-white);
}

.stats-header span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.stats-body {
    padding: var(--space-xl);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row .stat-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-row .stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.stats-footer {
    padding: 0 var(--space-xl) var(--space-xl);
}

/* Manufacturing Section */
.manufacturing-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.mfg-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.mfg-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.mfg-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-2xl);
}

.mfg-card h3 {
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.mfg-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.certifications {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.certifications h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xl);
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.cert-badge i {
    color: var(--color-success);
    font-size: var(--text-lg);
}

/* ============================================
   26. APPLY PAGE STYLES
   ============================================ */

/* Application Section */
.application-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
}

.application-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Application Form Wrapper */
.application-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-card);
}

.application-form-wrapper .form-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.application-form-wrapper .form-header p {
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
}

/* Form Progress Bar */
.form-progress {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--color-border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    white-space: nowrap;
}

/* Form Sections */
.form-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.section-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-white);
}

.form-section-header h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
}

/* Input Group */
.input-group {
    display: flex;
    align-items: stretch;
}

.input-prefix {
    display: flex;
    align-items: center;
    padding: 0 var(--space-md);
    background: var(--color-bg-secondary);
    border: 2px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    color: var(--color-text-muted);
    font-weight: 500;
}

.input-group .form-control {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

/* Character Count */
.char-count {
    display: block;
    text-align: right;
    font-size: var(--text-xs);
    color: var(--color-text-light);
    margin-top: var(--space-xs);
}

/* Optional Label */
.optional {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    font-weight: 400;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.form-actions .btn {
    flex: 1;
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: var(--space-4xl) var(--space-2xl);
}

.form-success-message .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
    font-size: 50px;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-success-message h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-success);
    margin-bottom: var(--space-md);
}

.form-success-message p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.reference-number {
    display: inline-block;
    padding: var(--space-md) var(--space-2xl);
    background: var(--color-bg-secondary);
    border: 2px dashed var(--color-success);
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-success);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xl);
}

/* Application Sidebar */
.application-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.sidebar-card.highlight {
    border-color: var(--color-primary);
    background: linear-gradient(145deg, var(--color-bg-tertiary) 0%, var(--color-white) 100%);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.sidebar-card-header i {
    color: var(--color-primary);
    font-size: var(--text-xl);
}

.sidebar-card-header h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin: 0;
}

.sidebar-card-body {
    padding: var(--space-lg);
}

/* Investment Items */
.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed var(--color-border);
}

.investment-item:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-md);
}

.inv-type {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.inv-amount {
    font-family: var(--font-display);
    font-size: var(--text-base);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Document List */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.doc-list li i {
    color: var(--color-success);
}

.doc-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: var(--color-info);
}

.doc-note i {
    margin-top: 2px;
}

/* Mini Timeline */
.timeline-mini {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.timeline-mini-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.tm-number {
    width: 30px;
    height: 30px;
    background: var(--color-bg-tertiary);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    color: var(--color-primary);
    flex-shrink: 0;
}

.tm-content h5 {
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.tm-content p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Help Contacts */
.sidebar-card-body > p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.help-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.help-link:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
}

.help-link i {
    color: var(--color-primary);
    font-size: var(--text-lg);
}

/* Security Notice Section */
.security-notice-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-primary);
}

.security-notice {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05) 0%, var(--color-white) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.security-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.security-content h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: #047857;
    margin-bottom: var(--space-sm);
}

.security-content p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

/* Btn Small */
.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: var(--text-xs);
}

/* Apply Page Responsive */
@media (max-width: 1200px) {
    .application-grid {
        grid-template-columns: 1fr;
    }
    
    .application-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .application-form-wrapper {
        padding: var(--space-xl);
    }
    
    .application-sidebar {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .security-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .form-row.three-cols {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-prefix {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        border-right: 2px solid var(--color-gray-700);
        border-bottom: none;
        justify-content: center;
        padding: var(--space-sm);
    }
    
    .input-group .form-control {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
}

/* ============================================
   24. LEGAL PAGES (Terms & Privacy)
   ============================================ */

.legal-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, transparent 100%);
    pointer-events: none;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-meta {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 500;
}

.legal-meta span i {
    font-size: var(--text-base);
}

.legal-intro {
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05) 0%, rgba(107, 33, 168, 0.05) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-bottom: var(--space-3xl);
}

.legal-intro p {
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    line-height: 1.8;
    margin: 0;
}

.legal-block {
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

.legal-block:last-of-type {
    border-bottom: none;
}

.legal-block h2 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
}

.block-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.legal-block h3 {
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin: var(--space-xl) 0 var(--space-md);
    font-weight: 600;
}

.legal-block p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.legal-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.legal-list li strong {
    color: var(--color-text-primary);
}

.legal-warning {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.legal-warning i {
    color: #ef4444;
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.legal-warning p {
    margin: 0;
    color: var(--color-text-secondary);
}

.legal-info {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.legal-info i {
    color: #3b82f6;
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.legal-info p {
    margin: 0;
    color: var(--color-text-secondary);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.legal-grid-item {
    padding: var(--space-xl);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.legal-grid-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.1);
    transform: translateY(-3px);
}

.legal-grid-item i {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    display: block;
}

.legal-grid-item h4 {
    font-size: var(--text-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.legal-grid-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.right-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.right-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.1);
}

.right-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.right-content h4 {
    font-size: var(--text-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.right-content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.legal-contact {
    padding: var(--space-xl);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    margin-top: var(--space-lg);
}

.legal-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
}

.legal-contact p:last-child {
    margin-bottom: 0;
}

.legal-contact p i {
    color: var(--color-primary);
    font-size: var(--text-lg);
    width: 24px;
}

.legal-footer {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05) 0%, rgba(107, 33, 168, 0.05) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
}

.legal-footer p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.legal-footer .btn {
    display: inline-flex;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-block h2 {
        font-size: var(--text-xl);
    }
    
    .block-number {
        width: 35px;
        height: 35px;
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-warning,
    .legal-info {
        flex-direction: column;
        text-align: center;
    }
    
    .right-item {
        flex-direction: column;
        text-align: center;
    }
    
    .right-icon {
        margin: 0 auto;
    }
}

/* ============================================
   25. CONTACT PAGE STYLES
   ============================================ */

/* Contact Info Section */
.contact-info-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-primary);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.contact-card {
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: var(--color-bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-3xl);
    transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.contact-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.contact-card .contact-link {
    display: block;
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.contact-card .contact-link:hover {
    color: var(--color-primary);
}

.contact-card address.contact-link {
    font-style: normal;
    font-size: var(--text-base);
    line-height: 1.5;
}

.contact-card .contact-note {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Main Section */
.contact-main-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    padding: var(--space-3xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.form-header {
    margin-bottom: var(--space-2xl);
}

.form-header p {
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--color-white);
    font-size: var(--text-sm);
}

.checkbox-label a {
    color: var(--color-primary);
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.info-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.info-card-header i {
    color: var(--color-primary);
    font-size: var(--text-xl);
}

.info-card-header h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin: 0;
}

.info-card-body {
    padding: var(--space-lg);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.hours-row.closed span:last-child {
    color: var(--color-error);
}

.quick-links li {
    margin-bottom: var(--space-sm);
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.quick-links a:hover {
    color: var(--color-primary);
    padding-left: var(--space-sm);
}

.quick-links a i {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-xl);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Regional Offices Section */
.regional-offices-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.office-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.office-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.office-region {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.office-card h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.office-card address {
    font-style: normal;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.office-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.office-contact a:hover {
    color: var(--color-primary);
}

.office-contact a i {
    color: var(--color-primary);
}

/* Notice Section */
.notice-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

.notice-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, var(--color-white) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-success);
    font-size: var(--text-3xl);
    flex-shrink: 0;
}

.notice-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: #047857;
    margin-bottom: var(--space-md);
}

.notice-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.notice-content p strong {
    color: var(--color-text-primary);
}

.notice-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-card {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-actions {
        justify-content: center;
    }
}

/* ============================================
   24. FRANCHISE PAGE STYLES
   ============================================ */

/* Franchise Intro Section */
.franchise-intro-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.franchise-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, transparent 100%);
    pointer-events: none;
}

.franchise-intro-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.intro-feature:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.intro-feature i {
    color: var(--color-primary);
    font-size: var(--text-xl);
}

.intro-feature span {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Business Models Section */
.business-models-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.business-models-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.business-models-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.business-model {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-3xl);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-card);
}

.business-model:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.15);
    transform: translateY(-5px);
}

.business-model.featured {
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(233, 30, 140, 0.2);
}

.business-model .featured-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.4);
}

.model-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-white) 100%);
    border-bottom: 1px solid var(--color-border);
}

.model-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-3xl);
    flex-shrink: 0;
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.model-title {
    flex: 1;
}

.model-title h3 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.model-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.model-investment {
    text-align: right;
}

.model-investment .label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.model-investment .amount {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.model-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
}

.model-description h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-xl);
}

.model-description h4:first-child {
    margin-top: 0;
}

.model-description p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.feature-list li i {
    color: var(--color-success);
    margin-top: 3px;
    flex-shrink: 0;
}

.model-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.detail-card {
    padding: var(--space-lg);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.detail-card.highlight {
    background: linear-gradient(145deg, var(--color-bg-tertiary) 0%, var(--color-white) 100%);
    border-color: var(--color-border-brand);
}

.detail-card h5 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.detail-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: var(--text-sm);
}

.breakdown-list li:last-child {
    border-bottom: none;
}

.breakdown-list li span:first-child {
    color: var(--color-text-muted);
}

.breakdown-list li span:last-child {
    color: var(--color-text-primary);
    font-weight: 500;
}

.profit-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.profit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profit-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.profit-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.model-footer {
    padding: var(--space-xl) var(--space-2xl);
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

/* Comparison Table Section */
.comparison-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-lg);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--color-bg-secondary);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    font-weight: 400;
}

.comparison-table th.highlight {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
}

.comparison-table td {
    background: var(--color-white);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-text-primary);
}

.comparison-table td.highlight {
    background: var(--color-bg-tertiary);
}

.comparison-table tbody tr:hover td {
    background: var(--color-bg-secondary);
}

.comparison-table tbody tr:hover td.highlight {
    background: var(--color-bg-tertiary);
}

.comparison-table .yes {
    color: var(--color-success);
    font-size: var(--text-xl);
}

.comparison-table .no {
    color: var(--color-error);
    font-size: var(--text-xl);
}

/* Process Section */
.process-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top center, rgba(233, 30, 140, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-orange));
    z-index: 0;
    border-radius: 2px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--color-white);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-2xl);
    transition: all var(--transition-base);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.15);
}

.process-step:hover .step-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(233, 30, 140, 0.3);
}

.process-step h4 {
    font-size: var(--text-base);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Documents Section */
.documents-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-primary);
    position: relative;
}

.documents-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--color-bg-secondary) 100%);
    pointer-events: none;
}

.documents-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: 2;
}

.documents-content > p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.doc-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.doc-category {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.doc-category:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.1);
    transform: translateX(5px);
}

.doc-category h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.doc-category h4 i {
    color: var(--color-primary);
}

.doc-category ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.doc-category ul li {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    padding-left: var(--space-md);
    position: relative;
}

.doc-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.documents-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.documents-cta .cta-card {
    padding: var(--space-xl);
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-gray-700);
    text-align: center;
}

.documents-cta .cta-card.highlight {
    background: linear-gradient(145deg, rgba(233, 30, 140, 0.1) 0%, var(--color-gray-800) 100%);
    border-color: rgba(233, 30, 140, 0.3);
}

.documents-cta .cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: rgba(233, 30, 140, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--text-2xl);
}

.documents-cta .cta-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.documents-cta .cta-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, #2D1B69 0%, #1a0f3d 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(233, 30, 140, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(107, 33, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .section-header {
    position: relative;
    z-index: 2;
}

.faq-section .section-tag {
    background: rgba(233, 30, 140, 0.2);
    color: #f472b6;
}

.faq-section .section-title {
    color: var(--color-white);
}

.faq-section .section-title span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(233, 30, 140, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(107, 33, 168, 0.1) 100%);
    box-shadow: 0 10px 40px rgba(233, 30, 140, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    gap: var(--space-md);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h4 {
    font-size: var(--text-base);
    color: var(--color-white);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.faq-question i {
    color: var(--color-primary);
    font-size: var(--text-xl);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 140, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: var(--text-sm);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-base);
}

.faq-cta .btn {
    display: inline-flex;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: var(--space-md) var(--space-lg);
    }
    
    .faq-question h4 {
        font-size: var(--text-sm);
    }
    
    .faq-answer p {
        padding: 0 var(--space-lg) var(--space-md);
    }
}

/* Franchise Page Responsive */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .model-header {
        flex-wrap: wrap;
    }
    
    .model-investment {
        width: 100%;
        text-align: left;
        margin-top: var(--space-md);
        padding-top: var(--space-md);
        border-top: 1px solid var(--color-gray-700);
    }
    
    .model-body {
        grid-template-columns: 1fr;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-cta {
        position: static;
        flex-direction: row;
    }
    
    .documents-cta .cta-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .intro-features {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .doc-category ul {
        grid-template-columns: 1fr;
    }
    
    .documents-cta {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        margin: 0 calc(var(--container-padding) * -1);
        border-radius: 0;
    }
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 100px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-marker {
        left: 40px;
        width: 60px;
        height: 60px;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -11px;
        border-top: none;
        border-right: none;
        border-bottom: 1px solid var(--color-gray-700);
        border-left: 1px solid var(--color-gray-700);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .manufacturing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .manufacturing-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Success/Error States */
.alert {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-error);
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading .spinner {
    margin-right: var(--space-sm);
}

/* ============================================
   FRANCHISE DASHBOARD STYLES
   ============================================ */

/* Dashboard Section */
.dashboard-section {
    padding: 100px 0 80px;
    background: var(--color-bg-secondary);
    min-height: calc(100vh - 80px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-2xl);
    padding: 30px 0;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-user {
    padding: 0 25px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
    text-align: center;
}

.sidebar-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--color-warning);
}

.sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-user h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.sidebar-user span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--color-white);
}

.sidebar-menu a.active {
    background: rgba(233, 30, 140, 0.15);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

.sidebar-menu i {
    font-size: 1.2rem;
}

.sidebar-label {
    padding: 15px 25px 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dashboard Main Content */
.dashboard-main {
    min-width: 0;
}

/* Welcome Banner */
.welcome-banner {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 35px;
    color: var(--color-white);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.welcome-banner h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    position: relative;
}

.welcome-banner p {
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 500px;
    position: relative;
}

.welcome-banner .btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 12px 25px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.welcome-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 25px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.stat-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.primary {
    background: rgba(233, 30, 140, 0.1);
    color: var(--color-primary);
}

.stat-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.stat-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-info);
}

.stat-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.stat-content h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 3px;
}

.stat-content p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Dashboard Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.info-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.info-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-card-header h3 {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.info-card-header h3 i {
    color: var(--color-primary);
}

.info-card-header a {
    color: var(--color-primary);
    font-size: 0.85rem;
    text-decoration: none;
}

.info-card-body {
    padding: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.info-item-content {
    flex: 1;
}

.info-item-content label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item-content p {
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.quick-action-btn i {
    font-size: 1.8rem;
}

.quick-action-btn span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-warning);
}

.status-badge.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-2xl);
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.profile-avatar-lg {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 700;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.profile-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.profile-info h2 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.profile-info p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 15px;
}

.profile-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
}

.profile-badge.status-success {
    background: rgba(16, 185, 129, 0.2);
    color: #7dff9c;
}

.profile-badge.status-warning {
    background: rgba(245, 158, 11, 0.2);
    color: #ffe066;
}

.profile-badge.status-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ff8a8a;
}

/* Profile Cards Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.profile-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.profile-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-card-header i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.profile-card-header h3 {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-weight: 600;
    margin: 0;
}

.profile-card-body {
    padding: 25px;
}

.detail-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 40%;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    color: var(--color-primary);
    font-size: 1rem;
}

.detail-value {
    width: 60%;
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.detail-value.highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* ID Documents */
.id-docs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.id-doc-item {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.id-doc-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
}

.id-doc-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.id-doc-item p {
    font-size: 1rem;
    color: var(--color-text-primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    margin: 0;
}

.id-doc-item p.not-provided {
    color: var(--color-text-muted);
    font-style: italic;
    font-family: inherit;
    font-weight: normal;
}

/* LOI Container */
.loi-container {
    max-width: 800px;
}

/* Notice Boxes */
.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    border-left: 4px solid;
}

.notice-box.info {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--color-info);
}

.notice-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--color-warning);
}

.notice-box i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-box.info i {
    color: var(--color-info);
}

.notice-box.warning i {
    color: var(--color-warning);
}

.notice-content h4 {
    font-size: 1rem;
    color: var(--color-text-primary);
    margin-bottom: 5px;
}

.notice-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Document Card */
.document-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 30px;
}

.document-preview {
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.document-preview::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
}

.document-icon {
    width: 100px;
    height: 120px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.document-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, transparent 50%, var(--color-border) 50%);
    border-radius: 0 var(--radius-md) 0 0;
}

.document-icon i {
    font-size: 3rem;
    color: var(--color-primary);
}

.document-icon span {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.document-preview h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 5px;
    position: relative;
}

.document-preview p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    position: relative;
    margin: 0;
}

.document-body {
    padding: 30px;
}

.doc-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.doc-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
}

.doc-detail-item i {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.doc-detail-content label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.doc-detail-content p {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    font-weight: 600;
    margin: 0;
}

.doc-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-doc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-doc.primary {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.btn-doc.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand);
}

.btn-doc.outline {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-doc.outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-doc.disabled {
    background: var(--color-border);
    color: var(--color-text-muted);
    cursor: not-allowed;
}

.btn-doc.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Document Contents */
.doc-contents {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-card);
    padding: 30px;
}

.doc-contents h3 {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-contents h3 i {
    color: var(--color-primary);
}

.contents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-md);
}

.content-item i {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.content-item span {
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-header::before {
        display: none;
    }
    
    .profile-badges {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dashboard-section {
        padding: 80px 0 60px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid,
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-details {
        grid-template-columns: 1fr;
    }
    
    .contents-list {
        grid-template-columns: 1fr;
    }
    
    .doc-actions {
        flex-direction: column;
    }
    
    .btn-doc {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-label,
    .detail-value {
        width: 100%;
    }
    
    .id-docs {
        grid-template-columns: 1fr;
    }
    
    .welcome-banner h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================================
   MOBILE COMPACT + HEADER CTA VISIBILITY (Patch)
   - Keeps Business Login + Apply Now visible in header on mobile
   - Makes spacing/typography more compact on small screens
   ========================================================== */

@media (max-width: 992px) {
    /* Header: keep key actions visible in the top bar */
    .navbar {
        gap: 0.75rem;
    }

    /* Default mobile state: show only Login + CTA in header row */
    .nav-menu {
        position: static;
        top: auto;
        right: auto;
        width: auto;
        height: var(--header-height);
        background: transparent;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
        box-shadow: none;
        transition: none;
    }

    /* Hide the main links (Home/About/Franchise/Contact) in the header row */
    .nav-menu > .nav-item:nth-child(-n+4) {
        display: none;
    }

    .nav-menu .nav-link {
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-full);
        text-transform: none;
        letter-spacing: 0;
        background: rgba(107, 33, 168, 0.06);
        border: 1px solid rgba(107, 33, 168, 0.12);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover {
        background: rgba(107, 33, 168, 0.10);
    }

    .nav-menu .nav-link.nav-login {
        background: rgba(233, 30, 140, 0.10);
        border-color: rgba(233, 30, 140, 0.22);
        color: var(--color-primary) !important;
    }

    .nav-menu .nav-item.nav-cta .btn {
        padding: 0.55rem 0.9rem;
        border-radius: var(--radius-full);
        box-shadow: none;
        white-space: nowrap;
    }

    .nav-menu .nav-item.nav-cta .btn i {
        margin-right: 6px;
    }

    .nav-toggle {
        margin-left: 0.25rem;
    }

    /* When menu opens: restore full off-canvas navigation */
    .nav-menu.active {
        position: fixed;
        top: 0;
        right: 0;
        width: min(86vw, 320px);
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        padding: var(--space-2xl) var(--space-xl);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: var(--z-fixed);
    }

    .nav-menu.active > .nav-item:nth-child(-n+4) {
        display: block;
    }

    .nav-menu.active .nav-link {
        background: transparent;
        border: none;
        padding: var(--space-sm) 0;
        border-radius: 0;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .nav-menu.active .nav-link::after {
        display: block;
    }

    .nav-menu.active .nav-link.nav-login {
        background: transparent;
        border: none;
    }

    .nav-menu.active .nav-item.nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.25rem;
        box-shadow: var(--shadow-brand);
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 64px;
        --container-padding: 0.95rem;

        /* Compact spacing scale for mobile */
        --space-lg: 1.15rem;
        --space-xl: 1.4rem;
        --space-2xl: 1.9rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3.2rem;
        --space-5xl: 3.8rem;

        /* Slight typography tightening */
        --text-base: 0.95rem;
        --text-lg: 1.05rem;
    }

    /* Header compact */
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
        border-radius: 14px;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .nav-toggle {
        width: 28px;
        height: 22px;
        gap: 5px;
    }

    .nav-menu {
        gap: 0.4rem;
    }

    .nav-menu .nav-link {
        padding: 0.45rem 0.65rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .nav-menu .nav-item.nav-cta .btn {
        padding: 0.48rem 0.7rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .nav-menu .nav-item.nav-cta .btn i {
        margin-right: 5px;
    }

    /* Hero spacing compact */
    .hero-text {
        padding: var(--space-xl) 0;
    }

    .hero-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
        margin-bottom: var(--space-md);
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
    }

    .hero-btns {
        gap: 0.75rem;
    }

    .btn-lg {
        padding: 0.78rem 1.2rem;
    }

    /* Section headers tighter */
    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    /* Cards / grids compact */
    .stat-card {
        padding: var(--space-md);
        border-radius: 16px;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }

    .stats-grid {
        gap: var(--space-md);
    }

    .products-swiper .swiper-slide {
        width: 260px;
    }

    /* CTA section tighter */
    .cta-section {
        padding: var(--space-3xl) 0;
    }

    .cta-buttons .btn {
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .nav-menu .nav-link {
        padding: 0.42rem 0.55rem;
        font-size: 0.74rem;
    }

    .nav-menu .nav-item.nav-cta .btn {
        padding: 0.44rem 0.6rem;
        font-size: 0.74rem;
    }
}

/* ==========================================================
   MOBILE HEADER: SHOW ONLY APPLY BUTTON IN TOP BAR
   - Business Login stays inside hamburger menu (off-canvas)
   ========================================================== */
/* ==========================================================
   MOBILE HEADER: SHOW ONLY APPLY BUTTON IN TOP BAR
   - Business Login stays inside hamburger menu (off-canvas)
   ========================================================== */
@media (max-width: 992px) {
  .navbar { gap: 0.75rem; }

  /* Top bar: only Apply visible */
  .nav-menu {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: var(--header-height);
    background: transparent;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    box-shadow: none;
    transition: none;
  }

  /* Hide everything except Apply in header row */
  .nav-menu > .nav-item { display: none; }
  .nav-menu > .nav-item.nav-cta { display: block; }

  .nav-menu .nav-item.nav-cta .btn {
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-full);
    box-shadow: none;
    white-space: nowrap;
  }

  .nav-toggle { display: flex; margin-left: 0.25rem; }

  /* When hamburger opens: show full menu (including Business Login) */
  .nav-menu.active {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 320px);
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: var(--z-fixed);
  }

  .nav-menu.active > .nav-item { display: block; }

  .nav-menu.active .nav-link {
    background: transparent;
    border: none;
    padding: var(--space-sm) 0;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .nav-menu.active .nav-link::after { display: block; }

  .nav-menu.active .nav-item.nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    box-shadow: var(--shadow-brand);
  }
  .hero-section {
    position: relative;
    margin-top: var(--header-height);
    height: calc((var(--vh, .5vh) * 40) - var(--header-height));
    min-height: calc((var(--vh, .5vh) * 40) - var(--header-height));
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--gradient-hero);
}
}

@media (max-width: 576px) {
  :root {
    --header-height: 64px;
    --container-padding: 0.95rem;
  }

  .logo-icon { width: 40px; height: 40px; font-size: 1.35rem; border-radius: 14px; }
  .logo-text { font-size: 1.35rem; }

  .nav-menu .nav-item.nav-cta .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.78rem;
  }

  .hero-text { padding: var(--space-2xl) 0; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}


