/* ============================================
   NOOH MARINE AUTOMATION — Design System & Styles
   Marine Solutions, Automated Excellence
   Bhavnagar, Gujarat, India | GSTIN: 24DAGPM7100C1Z9
   ============================================ */

/* ---- CSS Variables & Design Tokens ---- */
:root {
  --primary-navy: #0b2240;
  --primary-dark: #06152a;
  --primary-blue: #004b93;
  --accent-cyan: #00d4ff;
  --accent-cyan-glow: rgba(0, 212, 255, 0.4);
  --accent-gold: #ffb703;
  --accent-gold-hover: #e0a000;
  
  --bg-dark: #07101e;
  --bg-card-dark: rgba(13, 27, 48, 0.85);
  --bg-light: #f4f7fc;
  --bg-white: #ffffff;
  --bg-surface: #edf2f7;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-dim: #94a3b8;

  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-cyan: rgba(0, 212, 255, 0.3);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', var(--font-main);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 34, 64, 0.12);
  --shadow-lg: 0 16px 40px rgba(11, 34, 64, 0.2);
  --shadow-cyan: 0 8px 30px rgba(0, 212, 255, 0.25);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
  list-style: none;
}

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

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

/* ---- Helper Containers & Classes ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 75, 147, 0.08);
  border: 1px solid rgba(0, 75, 147, 0.2);
  border-radius: var(--radius-full);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.section-header {
  text-align: center;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(0, 75, 147, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 75, 147, 0.45);
  background: linear-gradient(135deg, #0056b3, #091c36);
}

.btn-accent {
  background: linear-gradient(135deg, #00c2ff, #0088ff);
  color: #031427;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 212, 255, 0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.6);
  background: linear-gradient(135deg, #33dcff, #0099ff);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* ---- TOP HEADER BAR ---- */
.topbar {
  background-color: var(--primary-dark);
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  color: var(--accent-cyan);
}

.topbar-gst {
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid var(--border-cyan);
  color: var(--accent-cyan);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- MAIN NAVIGATION BAR ---- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(11, 34, 64, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

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

.nav-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--accent-cyan);
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-logo-icon {
  background: linear-gradient(135deg, var(--accent-cyan), #0088ff);
  color: var(--primary-dark);
}

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

.nav-logo-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.navbar.scrolled .nav-logo-brand {
  color: var(--bg-white);
}

.nav-logo-brand span {
  color: var(--primary-blue);
}

.navbar.scrolled .nav-logo-brand span {
  color: var(--accent-cyan);
}

.nav-logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.navbar.scrolled .nav-logo-sub {
  color: var(--text-dim);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 8px 0;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--primary-navy);
  border-radius: 3px;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
  background-color: var(--bg-white);
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(135deg, rgba(6, 21, 42, 0.92), rgba(11, 34, 64, 0.88)),
              url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  padding: 100px 0 140px 0;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid var(--border-cyan);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 212, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #00d4ff, #80e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 760px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: rgba(13, 27, 48, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: var(--radius-lg);
  max-width: 960px;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  fill: var(--bg-white);
}

/* ---- CARD SHOWCASE (5 MAIN PRODUCTS FROM USER BUSINESS CARD) ---- */
.quick-products {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.quick-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.quick-card-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

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

.quick-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.quick-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ---- ABOUT SECTION ---- */
.about {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.about-content .section-title {
  text-align: left;
}

.about-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 75, 147, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.about-visual {
  position: relative;
}

.about-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.about-image-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-floating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--primary-dark);
  color: var(--bg-white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cyan);
  border: 1px solid var(--border-cyan);
}

.about-floating-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
}

.about-floating-badge .txt {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ---- PRODUCTS SECTION ---- */
.products {
  padding: 100px 0;
  background: var(--bg-surface);
}

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

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.product-card-image {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: var(--transition-normal);
}

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

.product-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 34, 64, 0.85);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.product-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.product-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue);
}

.product-card-link:hover {
  color: var(--accent-cyan);
}

/* ---- LIVE INVENTORY SHOWCASE ---- */
.inventory {
  padding: 100px 0;
  background: var(--bg-dark);
  color: var(--bg-white);
}

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

.inventory .section-subtitle {
  color: var(--text-dim);
}

.inventory-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.inventory-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.inventory-search {
  position: relative;
  min-width: 300px;
}

.inventory-search input {
  width: 100%;
  padding: 12px 20px 12px 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  color: var(--bg-white);
  outline: none;
  transition: var(--transition-fast);
}

.inventory-search input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.inventory-search .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.inv-card {
  background: var(--bg-card-dark);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.inv-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-cyan);
}

.inv-card-img {
  height: 200px;
  background: #0a192f;
  position: relative;
  overflow: hidden;
}

.inv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.inv-badge-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.inv-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.inv-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  font-weight: 600;
}

.inv-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.inv-card-specs {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  flex-grow: 1;
}

.inv-card-actions {
  display: flex;
  gap: 10px;
}

.inv-card-actions .btn {
  padding: 8px 14px;
  font-size: 0.82rem;
  flex: 1;
}

/* ---- LIGHTBOX MODAL ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 42, 0.85);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  background: var(--primary-dark);
  border: 1px solid var(--border-cyan);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  color: var(--bg-white);
  z-index: 10;
  overflow: hidden;
  animation: modalIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--bg-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.lightbox-img-box {
  background: #0a192f;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-box img {
  max-height: 320px;
  object-fit: contain;
}

.lightbox-details {
  padding: 32px;

}

.lightbox-category {
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 6px 0 16px 0;
}

.lightbox-meta p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.lightbox-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin: 16px 0 24px 0;
  line-height: 1.6;
}

.lightbox-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- WHY CHOOSE US ---- */
.why-us {
  padding: 100px 0;
  background: var(--bg-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-us-card {
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.why-us-card:hover {
  transform: translateY(-6px);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.why-us-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.why-us-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---- GLOBAL REACH & MAP ---- */
.global-reach {
  padding: 100px 0;
  background: var(--primary-dark);
  color: var(--bg-white);
}

.global-reach .section-title { color: var(--bg-white); }
.global-reach .section-subtitle { color: var(--text-dim); }

.global-reach-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.global-map-box {
  position: relative;
  background: rgba(13, 27, 48, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  padding: 20px;
}

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

.global-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card-dark);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
}

.global-stat-icon {
  font-size: 2rem;
}

.global-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
}

.global-stat-lbl {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ---- BRANDS SECTION ---- */
.brands {
  padding: 50px 0;
  background: var(--primary-navy);
  color: var(--bg-white);
  overflow: hidden;
}

.brands-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.brands-track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.brand-item:hover {
  color: var(--accent-cyan);
  transform: scale(1.1);
}

/* ---- CONTACT SECTION ---- */
.contact {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 75, 147, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

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

.contact-form-box {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(0, 75, 147, 0.15);
}

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

/* ---- FOOTER ---- */
.footer {
  background: var(--primary-dark);
  color: var(--text-dim);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-dark);
}

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

.footer-brand p {
  margin: 16px 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

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

/* ---- FLOATING WHATSAPP BUTTON ---- */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: flex;
  align-items: center;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---- SCROLL TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary-navy);
  color: var(--accent-cyan);
  border: 1px solid var(--border-cyan);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  background: var(--accent-cyan);
  color: var(--primary-dark);
}

/* ---- RESPONSIVE BREAKPOINTS ---- */
@media (max-width: 992px) {
  .hero-title { font-size: 2.75rem; }
  .about-grid, .global-reach-content, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--primary-dark);
    flex-direction: column;
    padding: 40px;
    transition: var(--transition-normal);
  }

  .nav-menu.active { left: 0; }
  .nav-links { flex-direction: column; width: 100%; text-align: center; gap: 20px; }
  .nav-toggle { display: flex; }
  .lightbox-body { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-container { flex-direction: column; align-items: flex-start; }
}
