/* ==========================================================================
   DEODAR SPORTS - Official Stylesheet
   Crafted with Himalayan Heritage & Modern Cricket Engineering
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #07150e;
  --bg-secondary: #0d2217;
  --bg-card: rgba(16, 38, 28, 0.7);
  --bg-card-hover: rgba(22, 53, 39, 0.85);
  --bg-card-solid: #112a1d;
  --bg-glass: rgba(10, 26, 18, 0.75);
  --bg-input: rgba(7, 21, 14, 0.8);
  
  /* Brand Accent Colors */
  --accent-gold: #d4af37;
  --accent-gold-light: #f5cf5b;
  --accent-gold-dark: #aa851d;
  --accent-gold-glow: rgba(212, 175, 55, 0.35);
  
  --brand-green: #15803d;
  --brand-green-light: #22c55e;
  --brand-green-glow: rgba(34, 197, 94, 0.25);
  
  --brand-plum: #7e22ce;
  --brand-plum-light: #a855f7;
  --brand-plum-glow: rgba(168, 85, 247, 0.25);
  
  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-gold: #f5cf5b;
  
  /* Borders & Shadows */
  --border-subtle: rgba(212, 175, 55, 0.18);
  --border-active: rgba(212, 175, 55, 0.6);
  --border-green: rgba(34, 197, 94, 0.3);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
  --shadow-green: 0 0 25px rgba(34, 197, 94, 0.2);

  /* Fonts */
  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing & Layout */
  --container-width: 1240px;
  --nav-height: 92px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(21, 128, 61, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(126, 34, 206, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.07) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e4531;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-darker {
  background-color: var(--bg-secondary);
  position: relative;
}

/* Section Titles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.section-badge i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.section-title .text-gold {
  color: var(--accent-gold-light);
  background: linear-gradient(135deg, #fef08a 0%, #d4af37 60%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b88a1a 100%);
  color: #07150e;
  box-shadow: 0 4px 18px var(--accent-gold-glow);
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e5bf45 0%, #c99824 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
  color: #05100a;
}

.btn-outline-gold {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  background: rgba(212, 175, 55, 0.06);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.16);
  color: #ffffff;
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #052613;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #2ee672;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #031c0d;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.35);
}

.btn-instagram:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.5);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  height: 80px;
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition-normal);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.1) rotate(2deg);
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(14px, 1.8vw, 24px);
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold-light);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: clamp(24px, 3vw, 48px);
  white-space: nowrap;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background: var(--accent-gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background: var(--accent-gold);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #091a12;
  border-left: 1px solid var(--border-subtle);
  padding: 100px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-slow);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-gold);
  padding-left: 8px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

/* Hero Background Lighting */
.hero-glow-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 10s ease-in-out infinite alternate-reverse;
}

.hero-glow-3 {
  position: absolute;
  bottom: 5%;
  left: 45%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translateY(0); opacity: 0.6; }
  100% { transform: scale(1.2) translateY(-20px); opacity: 0.9; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 660px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 24px;
}

.hero-tag span.badge-pulse {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 10px #34d399;
  animation: beacon 1.8s infinite;
}

@keyframes beacon {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, #fff 0%, #ffd700 40%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title .highlight-kashmir {
  color: #34d399;
  background: linear-gradient(135deg, #a7f3d0 0%, #34d399 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 34px;
}

/* Ambassador Badge Tag (Munaf Patel in hero) */
.ambassador-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-gold);
  backdrop-filter: blur(8px);
  line-height: 1.5;
  flex-wrap: wrap;
}

.ambassador-badge-tag a {
  color: var(--accent-gold-light);
  font-weight: 700;
  text-decoration: underline;
}

.ambassador-badge-tag a:hover {
  color: #ffffff;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(145deg, rgba(20, 48, 35, 0.85) 0%, rgba(9, 24, 17, 0.95) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.25);
  text-align: center;
}

.hero-card-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, #d4af37, #b88a1a);
  color: #07150e;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.hero-logo-showcase {
  width: 250px;
  height: 250px;
  margin: 0 auto 16px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.75));
  animation: floatAnim 4s ease-in-out infinite alternate;
}

@keyframes floatAnim {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1deg); }
}

/* Brand Bio Box */
.brand-bio-box {
  background: rgba(7, 21, 14, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 16px 0;
  text-align: left;
}

.brand-bio-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.brand-bio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.brand-bio-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.45;
}

.brand-bio-item span.tilde {
  color: var(--accent-gold);
  font-weight: 800;
}

.brand-bio-item a.ambassador-link {
  color: var(--accent-gold-light);
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.brand-bio-item a.ambassador-link:hover {
  color: #ffffff;
}

/* Stories Highlights Section */
.stories-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 20px 0 36px 0;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--transition-normal);
}

.story-item:hover {
  transform: translateY(-5px);
}

.story-ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 3.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(220, 39, 67, 0.45);
  animation: storyPulse 2.8s infinite;
}

@keyframes storyPulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(220, 39, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 39, 67, 0); }
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #091a12;
  border: 2px solid #07150e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-avatar img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.story-avatar i {
  font-size: 1.8rem;
  color: var(--accent-gold-light);
}

.story-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: 0.3px;
}

.story-item:hover .story-label {
  color: var(--accent-gold-light);
}

/* Reels Showcase Grid */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.reel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
  position: relative;
}

.reel-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.3);
  background: var(--bg-card-hover);
}

.reel-media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(7, 21, 14, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reel-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reel-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #112a1d;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-gold);
  overflow: hidden;
}

.reel-user-avatar img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.reel-username {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.reel-video-preview {
  height: 320px;
  position: relative;
  background: linear-gradient(180deg, #0f2c1e 0%, #06150e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}

/* Embedded Reel Video Container */
.reel-iframe-wrap {
  width: 100%;
  height: 460px;
  position: relative;
  background: #07150e;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reel-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Ambassador Feature Section */
.ambassador-section {
  background: linear-gradient(145deg, rgba(20, 52, 36, 0.9) 0%, rgba(9, 24, 16, 0.96) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin: 60px 0;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.ambassador-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.ambassador-profile-card {
  text-align: center;
  background: rgba(7, 21, 14, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(12px);
}

.ambassador-avatar-circle {
  width: 130px;
  height: 130px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  padding: 4px;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.45);
}

.ambassador-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #091a12;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ambassador-avatar-inner i {
  font-size: 3.2rem;
  color: #ffd700;
}

.ambassador-profile-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ambassador-profile-handle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 12px;
  display: inline-block;
}

.ambassador-trophy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  color: #fef08a;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.ambassador-details h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.ambassador-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--accent-gold);
}

.ambassador-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.reel-play-btn {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.92);
  color: #07150e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 5px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
  transition: all var(--transition-normal);
  z-index: 2;
}

.reel-card:hover .reel-play-btn {
  transform: scale(1.15);
  background: #ffffff;
  color: #051a0f;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.85);
}

.reel-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.reel-watch-text {
  position: absolute;
  bottom: 16px;
  background: rgba(7, 21, 14, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: var(--accent-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  transition: all var(--transition-fast);
}

.reel-card:hover .reel-watch-text {
  background: var(--accent-gold);
  color: #07150e;
  border-color: var(--accent-gold);
}

.reel-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.reel-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.reel-caption {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.reel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bat-specs-floating {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.floating-spec-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 21, 14, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.85rem;
}

.floating-spec-pill span:first-child {
  color: var(--text-muted);
}

.floating-spec-pill span:last-child {
  color: var(--accent-gold-light);
  font-weight: 600;
}

/* ==========================================================================
   THE DEODAR HERITAGE & STORY
   ========================================================================== */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.heritage-visual {
  position: relative;
}

.heritage-card-main {
  background: linear-gradient(145deg, rgba(25, 58, 42, 0.7) 0%, rgba(11, 28, 20, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.heritage-card-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.deodar-tree-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--border-green);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.heritage-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.heritage-card-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.heritage-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pillar-box {
  background: rgba(7, 21, 14, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pillar-box:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.pillar-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Heritage Content Side */
.heritage-story-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.heritage-paragraphs p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.quote-highlight {
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.05rem;
}

/* ==========================================================================
   PRODUCT SHOWCASE & CATALOG
   ========================================================================== */
.catalog-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: rgba(16, 38, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold-light);
  border-color: var(--accent-gold);
}

.filter-btn.active {
  background: linear-gradient(135deg, #d4af37 0%, #aa851d 100%);
  color: #07150e;
  font-weight: 700;
  border-color: #d4af37;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  backdrop-filter: blur(12px);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  background: var(--bg-card-hover);
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(7, 21, 14, 0.85);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
  backdrop-filter: blur(4px);
}

.product-image-wrap {
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(25, 60, 43, 0.5) 0%, rgba(7, 21, 14, 0.8) 100%);
  padding: 24px;
  overflow: hidden;
}

.product-svg-bat {
  height: 85%;
  width: auto;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition-normal);
}

.product-card:hover .product-svg-bat {
  transform: scale(1.06) rotate(-2deg);
}

.product-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px;
  background: rgba(7, 21, 14, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item {
  font-size: 0.82rem;
}

.spec-item-label {
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.spec-item-value {
  color: var(--text-primary);
  font-weight: 600;
}

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

/* ==========================================================================
   INTERACTIVE CUSTOM BAT BUILDER
   ========================================================================== */
.customizer-wrapper {
  background: linear-gradient(145deg, rgba(17, 43, 31, 0.8) 0%, rgba(9, 23, 16, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.customizer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.customizer-controls {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.customizer-group-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.customizer-group-title i {
  color: var(--accent-gold);
}

.option-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.option-radio {
  display: none;
}

.option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 12px;
  background: rgba(7, 21, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.option-label:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

.option-radio:checked + .option-label {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

.option-label-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.option-label-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.option-radio:checked + .option-label .option-label-title {
  color: var(--accent-gold-light);
}

/* Weight Slider */
.weight-slider-container {
  background: rgba(7, 21, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
}

.weight-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.weight-value-box {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold-light);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: #193f2c;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 12px var(--accent-gold);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Customizer Preview Box */
.customizer-preview-box {
  position: sticky;
  top: 100px;
  background: rgba(7, 21, 14, 0.9);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.preview-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.preview-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-gold-light);
}

.preview-specs-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.preview-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-spec-row .label {
  color: var(--text-muted);
}

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

/* ==========================================================================
   5-STEP CRAFTSMANSHIP JOURNEY
   ========================================================================== */
.craft-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.craft-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.craft-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  background: var(--bg-card-hover);
}

.craft-step-number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.18);
  line-height: 1;
}

.craft-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-gold-light);
  margin-bottom: 20px;
}

.craft-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.craft-step-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   MISSION & VISION (VERBATIM & DUAL CARDS)
   ========================================================================== */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.statement-card {
  background: linear-gradient(155deg, rgba(19, 46, 33, 0.85) 0%, rgba(9, 25, 17, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.statement-card-mission {
  border-top: 4px solid var(--accent-gold);
}

.statement-card-vision {
  border-top: 4px solid #34d399;
}

.statement-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.statement-card-mission::before {
  background: rgba(212, 175, 55, 0.15);
}

.statement-card-vision::before {
  background: rgba(52, 211, 153, 0.15);
}

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

.statement-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.statement-card-mission .statement-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.statement-card-vision .statement-icon {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.statement-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.statement-card-mission .statement-type {
  color: var(--accent-gold);
}

.statement-card-vision .statement-type {
  color: #34d399;
}

.statement-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.statement-content {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.85;
  flex-grow: 1;
}

.statement-content p {
  margin-bottom: 18px;
}

.statement-content p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text-primary);
}

.statement-footer-highlight {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.statement-card-mission .statement-footer-highlight {
  color: var(--accent-gold-light);
}

.statement-card-vision .statement-footer-highlight {
  color: #34d399;
}

/* ==========================================================================
   VALUES & WHY CHOOSE US
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-gold-light);
  margin-bottom: 18px;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   INSTAGRAM / CRICKET COMMUNITY SECTION
   ========================================================================== */
.insta-banner {
  background: linear-gradient(135deg, rgba(20, 50, 36, 0.7) 0%, rgba(13, 31, 23, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.insta-handle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold-light);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.insta-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  background: #112a1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.insta-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 14, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-caption {
  font-size: 0.85rem;
  text-align: center;
  padding: 0 16px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   CONTACT & WORKSHOP SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-normal);
}

.contact-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-gold-light);
}

.contact-item-content {
  flex-grow: 1;
}

.contact-item-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-item-value a:hover {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.contact-form-panel {
  background: linear-gradient(155deg, rgba(18, 44, 32, 0.85) 0%, rgba(8, 22, 15, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: rgba(9, 28, 19, 0.95);
}

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

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

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & ACTIONS
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition-normal);
  animation: pulseButton 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65);
}

@keyframes pulseButton {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #07150e;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 44px;
  height: 44px;
  background: rgba(16, 38, 28, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold);
  color: #07150e;
  transform: translateY(-3px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040e09;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-info p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--accent-gold);
  color: #07150e;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-kashmir-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #34d399;
}

/* ==========================================================================
   TOAST NOTIFICATION & MODALS
   ========================================================================== */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(14, 38, 27, 0.95);
  border: 1px solid var(--accent-gold);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  backdrop-filter: blur(12px);
  z-index: 2000;
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --- Tablets & small laptops (max-width: 1120px) --- */
@media (max-width: 1120px) {
  .nav-menu, .nav-actions .btn-sm {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .products-grid,
  .reels-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Tablets (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-tag {
    justify-content: center;
  }
  .ambassador-badge-tag {
    justify-content: center;
    text-align: center;
  }
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .customizer-grid {
    grid-template-columns: 1fr;
  }
  .customizer-preview-box {
    position: static;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Ambassador Section - stack on tablets */
  .ambassador-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ambassador-profile-card {
    max-width: 380px;
    margin: 0 auto;
  }
  .ambassador-details {
    text-align: center;
  }
  .ambassador-details h3 {
    font-size: 1.7rem;
  }
  .ambassador-quote {
    text-align: left;
  }
  .ambassador-details > div:last-child {
    justify-content: center;
  }
}

/* --- Small tablets & large phones (max-width: 768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 50px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-card {
    max-width: 100%;
    padding: 28px 20px;
  }
  .hero-logo-showcase {
    width: 180px;
    height: 180px;
  }

  /* Ambassador Badge Tag (Munaf Patel) */
  .ambassador-badge-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
    gap: 6px;
  }

  /* CTA buttons */
  .btn-lg {
    padding: 13px 24px;
    font-size: 0.92rem;
  }
  .hero-cta-group {
    gap: 12px;
  }

  /* Reels grid */
  .products-grid,
  .reels-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Ambassador Section */
  .ambassador-section {
    padding: 28px 20px;
    margin: 40px 0;
  }
  .ambassador-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ambassador-profile-card {
    max-width: 100%;
    padding: 24px 18px;
  }
  .ambassador-avatar-circle {
    width: 100px;
    height: 100px;
  }
  .ambassador-avatar-inner i {
    font-size: 2.4rem;
  }
  .ambassador-profile-name {
    font-size: 1.3rem;
  }
  .ambassador-details h3 {
    font-size: 1.45rem;
    line-height: 1.3;
  }
  .ambassador-quote {
    font-size: 0.92rem;
    padding-left: 14px;
  }
  .ambassador-details > div:last-child {
    flex-direction: column;
    gap: 10px;
  }
  .ambassador-details > div:last-child .btn {
    width: 100%;
  }

  /* Customizer */
  .customizer-wrapper {
    padding: 24px 18px;
  }
  .option-pill-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slider-marks {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  /* Stories bar */
  .stories-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px 4px 36px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .stories-bar::-webkit-scrollbar {
    display: none;
  }
  .story-item {
    flex-shrink: 0;
  }
  .story-ring {
    width: 70px;
    height: 70px;
  }
  .story-label {
    font-size: 0.75rem;
  }

  /* Filter tabs */
  .catalog-filter-bar {
    gap: 8px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  /* Craftsmanship */
  .craft-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Mission & Vision */
  .statement-card {
    padding: 28px 20px;
  }
  .statement-title {
    font-size: 1.5rem;
  }
  .statement-content {
    font-size: 0.92rem;
  }

  /* Contact */
  .contact-form-panel {
    padding: 28px 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer {
    padding: 50px 0 24px 0;
  }

  /* Reel footer buttons */
  .reel-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .reel-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* Heritage pillars */
  .heritage-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .heritage-card-main {
    padding: 28px 20px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Insta banner */
  .insta-banner {
    padding: 28px 20px;
  }
  .insta-handle {
    font-size: 1.4rem;
  }
}

/* --- Phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Nav */
  .brand-logo-img {
    width: 44px;
    height: 44px;
  }
  .brand-title {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
  .brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .hero-description {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }
  .hero-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
    gap: 8px;
    margin-bottom: 16px;
  }
  .ambassador-badge-tag {
    font-size: 0.72rem;
    padding: 6px 12px;
    gap: 6px;
    line-height: 1.4;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .hero-card {
    padding: 22px 16px;
  }
  .hero-card-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
    right: 16px;
    top: -12px;
  }
  .hero-logo-showcase {
    width: 150px;
    height: 150px;
  }
  .brand-bio-title {
    font-size: 1.05rem;
  }
  .brand-bio-item {
    font-size: 0.82rem;
  }

  /* CTA buttons - stack vertically on very small screens */
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .btn-lg {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  /* Floating spec pills */
  .floating-spec-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* Reel cards */
  .reel-iframe-wrap {
    height: 380px;
  }
  .reel-body {
    padding: 16px;
  }
  .reel-title {
    font-size: 1.05rem;
  }

  /* Ambassador Section */
  .ambassador-section {
    padding: 22px 16px;
    margin: 30px 0;
    border-width: 1px;
  }
  .ambassador-profile-card {
    padding: 20px 14px;
  }
  .ambassador-avatar-circle {
    width: 90px;
    height: 90px;
  }
  .ambassador-avatar-inner i {
    font-size: 2rem;
  }
  .ambassador-profile-name {
    font-size: 1.2rem;
  }
  .ambassador-trophy-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
  .ambassador-details h3 {
    font-size: 1.25rem;
  }
  .ambassador-quote {
    font-size: 0.85rem;
    padding-left: 12px;
    margin-bottom: 16px;
  }

  /* Customizer */
  .option-pill-grid {
    grid-template-columns: 1fr;
  }
  .customizer-group-title {
    font-size: 0.92rem;
  }
  .weight-value-box {
    font-size: 1.15rem;
  }

  /* Heritage */
  .heritage-story-lead {
    font-size: 1.05rem;
  }
  .heritage-card-title {
    font-size: 1.35rem;
  }
  .heritage-pillars {
    grid-template-columns: 1fr;
  }
  .heritage-card-main {
    padding: 22px 16px;
  }

  /* Craftsmanship */
  .craft-steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .craft-step-card {
    padding: 24px 18px;
  }

  /* Mission & Vision */
  .statement-card {
    padding: 22px 16px;
  }
  .statement-title {
    font-size: 1.3rem;
  }
  .statement-content {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .statement-footer-highlight {
    font-size: 0.82rem;
  }

  /* Contact */
  .contact-card {
    padding: 20px 16px;
  }
  .contact-form-panel {
    padding: 22px 16px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  /* Insta grid */
  .insta-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insta-card {
    height: 200px;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating buttons */
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
  .back-to-top {
    bottom: 80px;
    right: 22px;
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  /* Quote highlight */
  .quote-highlight {
    padding: 14px 16px;
    font-size: 0.92rem;
  }

  /* Section header */
  .section-header {
    margin-bottom: 36px;
  }
  .section-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    letter-spacing: 1.5px;
  }
}

/* --- Very small phones (max-width: 360px) --- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem;
  }
  .ambassador-badge-tag {
    font-size: 0.68rem;
    padding: 5px 10px;
  }
  .hero-tag {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
  .btn-lg {
    padding: 11px 16px;
    font-size: 0.82rem;
  }
  .btn {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
  .insta-grid {
    grid-template-columns: 1fr;
  }
}

