/* ============================================
   ABMIRO WEBSITE - CUSTOM STYLES
   ============================================ */

:root {
  --bg-primary: #050a14;
  --bg-secondary: #0a1628;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  /* Abmiro Brand Colors */
  --accent-blue: #1863DC;
  --accent-blue-dark: #0051CD;
  --accent-cyan: #00AAFF;
  /* Rekart Brand */
  --rekart-blue: #1B1AFF;
  /* Postree Brand */
  --postree-green: #21a28b;
  --postree-green-dark: #14957e;
  --accent-purple: #8b5cf6;
  --accent-gold: #f59e0b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(24, 99, 220, 0.4);
  --shadow-blue: 0 0 40px rgba(24, 99, 220, 0.15);
  --shadow-cyan: 0 0 40px rgba(0, 170, 255, 0.15);
}

/* ============================================
   BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.gradient-text {
  background: linear-gradient(135deg, #1863DC, #00AAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #8b5cf6, #1863DC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-rekart {
  background: linear-gradient(135deg, #1B1AFF, #00AAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-postree {
  background: linear-gradient(135deg, #21a28b, #00AAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-link.active {
  color: var(--text-primary);
}

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

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.nav-dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-blue);
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid var(--accent-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* ============================================
   CARDS
   ============================================ */

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.product-card:hover::before {
  opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.container-custom.hero-inner {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 1px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 2px;
  margin: 1.5rem auto;
}

/* ============================================
   AI SECTION
   ============================================ */

.ai-section {
  position: relative;
  overflow: hidden;
}

.ai-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.ai-card {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.ai-card:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.ai-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(24, 99, 220, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #a78bfa;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.ai-card:hover .ai-icon-wrapper {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(24, 99, 220, 0.25));
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

/* ============================================
   UNIFIED ICON BOX SYSTEM
   ============================================ */

/* Base icon box */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.icon-box-sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.icon-box-lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.5rem;
}

/* Color variants */
.icon-box-blue {
  background: rgba(24, 99, 220, 0.12);
  border: 1px solid rgba(24, 99, 220, 0.22);
  color: #60a5fa;
}
.icon-box-blue:hover, .rekart-feature-card:hover .icon-box-blue { color: #93c5fd; }

.icon-box-rekart {
  background: rgba(27, 26, 255, 0.1);
  border: 1px solid rgba(27, 26, 255, 0.2);
  color: #818cf8;
}
.rekart-feature-card:hover .icon-box-rekart {
  background: rgba(27, 26, 255, 0.18);
  box-shadow: 0 0 16px rgba(27, 26, 255, 0.15);
}

.icon-box-postree {
  background: rgba(33, 162, 139, 0.1);
  border: 1px solid rgba(33, 162, 139, 0.2);
  color: #34d399;
}
.postree-feature-card:hover .icon-box-postree {
  background: rgba(33, 162, 139, 0.18);
  box-shadow: 0 0 16px rgba(33, 162, 139, 0.15);
}

.icon-box-purple {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: #a78bfa;
}

.icon-box-gold {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #fbbf24;
}

.icon-box-cyan {
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.2);
  color: #38bdf8;
}

.icon-box-green {
  background: rgba(33, 162, 139, 0.1);
  border: 1px solid rgba(33, 162, 139, 0.2);
  color: #34d399;
}

/* Gradient variants (filled) */
.icon-box-gradient {
  background: linear-gradient(135deg, #1863DC, #00AAFF);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(24, 99, 220, 0.3);
}
.icon-box-gradient-rekart {
  background: linear-gradient(135deg, #1B1AFF, #1863DC);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(27, 26, 255, 0.3);
}
.icon-box-gradient-postree {
  background: linear-gradient(135deg, #21a28b, #14957e);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(33, 162, 139, 0.3);
}
.icon-box-gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #1863DC);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

/* Section hero icon (large, centered) */
.section-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

/* Inline badge icon */
.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   LOCATION CARDS
   ============================================ */

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card.india::after {
  background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}

.location-card.ireland::after {
  background: linear-gradient(90deg, #169B62, #FFFFFF, #FF883E);
}

.location-card.dubai::after {
  background: linear-gradient(90deg, #00732f, #ffffff, #ff0000, #000000);
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}

.location-card:hover::after {
  opacity: 1;
}

.location-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-blue), var(--accent-cyan), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

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

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  border: 3px solid var(--bg-primary);
  z-index: 1;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.timeline-spacer {
  flex: 1;
}

/* ============================================
   TEAM / ABMIRIANS
   ============================================ */

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

.team-card:hover .team-avatar {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* ============================================
   STATS COUNTER
   ============================================ */

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

/* ============================================
   FEATURE ICONS
   ============================================ */

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  background: rgba(24, 99, 220, 0.1);
  border: 1px solid rgba(24, 99, 220, 0.2);
  color: #60a5fa;
  transition: all 0.3s ease;
}

.feature-icon.cyan {
  background: rgba(27, 26, 255, 0.1);
  border-color: rgba(27, 26, 255, 0.2);
  color: #818cf8;
}

.feature-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.feature-icon.gold {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.feature-icon-green {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(33, 162, 139, 0.1);
  border: 1px solid rgba(33, 162, 139, 0.2);
  color: #34d399;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.glass-card:hover .feature-icon,
.rekart-feature-card:hover .feature-icon,
.postree-feature-card:hover .feature-icon-green {
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* ============================================
   CULTURE VALUES
   ============================================ */

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.value-card:hover::before {
  opacity: 1;
}

.value-number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,182,212,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* ============================================
   PRODUCT HERO BACKGROUNDS
   ============================================ */

.rekart-hero-bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.postree-hero-bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 0.625rem;
}

.footer-link:hover {
  color: var(--text-primary);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 10, 20, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--accent-cyan);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================================
   FLOATING ANIMATION
   ============================================ */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

/* ============================================
   ORBS / BLOBS
   ============================================ */

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.orb-blue {
  background: var(--accent-blue);
}

.orb-cyan {
  background: var(--accent-cyan);
}

.orb-purple {
  background: var(--accent-purple);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── Tablet (769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .container-custom {
    padding: 0 2rem !important;
  }

  .section-padding {
    padding: 4.5rem 0 !important;
  }

  .container-custom.hero-inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  /* Keep floating hero cards inside the grid on tablet */
  .hero-float-rekart  { left: -5px;  top: -10px; }
  .hero-float-postree { right: 0;    bottom: 0;  }
  .hero-float-dubai   { right: 0; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* ── Section spacing ── */
  .section-padding {
    padding: 3.5rem 0 !important;
  }

  /* ── Hero ── */
  .hero-section {
    min-height: auto !important;   /* override any inline min-height */
    padding-top: 0;
    padding-bottom: 0;
  }

  .container-custom.hero-inner {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  /* ── Container ── */
  .container-custom {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* ── Timeline ── */
  .timeline-wrapper {
    padding-left: 0 !important;  /* remove desktop left-padding so line/dots align on narrow screens */
  }

  /* ── Testimonials – single column ── */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* ── CTA box ── */
  .cta-box {
    padding: 2.5rem 1.5rem !important;
    border-radius: 20px !important;
  }

  /* ── AI vision banner ── */
  .ai-vision-banner {
    padding: 2rem 1.5rem !important;
    border-radius: 18px !important;
  }

  /* ── Section headings ── */
  .section-padding h2 {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* ── Product card buttons ── */
  .product-card .flex.gap-3 {
    flex-direction: column;
  }
  .product-card .flex.gap-3 .btn-secondary {
    align-self: flex-start;
  }

  /* ── AI vision banner inner grid ── */
  .ai-vision-banner .grid.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  /* ── Location cards image ── */
  .location-img {
    height: 140px !important;
  }

  /* ── Hero h1 size ── */
  .hero-section h1 {
    font-size: clamp(2.25rem, 9vw, 3.5rem) !important;
    letter-spacing: -0.025em !important;
  }

  /* ── Scroll indicator hidden on mobile ── */
  .scroll-indicator { display: none; }
}

/* ============================================
   UTILITIES
   ============================================ */

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tag-blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.tag-gold {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag-purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.check-list li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1863DC, #00AAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.product-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-top: 0.375rem;
}

/* ============================================
   LOGO IMAGES
   ============================================ */

.site-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.product-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.product-logo img:hover {
  opacity: 1;
}

/* Navbar logo */
.nav-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem 1.125rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  outline: none;
  resize: none;
}

.contact-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(24, 99, 220, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.contact-input::placeholder {
  color: var(--text-secondary);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

/* ============================================
   DISCUSS PAGE
   ============================================ */

.discuss-option-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.discuss-option-card:hover,
.discuss-option-card.selected {
  border-color: var(--accent-blue);
  background: rgba(24, 99, 220, 0.06);
}

.discuss-option-card.selected {
  box-shadow: 0 0 0 1px var(--accent-blue);
}

.time-slot {
  padding: 0.625rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.time-slot:hover,
.time-slot.selected {
  border-color: var(--accent-blue);
  background: rgba(24, 99, 220, 0.1);
  color: var(--text-primary);
}

/* Noise texture overlay */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
