/* ===================================================================
   SHIVANI TRADERS — Premium Design System
   Color Scheme: Deep Navy (#0a1628) + Gold (#c9a84c) + White
   =================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette */
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #152a4a;
  --navy-600: #1b365d;
  --navy-500: #234578;
  --navy-400: #2d5a9e;

  /* Accent (warm amber-orange — matches logo) */
  --gold-500: #e67e22;
  --gold-400: #f39c12;
  --gold-300: #f5b041;
  --gold-200: #f8c471;
  --gold-100: #fde8c9;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eef1f6;
  --gray-200: #d8dde8;
  --gray-300: #b0b8c9;
  --gray-400: #8892a6;
  --gray-500: #636e84;
  --gray-600: #4a5568;
  --gray-700: #2d3748;

  /* Semantic */
  --success: #10b981;
  --danger: #ef4444;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 14px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.15);
  --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.2);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1360px;
  --nav-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-5xl) 0;
}

.text-gold { color: var(--gold-500); }
.text-navy { color: var(--navy-900); }
.text-white { color: var(--white); }

.bg-navy { background: var(--navy-900); }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }

/* ---------- Typography & Heading Spacing System ---------- */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
  text-rendering: optimizeLegibility;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: clamp(1.4rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.015em;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.28;
  margin-bottom: clamp(0.85rem, 1.5vw, 1.3rem);
}

h4 {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  margin-bottom: clamp(0.55rem, 1vw, 0.9rem);
}

h5 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.55rem;
}

h6 {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

/* Section Header Rhythm */
.section-header,
.services-header,
.brands-header,
.export-header,
.broadband-header,
.gallery-header,
.testimonials-header,
.contact-header {
  margin-bottom: clamp(3rem, 5.5vw, 4.6rem);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.18;
  margin-bottom: 1.35rem;
  letter-spacing: -0.01em;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.12rem;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.section-subtitle.light {
  color: var(--gray-300);
}

/* ===================================================================
   PRELOADER
   =================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.25) 0%, rgba(10, 22, 40, 0.6) 70%, transparent 100%);
  border: 1px solid rgba(243, 156, 18, 0.25);
  box-shadow: 0 0 35px rgba(46, 125, 50, 0.25), inset 0 0 15px rgba(243, 156, 18, 0.1);
  margin-bottom: var(--space-lg);
  animation: preloaderAura 2.5s ease-in-out infinite alternate;
}

@keyframes preloaderAura {
  0% { transform: scale(0.98); box-shadow: 0 0 25px rgba(46, 125, 50, 0.2); }
  100% { transform: scale(1.03); box-shadow: 0 0 45px rgba(243, 156, 18, 0.35); }
}

.preloader-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--navy-700);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2e7d32, #4caf50, #ff9800);
  border-radius: var(--radius-full);
  animation: loadBar 1.5s ease-out forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* ===================================================================
   HEADER WRAPPER & REDESIGNED NAVIGATION
   =================================================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
}

/* ---------- Top Utility Bar ---------- */
.topbar {
  background: rgba(6, 14, 26, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--gray-300);
  transition: all 0.35s ease;
  max-height: 45px;
  overflow: hidden;
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.topbar-chip strong {
  color: var(--white);
  font-weight: 600;
}

.topbar-chip.link:hover {
  color: var(--gold-400);
}

.topbar-icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
  color: var(--gold-400);
  flex-shrink: 0;
}

.topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
}

.topbar-badge.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #25d366;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.72rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar-badge.whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}

.topbar-badge-icon {
  width: 12px;
  height: 12px;
}

/* Scrolled state: collapse topbar */
.header-wrapper.scrolled .topbar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

/* ---------- Main Navbar ---------- */
.navbar {
  position: relative;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
}

.header-wrapper.scrolled .navbar {
  height: 64px;
  background: rgba(8, 18, 34, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(201, 168, 76, 0.25);
  padding: 0 var(--space-lg);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Brand Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: radial-gradient(circle at center, rgba(46, 125, 50, 0.22) 0%, rgba(10, 22, 40, 0.45) 70%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  backdrop-filter: blur(6px);
  transition: all var(--transition-base);
}

.nav-logo:hover .nav-logo-mark {
  background: radial-gradient(circle at center, rgba(243, 156, 18, 0.26) 0%, rgba(46, 125, 50, 0.22) 70%, transparent 100%);
  border-color: rgba(243, 156, 18, 0.4);
  box-shadow: 0 0 16px rgba(243, 156, 18, 0.25);
  transform: translateY(-1px);
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-base);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.header-wrapper.scrolled .nav-logo img {
  height: 36px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.nav-logo-text .brand-tagline {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-top: 1px;
}

/* ---------- Nav Links: Even Distance & Detailed Hierarchy ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px; /* Mathematically even spacing between all items */
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6px 10px; /* Equalized clean padding */
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.nav-item-title {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 3px;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.nav-item-sub {
  font-family: var(--font-body);
  font-size: 0.61rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
  line-height: 1.15;
  margin-top: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

/* Nav Item Hover & Active States */
.nav-link:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-link:hover .nav-item-title {
  color: var(--gold-400);
}

.nav-link:hover .nav-item-sub {
  color: rgba(243, 156, 18, 0.85);
}

.nav-link.active {
  background: rgba(243, 156, 18, 0.08);
  border-color: rgba(243, 156, 18, 0.28);
}

.nav-link.active .nav-item-title {
  color: var(--gold-400);
}

.nav-link.active .nav-item-sub {
  color: var(--gold-300);
  font-weight: 600;
}

/* Live FTTH Badge */
.nav-badge-live {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(0, 230, 118, 0.18);
  color: #00e676;
  border: 1px solid rgba(0, 230, 118, 0.38);
  margin-left: 4px;
  letter-spacing: 0.5px;
  animation: liveGlow 2s ease-in-out infinite;
}

@keyframes liveGlow {
  0%, 100% { box-shadow: 0 0 4px rgba(0, 230, 118, 0.3); }
  50% { box-shadow: 0 0 10px rgba(0, 230, 118, 0.7); }
}

/* Dropdown Chevron */
.nav-dropdown-icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
  color: var(--gold-400);
  transition: transform 0.25s ease;
}

.nav-dropdown-wrapper:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

/* ---------- Dropdown Mega Menu for Brands ---------- */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 580px;
  background: rgba(9, 20, 36, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(201, 168, 76, 0.12);
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-header-title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
}

.dropdown-header-desc {
  font-size: 0.78rem;
  color: var(--gray-400);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
}

.dropdown-item-title {
  font-family: var(--font-accent);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.dropdown-item-desc {
  font-size: 0.72rem;
  color: var(--gray-400);
  line-height: 1.35;
  margin-top: 2px;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--gold-400);
}

.dropdown-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.dropdown-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-400);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-footer-link:hover {
  color: var(--gold-300);
  transform: translateX(3px);
}

.dropdown-footer-icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.2;
}

/* ---------- Contact Desk CTA Card ---------- */
.nav-contact-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(243, 156, 18, 0.12));
  border: 1.5px solid rgba(243, 156, 18, 0.45);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  margin-left: 4px;
}

.nav-contact-card:hover {
  transform: translateY(-1px);
  border-color: var(--gold-400);
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.3), rgba(243, 156, 18, 0.22));
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.nav-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(230, 126, 34, 0.4);
}

.nav-contact-icon i,
.nav-contact-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}

.nav-contact-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.nav-contact-label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold-400);
  line-height: 1.1;
}

.nav-contact-number {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 1px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.7) 40%,
    rgba(10, 22, 40, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  padding-top: calc(var(--nav-height) + 50px);
  padding-bottom: var(--space-3xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-badge span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #2e7d32, #4caf50, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 15px 36px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-3px);
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero-stat .label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gray-400);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* Hero watermark logo */
.hero-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  animation: watermarkFloat 8s ease-in-out infinite;
}

.hero-watermark img {
  width: 450px;
  height: 450px;
  object-fit: contain;
  opacity: 0.06;
  filter: brightness(1.5);
}

@keyframes watermarkFloat {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-48%) rotate(3deg); }
}

/* ===================================================================
   SCROLLING MARQUEE (Brand Strip)
   =================================================================== */
.marquee-section {
  background: var(--gray-50);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0 var(--space-3xl);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.marquee-item:hover {
  opacity: 1;
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

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

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  padding: var(--space-xl) var(--space-2xl);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-image-badge .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-image-badge .text {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.about-feature h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 2px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.about-feature p {
  font-size: 0.85rem !important;
  color: var(--gray-500) !important;
  margin-bottom: 0 !important;
}

/* ===================================================================
   SERVICES / CATEGORIES SECTION
   =================================================================== */
.services-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent);
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-xl);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 4px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.service-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-400);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

/* ===================================================================
   BRANDS SECTION
   =================================================================== */
.brands-section {
  background: var(--white);
}

.brands-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.brands-header .section-label {
  justify-content: center;
}

.brands-header .section-subtitle {
  margin: 0 auto;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 0;
  text-align: left;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold-400);
}

.brand-card-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}

.brand-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.brand-card:hover .brand-card-img-wrap img {
  transform: scale(1.06);
}

.brand-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-400);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(243, 156, 18, 0.4);
  z-index: 2;
}

.brand-card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.brand-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 3px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.brand-card-body .brand-type {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}

.brand-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.brand-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: auto;
  transition: all var(--transition-fast);
}

.brand-card:hover .brand-card-action {
  color: var(--gold-500);
  transform: translateX(4px);
}

/* ===================================================================
   EXPORT / RICE SECTION
   =================================================================== */
.export-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.export-image-wrapper {
  position: relative;
}

.export-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.export-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.export-image:hover img {
  transform: scale(1.03);
}

.export-content .section-title {
  margin-bottom: var(--space-lg);
}

.rice-varieties {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.rice-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  transition: all var(--transition-base);
}

.rice-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.rice-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rice-card h4 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 2px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.rice-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.export-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.destination-tag {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.destination-tag:hover {
  border-color: var(--gold-500);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-500);
}

/* ===================================================================
   SHIVANI BROADBAND (ISP & TELECOM SECTION)
   =================================================================== */
.broadband-section {
  background: radial-gradient(ellipse at 85% 20%, rgba(33, 150, 243, 0.16) 0%, transparent 45%),
              radial-gradient(ellipse at 15% 80%, rgba(46, 125, 50, 0.12) 0%, transparent 45%),
              var(--navy-900);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.broadband-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(33, 150, 243, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(243, 156, 18, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  pointer-events: none;
}

.broadband-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 2;
}

.broadband-header .section-label {
  justify-content: center;
}

.broadband-header .section-subtitle {
  margin: 0 auto;
}

.highlight-blue {
  background: linear-gradient(135deg, #42a5f5, #2196f3, #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.broadband-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.broadband-brand-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(33, 150, 243, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.broadband-brand-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.broadband-brand-visual {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.broadband-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(33, 150, 243, 0.5));
  animation: pulse-slow 3s ease-in-out infinite alternate;
}

@keyframes pulse-slow {
  0% { transform: scale(1); filter: drop-shadow(0 0 12px rgba(33, 150, 243, 0.4)); }
  100% { transform: scale(1.04); filter: drop-shadow(0 0 22px rgba(33, 150, 243, 0.7)); }
}

.broadband-brand-info h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--white);
  margin-top: 4px;
  margin-bottom: 10px;
  line-height: 1.28;
}

.broadband-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.35);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: #64b5f6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.broadband-brand-desc {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.broadband-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.broadband-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--gray-200);
  font-weight: 500;
}

.broadband-feature-item .icon {
  font-size: 1.1rem;
}

.broadband-hub-card {
  background: rgba(10, 22, 40, 0.75);
  border: 1px solid rgba(243, 156, 18, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.broadband-hub-icon {
  font-size: 1.4rem;
  margin-top: 2px;
}

.broadband-hub-text h5 {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.broadband-hub-text p {
  font-size: 0.85rem !important;
  color: var(--gray-300) !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.broadband-cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.broadband-plans-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.broadband-plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.broadband-plan-card.featured {
  background: rgba(33, 150, 243, 0.07);
  border-color: rgba(33, 150, 243, 0.45);
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.18);
}

.broadband-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 156, 18, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.broadband-plan-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: var(--navy-900);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.broadband-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.broadband-plan-name h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-top: 3px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.broadband-plan-name span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.broadband-speed-badge {
  text-align: right;
}

.broadband-speed-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #64b5f6;
  line-height: 1;
}

.broadband-speed-unit {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
}

.broadband-plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin: var(--space-md) 0 var(--space-lg);
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.broadband-plan-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-300);
}

.broadband-plan-feature span.check {
  color: #00e676;
}

.broadband-plan-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.broadband-plan-price {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 600;
}

.btn-plan {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.4);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-plan:hover {
  background: #2196f3;
  border-color: #2196f3;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

/* ===================================================================
   STATS / COUNTER SECTION
   =================================================================== */
.stats-section {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-warehouse.jpg') center/cover no-repeat;
  opacity: 0.08;
}

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

.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================================================
   GALLERY SECTION
   =================================================================== */
.gallery-section {
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.gallery-header .section-label {
  justify-content: center;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  min-height: 280px;
}

.gallery-item.tall img {
  min-height: 580px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--gray-300);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform var(--transition-spring);
}

.lightbox.active img {
  transform: scale(1);
}

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

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===================================================================
   TESTIMONIALS SECTION
   =================================================================== */
.testimonials-section {
  background: var(--gray-50);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold-400);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
}

.testimonial-author-info h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.testimonial-author-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  letter-spacing: 3px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-dot.active {
  background: var(--gold-500);
  width: 36px;
  border-radius: var(--radius-full);
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-subtitle {
  margin: 0 auto var(--space-2xl);
  color: var(--gray-300);
}

.cta-actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================================
   CONTACT SECTION
   =================================================================== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
}

.contact-info {
  padding: var(--space-2xl) 0;
}

.contact-info-cards {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 2px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Contact form */
.contact-form-wrapper {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 0;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.contact-form-wrapper .form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: var(--space-2xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-900);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.4);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--navy-900);
  color: var(--gray-400);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  height: 65px;
  width: auto;
  margin-bottom: var(--space-lg);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(46, 125, 50, 0.3)) brightness(1.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.footer-social:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xl);
}

.footer-column li {
  margin-bottom: var(--space-md);
}

.footer-column a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-column a:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ===================================================================
   SCROLL-TO-TOP
   =================================================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 99;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.5);
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .broadband-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Responsive Header & Navbar Breakpoints ---------- */
@media (max-width: 1260px) {
  .nav-links {
    gap: 3px;
  }

  .nav-link {
    padding: 5px 8px;
  }

  .nav-item-title {
    font-size: 0.82rem;
  }

  .nav-item-sub {
    font-size: 0.58rem;
  }

  .nav-contact-card {
    padding: 5px 10px;
  }

  .nav-dropdown-menu {
    width: 500px;
  }
}

@media (max-width: 1080px) {
  :root {
    --nav-height: 72px;
  }

  .topbar .hide-mobile,
  .topbar .topbar-divider.hide-mobile {
    display: none;
  }

  .topbar-inner {
    justify-content: space-between;
  }

  /* Nav mobile drawer */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: rgba(8, 18, 34, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 85px 20px 35px;
    gap: 8px;
    overflow-y: auto;
    transition: right var(--transition-base);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

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

  .nav-item {
    width: 100%;
    display: block;
  }

  .nav-link {
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-item-title {
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .nav-item-sub {
    font-size: 0.7rem;
    margin-top: 3px;
  }

  /* Mobile Dropdown */
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: none;
    padding: 10px;
    margin-top: 6px;
    display: none;
    border-radius: 10px;
  }

  .nav-dropdown-wrapper.dropdown-open .nav-dropdown-menu {
    display: block;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dropdown-item {
    padding: 8px 10px;
  }

  .nav-item.nav-item-cta {
    margin-top: 12px;
  }

  .nav-contact-card {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding: 11px 18px;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .section-padding {
    padding: var(--space-3xl) 0;
  }

  /* Mobile overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

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

  /* Hero */
  .hero-watermark {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image img {
    height: 350px;
  }

  .about-image-badge {
    bottom: -15px;
    right: 15px;
    padding: var(--space-lg);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Brands */
  .brands-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  /* Export */
  .export-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .export-image img {
    height: 350px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.tall img {
    min-height: 280px;
  }

  /* Broadband */
  .broadband-brand-visual {
    flex-direction: column;
    text-align: center;
  }

  .broadband-features-list {
    grid-template-columns: 1fr;
  }

  .broadband-plan-header {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .broadband-speed-badge {
    text-align: left;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stat .number {
    font-size: 2rem;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* ===================================================================
   WHATSAPP FLOATING BUTTON
   =================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition-base);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}
