/* V-ANNA Premium Brand Design System */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;700;900&display=swap'); */

:root {
  --primary: #E52E2E;
  --primary-rgb: 229, 46, 46;
  --primary-hover: #C52020;
  --dark-bg: #0A0A0C;
  --dark-surface: #121216;
  --dark-surface-hover: #1A1A22;
  --light-bg: #F4F5F7;
  --light-surface: #FFFFFF;
  --text-dark: #1A1A1E;
  --text-light: #F0F0F5;
  --text-muted: #8E8E9F;
  --border-light: #E2E8F0;
  --border-dark: #22222E;
  --accent-glow: rgba(229, 46, 46, 0.15);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  --font-brand: 'Orbitron', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  height: 48px;
  width: auto;
}

.brand-text {
  font-family: var(--font-brand);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-dark);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--text-dark) 50%, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.8;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(229, 46, 46, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 46, 46, 0.35);
}

.btn-outline {
  border-color: var(--border-light);
  background: transparent;
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.02);
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin-bottom: 5px;
  transition: var(--transition);
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

/* Hero Section */
.vanna-hero {
  position: relative;
  background: radial-gradient(circle at top right, #1A1A22, var(--dark-bg) 70%);
  color: #fff;
  padding: 180px 0 100px 0;
  overflow: hidden;
}

.vanna-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(229, 46, 46, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
}

.vanna-hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.vanna-hero-content h1.brand-title {
  font-family: var(--font-brand);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.vanna-hero-content h1.brand-title span {
  color: var(--primary);
  position: relative;
}

.vanna-hero-content h2.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.vanna-hero-content p.byline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-tags span,
.hero-tags a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-light);
  backdrop-filter: blur(5px);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.hero-tags a:hover {
  background: rgba(var(--primary-rgb), 0.15);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.35);
}


.hero-ctas {
  display: flex;
  gap: 1rem;
}

.vanna-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(229, 46, 46, 0.15);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.hero-image-wrapper:hover .hero-banner-img {
  transform: scale(1.05);
}

.hero-floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.hero-floating-card img.hero-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(229, 46, 46, 0.4));
}

.hero-floating-card h4 {
  font-family: var(--font-brand);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.1rem;
}

.hero-floating-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Stats Section */
.stats-section {
  padding: 3rem 0;
  background: var(--light-surface);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.stat-card {
  padding: 1.5rem;
  border-right: 1px solid var(--border-light);
  text-align: center;
}

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

.stat-card .counter {
  font-family: var(--font-brand);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-card h5 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Product Catalog Portal */
.vanna-products {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-header h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 0.75rem auto 0 auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.product-filters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.filters-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.search-wrapper {
  position: relative;
}

.search-wrapper input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--light-surface);
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.search-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: none;
}

.search-wrapper > svg {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.sort-wrapper select {
  padding: 0 2rem 0 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--light-surface);
  font-size: 0.95rem;
  height: 100%;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E8E9F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  min-width: 160px;
}

.sort-wrapper select:focus {
  outline: none;
  border-color: var(--primary);
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.cat-tab {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cat-tab:hover {
  background: rgba(229, 46, 46, 0.03);
  border-color: var(--primary);
  color: var(--primary);
}

.cat-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Product Grid and Card */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  min-height: 300px;
}

.product-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.product-image-container {
  position: relative;
  background: #F9FAFB;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.product-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

/* No image scaling on hover for flat minimal styling */

.category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(18,18,22,0.85);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body .sku {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.product-body h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7rem;
}

.product-body p.excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions .btn {
  padding: 0.5rem 0.25rem;
  font-size: 0.8rem;
}

/* Pagination */
.product-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.product-pager button {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.product-pager button:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product-pager button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-pager span {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Brand Story Section */
.brand-story {
  padding: 6rem 0;
  background: var(--dark-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 46, 46, 0.1) 0%, transparent 70%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-content h3 {
  font-family: var(--font-brand);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.story-content h3 span {
  color: var(--primary);
}

.story-content p {
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.story-feature-item {
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.story-feature-item h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.story-feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.story-visual {
  position: relative;
}

.story-image-stack {
  position: relative;
  height: 400px;
}

.story-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(28,28,34,0.8), rgba(18,18,22,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.story-image-placeholder svg {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.story-image-placeholder h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.story-image-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sourcing Partners & Trust */
.sourcing-section {
  padding: 6rem 0;
  background: var(--light-surface);
  border-bottom: 1px solid var(--border-light);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.partner-card {
  background: var(--light-bg);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.partner-card .flag-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.partner-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.partner-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Global Reach Map Section */
.reach-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.reach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.reach-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.reach-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.dealer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dealer-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.dealer-icon {
  background: rgba(229, 46, 46, 0.1);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.dealer-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.dealer-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.reach-visual {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow-lg);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.reach-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 16px 16px;
}

.map-node {
  position: absolute;
  background: var(--primary);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary);
}

.map-node::after {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.map-node.kuwait { top: 40%; left: 45%; }
.map-node.oman { top: 55%; left: 55%; }
.map-node.india { top: 50%; left: 70%; }
.map-node.china { top: 40%; left: 85%; }
.map-node.taiwan { top: 45%; left: 92%; }

.map-label {
  position: absolute;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(0,0,0,0.8);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

.map-label.kuwait { top: 32%; left: 38%; }
.map-label.oman { top: 62%; left: 50%; }

.reach-legend {
  position: relative;
  z-index: 10;
  margin-top: auto;
  display: flex;
  gap: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.legend-item span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* Inquiry Form Section */
.inquiry-section {
  padding: 6rem 0;
  background: var(--light-surface);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.inquiry-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.inquiry-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  background: var(--light-bg);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Form Styling */
.inquiry-form-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--light-bg);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

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

.form-status {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  background: #E6F4EA;
  color: #137333;
  border: 1px solid #A3E2B5;
  display: block;
}

.form-status.error {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid #F5B4AD;
  display: block;
}

/* Footer Section */
.footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
}

.footer-logo span {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

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

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--light-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--light-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: #fff;
}

.modal-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.modal-gallery {
  background: #F9FAFB;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
}

.modal-gallery img {
  max-height: 300px;
  object-fit: contain;
}

.modal-details {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.modal-details h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-details .modal-sku {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal-details .modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.modal-specs-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.modal-specs-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
}

.modal-specs-table td:last-child {
  color: var(--text-muted);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  /* Mobile Navbar triggered at 1200px to prevent overlapping menu links and logo wrapping */
  .navbar-inner {
    height: 70px;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--light-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .navbar.nav-active .menu-toggle span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar.nav-active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar.nav-active .menu-toggle span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 1024px) {
  .vanna-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .vanna-hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .vanna-hero-content h1.brand-title {
    font-size: 3.2rem;
    text-align: center !important;
  }
  .vanna-hero-content h2.hero-subtitle {
    font-size: 1.5rem;
    text-align: center !important;
    white-space: normal !important;
  }
  .vanna-hero-content p.byline {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
  }
  .hero-tags {
    justify-content: center !important;
  }
  .hero-ctas {
    justify-content: center !important;
    width: 100%;
  }
  .story-grid,
  .reach-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-visual, .reach-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .partner-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .modal-content-inner {
    grid-template-columns: 1fr;
  }
  .modal-gallery {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 2rem;
  }
  .modal-details {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .vanna-hero-content h1.brand-title {
    font-size: 2.5rem;
  }
  .vanna-hero {
    padding-top: 130px;
  }
  .filters-top {
    grid-template-columns: 1fr;
  }
  .sort-wrapper select {
    width: 100%;
    height: 48px;
    padding: 0.75rem 2rem 0.75rem 1.5rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .reach-map-container {
    height: 220px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .stat-card:last-child {
    border-bottom: none;
  }
}

/* Swiper featured solutions section */
.featured-solutions {
  padding: 6rem 0;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
}

.solutions-swiper {
  width: 100%;
  padding: 2rem 0 4rem 0 !important;
}

.solution-slide-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.solution-image-header {
  height: 160px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border-light);
}

.solution-image-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.solution-slide-card:hover .solution-image-header img {
  transform: scale(1.08);
}

.solution-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-slide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: var(--transition);
}

.solution-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 46, 46, 0.2);
}

.solution-slide-card:hover::before {
  opacity: 1;
}

.solution-icon-wrapper {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.solution-slide-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.solution-slide-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.solutions-swiper .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Sourcing Timeline Section */
.sourcing-timeline {
  margin-top: 5rem;
  position: relative;
}

.sourcing-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 50%;
  width: 4px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-node {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 4px solid var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 10px rgba(229, 46, 46, 0.4);
}

.timeline-content {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
  text-align: left;
}

.timeline-meta {
  font-family: var(--font-brand);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Autocomplete search dropdown */
.search-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 320px;
  overflow-y: auto;
  z-index: 500;
  display: none;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: rgba(229, 46, 46, 0.05);
}

.autocomplete-thumb {
  width: 40px;
  height: 40px;
  background: #f9fafb;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.autocomplete-thumb svg {
  width: 80% !important;
  height: 80% !important;
}
.autocomplete-thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.autocomplete-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.autocomplete-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.autocomplete-sku {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SVG Interactive reach visual map styling */
.reach-map-container {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--dark-bg);
  background-image: radial-gradient(circle at center, transparent 30%, var(--dark-bg));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.reach-map-container svg {
  width: 100%;
  height: 100%;
}

.map-marker-pin {
  cursor: pointer;
}

.map-marker-pin circle.marker-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.map-marker-pin.active circle.marker-core {
  fill: #fff;
  stroke: var(--primary);
  stroke-width: 3px;
}

.dealer-popup-card {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 320px;
  width: calc(100% - 3rem);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 20;
}

.dealer-popup-card.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dealer-popup-card h4 {
  font-family: var(--font-brand);
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.dealer-popup-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dealer-popup-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.dealer-popup-card p:last-child {
  margin-bottom: 0;
}

/* Responsiveness for Timeline */
@media (max-width: 768px) {
  .sourcing-timeline::before {
    left: 2rem;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 4rem;
  }
  .timeline-node {
    left: 2rem;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: left;
  }
}

/* Interactive Map Zoom Controls overlay */
.map-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 30;
}

.map-controls button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.map-controls button:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Carousel Slideshow styles */
.hero-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* Hide Parent Theme Header, Footer, and overlapping global widgets on V-ANNA page */
body.page-template-page-vanna .site-header,
body.page-template-page-vanna #masthead,
body.page-template-page-vanna header:not(.vanna-hero):not(.navbar),
body.page-template-page-vanna .site-footer,
body.page-template-page-vanna #colophon,
body.page-template-page-vanna footer:not(.footer) {
  display: none !important;
}

/* ==========================================================================
   V-ANNA Text Visibility & Color Contrast Overrides (Parent Theme Fixes)
   ========================================================================== */

/* 1. Hero Section Visibility */
body.page-template-page-vanna .vanna-hero-content h1.brand-title {
  color: #ffffff !important;
}
body.page-template-page-vanna .vanna-hero-content h2.hero-subtitle {
  color: var(--text-light) !important;
}
body.page-template-page-vanna .vanna-hero-content p.byline {
  color: var(--text-muted) !important;
}

/* 2. Stats Section Visibility */
body.page-template-page-vanna .stat-card h5 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .stat-card p {
  color: var(--text-muted) !important;
}

/* 3. Featured Infrastructure Solutions Visibility */
body.page-template-page-vanna .featured-solutions .section-header h3 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .featured-solutions .section-header p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .solution-slide-card h4 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .solution-slide-card p {
  color: var(--text-muted) !important;
}

/* 4. Interactive Products Catalog Visibility (Dark Background) */
body.page-template-page-vanna .vanna-products {
  background-color: #0A0A0C !important;
}
body.page-template-page-vanna .vanna-products .section-header h3 {
  color: #ffffff !important;
}
body.page-template-page-vanna .vanna-products .section-header p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .product-pager span {
  color: var(--text-light) !important;
}

/* Product Card specific overrides (nested inside White Card Background) */
body.page-template-page-vanna .product-card {
  background: var(--light-surface) !important;
  border: 1px solid var(--border-light) !important;
}
body.page-template-page-vanna .product-body h4 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .product-body p.excerpt {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .product-body .sku {
  color: var(--text-muted) !important;
}

/* Search input & Sort dropdown text colors */
body.page-template-page-vanna .search-wrapper input {
  color: var(--text-dark) !important;
  background: var(--light-surface) !important;
}
body.page-template-page-vanna .sort-wrapper select {
  color: var(--text-dark) !important;
  background: var(--light-surface) !important;
}

/* Category filter tabs overrides (Premium Glassmorphism Style) */
body.page-template-page-vanna .cat-tab {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--text-light) !important;
}
body.page-template-page-vanna .cat-tab:hover {
  background: rgba(229, 46, 46, 0.15) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}
body.page-template-page-vanna .cat-tab.active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
}

/* 5. Brand Story Section Visibility (Dark Background) */
body.page-template-page-vanna .brand-story .story-content h3 {
  color: #ffffff !important;
}
body.page-template-page-vanna .brand-story .story-content p {
  color: var(--text-light) !important;
}
body.page-template-page-vanna .brand-story .story-feature-item h5 {
  color: var(--primary) !important;
}
body.page-template-page-vanna .brand-story .story-feature-item p {
  color: var(--text-muted) !important;
}

/* 6. Sourcing & Manufacturing Section Visibility */
body.page-template-page-vanna .sourcing-section .section-header h3 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .sourcing-section .section-header p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .partner-card h4 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .partner-card p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .timeline-content h4 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .timeline-content p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .timeline-meta {
  color: var(--primary) !important;
}

/* 7. Global Reach & Distribution Visibility */
body.page-template-page-vanna .reach-section .reach-content h3 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .reach-section .reach-content p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .dealer-details h5 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .dealer-details p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .legend-item {
  color: var(--text-light) !important;
}

/* 8. Technical Quotation Form Visibility */
body.page-template-page-vanna .inquiry-section .inquiry-info h3 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .inquiry-section .inquiry-info p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .contact-text h5 {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .contact-text p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .inquiry-form-card {
  background: var(--light-surface) !important;
  border: 1px solid var(--border-light) !important;
}
body.page-template-page-vanna .form-group label {
  color: var(--text-dark) !important;
}
body.page-template-page-vanna .form-group input,
body.page-template-page-vanna .form-group select,
body.page-template-page-vanna .form-group textarea {
  color: var(--text-dark) !important;
  background: var(--light-bg) !important;
}

/* 9. Footer Section Visibility (Dark Background) */
body.page-template-page-vanna .footer {
  background-color: #0A0A0C !important;
  border-top: 1px solid var(--border-dark) !important;
}
body.page-template-page-vanna .footer-logo span {
  color: #ffffff !important;
}
body.page-template-page-vanna .footer-brand-desc {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .footer-col h5 {
  color: #ffffff !important;
}
body.page-template-page-vanna .footer-links a {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .footer-links a:hover {
  color: var(--primary) !important;
}
body.page-template-page-vanna .footer-col p {
  color: var(--text-muted) !important;
}
body.page-template-page-vanna .footer-bottom {
  color: var(--text-muted) !important;
  border-top: 1px solid var(--border-dark) !important;
}

body.page-template-page-vanna .footer-legal a {
  color: var(--text-muted) !important;
}

/* ==========================================================================
   V-ANNA Mobile Responsiveness Adjustments (Screens below 576px)
   ========================================================================== */
@media (max-width: 576px) {
  body, html {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding: 0 1rem;
  }

  /* Hero Section Adaptations */
  .vanna-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .vanna-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    gap: 2rem !important;
  }

  .vanna-hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  
  .vanna-hero-content h1.brand-title {
    font-size: 2.2rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
  }

  .vanna-hero-content h2.hero-subtitle {
    font-size: 1.15rem !important;
    line-height: 1.45 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .vanna-hero-content p.byline {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.75rem !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .vanna-hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Tags wrapping */
  .hero-tags {
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-bottom: 2rem !important;
  }

  .hero-tags a {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.85rem !important;
  }

  /* Hero Actions */
  .hero-ctas {
    width: 100%;
    justify-content: center !important;
  }
  
  .hero-ctas .btn {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Infrastructure visual section */
  .reach-visual {
    padding: 1.5rem !important;
  }

  .reach-map-container {
    height: 180px !important;
  }

  /* Product Catalog Grid mobile layout */
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 1.5rem !important;
  }

  /* Inquiry Form Panel spacing */
  .inquiry-form-card {
    padding: 1.5rem !important;
  }

  /* Timeline spacing */
  .timeline-content {
    padding: 1.25rem !important;
  }
  
  .timeline-item {
    padding-left: 2.5rem !important;
  }
  
  .sourcing-timeline::before {
    left: 1.25rem !important;
  }
  
  .timeline-node {
    left: 1.25rem !important;
  }
}



