/* ================================================================
   Cre8tive Apparel — Master Stylesheet
   Designed & Developed by Novelio Technologies | 2026
   ================================================================ */

/* ----------------------------------------------------------------
   1. Google Fonts Import
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ----------------------------------------------------------------
   2. CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
  --primary:        #0A2B6E;
  --primary-light:  #1A4FBF;
  --primary-lighter:#2563EB;
  --accent:         #F5A623;
  --accent-dark:    #D4881A;
  --accent-light:   #FFC857;
  --dark:           #0A0E1A;
  --dark-2:         #0F1629;
  --surface:        #F4F7FF;
  --surface-2:      #EEF2FF;
  --white:          #FFFFFF;
  --text-dark:      #111827;
  --text-body:      #374151;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --glass-bg:       rgba(255,255,255,0.08);
  --glass-border:   rgba(255,255,255,0.15);
  --glass-bg-dark:  rgba(10,14,26,0.6);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 20px 60px rgba(10,43,110,0.15);
  --shadow-xl:      0 40px 80px rgba(10,43,110,0.2);
  --shadow-gold:    0 8px 32px rgba(245,166,35,0.3);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-full:    9999px;
  --transition-fast:0.2s cubic-bezier(0.23,1,0.32,1);
  --transition-med: 0.4s cubic-bezier(0.23,1,0.32,1);
  --transition-slow:0.7s cubic-bezier(0.23,1,0.32,1);
  --nav-height:     80px;
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Inter', sans-serif;
  --font-display:   'Bebas Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ----------------------------------------------------------------
   4. Typography
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { line-height: 1.75; color: var(--text-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.display-text {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white { color: var(--white) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-accent { color: var(--accent) !important; }
.text-center { text-align: center; }

/* ----------------------------------------------------------------
   5. Layout Utilities
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.grid { display: grid; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.gap-5 { gap: 48px; }

/* ----------------------------------------------------------------
   6. Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(245,166,35,0.45);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(10,43,110,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

/* ----------------------------------------------------------------
   7. Section Headers
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }

.section-header.left { text-align: left; margin: 0 0 48px; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 16px auto;
}

.divider.left { margin: 16px 0; }

/* ----------------------------------------------------------------
   8. Glassmorphism Cards
   ---------------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
}

.glass-card-light {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----------------------------------------------------------------
   9. Navigation
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-med);
  padding: 0;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.solid {
  background: var(--dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 0 8px rgba(245,166,35,0.3));
  transition: filter var(--transition-fast);
}

.nav-logo:hover img { filter: brightness(1.1) drop-shadow(0 0 12px rgba(245,166,35,0.5)); }

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a svg { transition: transform var(--transition-fast); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-fast);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75) !important;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background: rgba(245,166,35,0.15);
  color: var(--accent) !important;
}

.dropdown-menu a::after { display: none !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: var(--dark) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-med) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(245,166,35,0.45) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-med);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 12px 24px;
  transition: all var(--transition-fast);
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a:hover { color: var(--accent); }

/* ----------------------------------------------------------------
   10. Hero Section
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.95) 0%, rgba(10,43,110,0.85) 50%, rgba(26,79,191,0.7) 100%);
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--primary-lighter);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--accent-light);
  top: 30%; left: 20%;
  animation-delay: -6s;
}

.dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-text { }

.hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  margin-bottom: 24px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.hero-text h1 span { color: var(--accent); }

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.badge svg { color: var(--accent); flex-shrink: 0; }

/* Hero image / product collage */
.hero-visual {
  position: relative;
  height: 520px;
}

.hero-product {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}

.hero-product img { width: 100%; height: 100%; object-fit: cover; }

.hero-product-1 {
  width: 280px; height: 200px;
  top: 0; right: 60px;
  animation: float 7s ease-in-out infinite;
  z-index: 3;
}

.hero-product-2 {
  width: 220px; height: 170px;
  top: 160px; right: 0;
  animation: float 9s ease-in-out infinite;
  animation-delay: -3s;
  z-index: 2;
}

.hero-product-3 {
  width: 250px; height: 180px;
  bottom: 60px; right: 80px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -1.5s;
  z-index: 3;
}

.hero-product-4 {
  width: 200px; height: 150px;
  top: 80px; right: 260px;
  animation: float 8s ease-in-out infinite;
  animation-delay: -5s;
  z-index: 1;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; margin-top: 16px; font-size: 1.1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: var(--accent); font-size: 0.85rem; font-weight: 600; }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.breadcrumb .current { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ----------------------------------------------------------------
   11. Stats Bar
   ---------------------------------------------------------------- */
.stats-bar {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

/* ----------------------------------------------------------------
   12. Service Cards
   ---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
  transition: transform var(--transition-med);
  height: 320px;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  filter: brightness(0.5) saturate(0.8);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
  filter: brightness(0.4) saturate(1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.95) 0%, rgba(10,14,26,0.3) 60%, transparent 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 16px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-link { gap: 10px; }

/* ----------------------------------------------------------------
   13. USP / Why Choose Us
   ---------------------------------------------------------------- */
.usp-section { background: var(--surface); }

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

.usp-image {
  position: relative;
}

.usp-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.usp-image-main img { width: 100%; height: 100%; object-fit: cover; }

.usp-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}

.usp-badge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.usp-badge-text strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--primary);
}

.usp-badge-text span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

.usp-list { display: flex; flex-direction: column; gap: 20px; }

.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  border-left: 3px solid transparent;
}

.usp-item:hover {
  transform: translateX(6px);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.usp-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(10,43,110,0.1), rgba(26,79,191,0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.usp-item-text h4 { color: var(--text-dark); font-size: 1rem; margin-bottom: 4px; }
.usp-item-text p { font-size: 0.85rem; color: var(--text-muted); }

/* Brands marquee */
.brands-strip {
  padding: 40px 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.brands-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.brands-track:hover { animation-play-state: paused; }

.brand-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  opacity: 0.5;
}

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

/* ----------------------------------------------------------------
   14. Product Cards
   ---------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  border: 1px solid rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-body { padding: 20px; }

.product-card h4 { font-size: 1rem; margin-bottom: 6px; color: var(--text-dark); }
.product-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }

.product-card .btn { width: 100%; justify-content: center; }

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(10,43,110,0.08);
  color: var(--primary);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,43,110,0.25);
}

.product-card.hidden {
  display: none;
}

/* ----------------------------------------------------------------
   15. Reviews Section
   ---------------------------------------------------------------- */
.reviews-section { background: var(--dark); }

.reviews-section .section-header h2 { color: var(--white); }
.reviews-section .section-header p { color: rgba(255,255,255,0.6); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

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

.rating-stars { font-size: 1.5rem; color: var(--accent); }
.rating-count { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

.review-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.review-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-tab:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.review-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  border-color: transparent;
}

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

.review-panel { display: none; }
.review-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-med);
}

.review-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-info { flex: 1; }
.reviewer-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.reviewer-location { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.review-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 10px; }

.review-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.review-date { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

/* ----------------------------------------------------------------
   16. CTA Banner
   ---------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  color: var(--dark);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-banner p { color: rgba(10,14,26,0.7); font-size: 1.1rem; margin-bottom: 36px; }

.cta-banner .btn-secondary {
  background: var(--dark);
  color: var(--white);
}

.cta-banner .btn-outline {
  color: var(--dark);
  border-color: rgba(10,14,26,0.4);
}

.cta-banner .btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* ----------------------------------------------------------------
   17. Inquiry Form
   ---------------------------------------------------------------- */
.form-section { background: var(--dark); }

.form-section .section-header h2 { color: var(--white); }
.form-section .section-header p { color: rgba(255,255,255,0.6); }

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

.contact-info-card {
  color: var(--white);
}

.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text a { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 1rem; transition: color var(--transition-fast); }
.contact-text a:hover { color: var(--accent); }
.contact-text span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

.form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}

.form-group select option { background: var(--dark-2); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--white);
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h4 { color: var(--accent); margin-bottom: 8px; }

/* ----------------------------------------------------------------
   18. Gallery / Lightbox
   ---------------------------------------------------------------- */
.gallery-grid {
  columns: 4;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
  font-size: 1.5rem;
  color: var(--white);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover { background: var(--accent); color: var(--dark); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover { background: var(--accent); color: var(--dark); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ----------------------------------------------------------------
   19. FAQ Accordion
   ---------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(10,43,110,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   20. Process Steps
   ---------------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ----------------------------------------------------------------
   21. Tab Component
   ---------------------------------------------------------------- */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}

.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--accent); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ----------------------------------------------------------------
   22. Wave Dividers
   ---------------------------------------------------------------- */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg { display: block; width: 100%; }

/* ----------------------------------------------------------------
   23. Footer
   ---------------------------------------------------------------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.01) 0px,
      rgba(255,255,255,0.01) 1px,
      transparent 1px,
      transparent 20px
    );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition-fast);
}

.footer-links a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-contact-text strong { color: rgba(255,255,255,0.8); display: block; margin-bottom: 2px; }
.footer-contact-text a { color: rgba(255,255,255,0.7); transition: color var(--transition-fast); }
.footer-contact-text a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-credit a {
  color: var(--accent);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.footer-credit a:hover { color: var(--accent-light); }

/* ----------------------------------------------------------------
   24. Mobile Sticky Buttons
   ---------------------------------------------------------------- */
.sticky-mobile-btns {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.sticky-mobile-btns a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: filter var(--transition-fast);
}

.sticky-mobile-btns a:hover { filter: brightness(1.1); }

.sticky-call { background: var(--primary); }
.sticky-whatsapp { background: #25D366; }

/* ----------------------------------------------------------------
   25. Animations & Keyframes
   ---------------------------------------------------------------- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-14px) rotate(1deg); }
  66% { transform: translateY(-7px) rotate(-1deg); }
}

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

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}

/* Scroll animation base states */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

[data-animate="left"] { transform: translateX(-40px); }
[data-animate="right"] { transform: translateX(40px); }
[data-animate="scale"] { transform: scale(0.85); }
[data-animate="fade"] { transform: none; }

[data-animate].visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ----------------------------------------------------------------
   26. Utility Classes
   ---------------------------------------------------------------- */
.bg-dark { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-surface { background: var(--surface); }
.bg-white { background: var(--white); }
.bg-primary { background: var(--primary); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.w-full { width: 100%; }
.hidden { display: none !important; }

.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

/* Map embed */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
}

.map-embed iframe { display: block; width: 100%; height: 250px; border: 0; }

/* Chips row */
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,43,110,0.08);
  color: var(--primary);
  border: 1px solid rgba(10,43,110,0.12);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ----------------------------------------------------------------
   27. Responsive — Tablet (≤1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .usp-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-inner { text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-panel.active { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { columns: 3; }
}

/* ----------------------------------------------------------------
   28. Responsive — Mobile (≤768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .section { padding: 70px 0; }
  .section-lg { padding: 90px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { height: 260px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; gap: 40px; }
  .usp-image { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-panel.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .gallery-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .hero-text h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .sticky-mobile-btns {
    display: flex;
  }

  body { padding-bottom: 58px; }

  .hero-inner { padding-bottom: 60px; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .dropdown-menu { display: none !important; }
}

/* ----------------------------------------------------------------
   29. Responsive — Small Mobile (≤480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .review-tabs { gap: 6px; }
  .review-tab { padding: 8px 14px; font-size: 0.78rem; }
}

/* ----------------------------------------------------------------
   30. Print Styles
   ---------------------------------------------------------------- */
@media print {
  .navbar, .sticky-mobile-btns, .hero-shapes, .cta-banner { display: none; }
  body { padding-top: 0; }
  .section { padding: 40px 0; }
}
