/* ==========================================================================
   ANANTA GLOBAL F.Z.C. - DESIGN SYSTEM & STYLESHEET
   Primary: Navy Blue (#0B3C6D) | Secondary: Gold (#D4AF37)
   ========================================================================== */

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

/* --- CSS CUSTOM PROPERTIES (DESIGN SYSTEM) --- */
:root {
  --primary: #0b3c6d;
  --primary-rgb: 11, 60, 109;
  --primary-light: #164e8c;
  --primary-dark: #07274a;
  
  --secondary: #d4af37;
  --secondary-rgb: 212, 175, 55;
  --secondary-light: #e6c55c;
  --secondary-dark: #a8841c;
  
  --bg-light: #ffffff;
  --bg-offset: #f4f7fa;
  --bg-dark: #071524;
  
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  
  --border-color: #e2e8f0;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.3);
  
  --success: #10b981;
  --success-light: #d1fae5;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
  --shadow-glow: 0 0 25px rgba(11, 60, 109, 0.1);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

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

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

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

ul {
  list-style: none;
}

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

/* --- DYNAMIC TRANSITIONS & ANIMATIONS --- */
@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); opacity: 0.5; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes lineFlow {
  to { stroke-dashoffset: -40; }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.4rem;
  border: 1px solid var(--secondary);
  box-shadow: var(--shadow-sm);
}

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

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

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-light) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1px solid transparent;
}

.nav-cta:hover {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background-color: var(--bg-dark);
  padding: 180px 0 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* Canvas/SVG route styling in Hero */
.hero-map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--secondary);
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

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

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(11,60,109,0.2) 0%, rgba(0,0,0,0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-medallion {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background-color: #ffffff;
  border: 4px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  overflow: hidden;
  z-index: 5;
}

.hero-logo-medallion img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  display: block;
}

/* Styled global connections vector graphic */
.global-map-glow {
  width: 100%;
  height: 100%;
  animation: float 6s ease-in-out infinite;
}

/* --- SECTION DECORATORS --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-offset {
  background-color: var(--bg-offset);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- STATISTICS COUNTER --- */
.stats {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

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

.about-img-box {
  position: relative;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 5px solid var(--secondary);
  border-left: 5px solid var(--secondary);
  z-index: 0;
}

.about-img-box::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 5px solid var(--primary);
  border-right: 5px solid var(--primary);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-img svg {
  background-color: var(--primary-dark);
  display: block;
}

.about-details h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.about-details p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feat-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.about-feat-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

/* --- PRODUCTS SECTION --- */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

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

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

.product-img-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--bg-offset);
}

.product-img-container svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-img-container svg {
  transform: scale(1.1);
}

.product-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-dark);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  border: 1px solid var(--secondary);
}

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

.product-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

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

.product-action {
  width: 100%;
  padding: 10px;
  font-size: 0.85rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.product-card:hover .product-action {
  background-color: var(--primary);
  color: var(--text-light);
}

.product-action:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: var(--text-light) !important;
}

/* --- INTERACTIVE SVG WORLD MAP --- */
.map-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}

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

.map-container {
  position: relative;
  background: radial-gradient(circle, rgba(11,60,109,0.15) 0%, rgba(7,21,36,0) 80%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 30px;
  margin-top: 40px;
}

/* SVG map styling */
.svg-world-map {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
}

.map-land {
  fill: #1e293b;
  stroke: #071524;
  stroke-width: 0.5;
  transition: var(--transition);
}

.map-highlighted {
  fill: #163659;
  stroke: #2563eb;
  stroke-width: 0.8;
}

.map-pin {
  cursor: pointer;
  transition: var(--transition);
}

.map-pin circle.outer-ring {
  fill: var(--secondary);
  opacity: 0.4;
  transform-origin: center;
  animation: pulseGlow 2s infinite;
}

.map-pin circle.inner-dot {
  fill: var(--secondary);
}

.map-pin:hover circle.inner-dot {
  fill: var(--text-light);
}

.map-pin:hover circle.outer-ring {
  opacity: 0.8;
  stroke: var(--secondary-light);
  stroke-width: 2px;
}

.map-route-line {
  stroke: var(--secondary);
  stroke-width: 1.5;
  stroke-dasharray: 8, 4;
  fill: none;
  opacity: 0.6;
  animation: lineFlow 10s linear infinite;
}

/* Country Details Drawer/Card */
.map-details-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 320px;
  background: rgba(7, 21, 36, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  transition: var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.map-details-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.map-details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.map-details-country {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-details-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
}

.map-details-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.map-details-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-slow);
  display: flex;
  gap: 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 60, 109, 0.2);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(11, 60, 109, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--text-light);
}

.service-info h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.service-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.why-image-wrapper {
  background-color: var(--primary-dark);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

.why-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-check {
  width: 24px;
  height: 24px;
  background-color: var(--secondary);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.why-item-content h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.why-item-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- CLIENT TESTIMONIALS --- */
.testimonials {
  background-color: var(--bg-offset);
  overflow: hidden;
}

.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}

.testimonial-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4rem;
  position: absolute;
  top: -30px;
  left: -20px;
  color: rgba(212, 175, 55, 0.2);
  font-family: Georgia, serif;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.testimonial-company {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-country {
  color: var(--secondary-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  font-size: 1rem;
  color: var(--primary);
}

.slider-nav:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.slider-prev {
  left: -10px;
}

.slider-next {
  right: -10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--secondary);
  width: 24px;
  border-radius: 4px;
}

/* --- REQUEST FOR QUOTATION (RFQ) --- */
.rfq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.rfq-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.rfq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.rfq-full-width {
  grid-column: span 2;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-offset);
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-light);
  box-shadow: 0 0 0 3px rgba(11, 60, 109, 0.1);
}

/* Custom file uploader */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  background-color: var(--bg-offset);
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-wrapper.dragover {
  border-color: var(--secondary);
  background-color: rgba(212, 175, 55, 0.05);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.file-upload-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-upload-text strong {
  color: var(--primary);
}

.file-list {
  margin-top: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.file-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-weight: bold;
}

.rfq-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rfq-info-title {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.rfq-info-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.rfq-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rfq-step {
  display: flex;
  gap: 16px;
}

.rfq-step-num {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--secondary);
}

.rfq-step-content h3 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.rfq-step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rfq-success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 21, 36, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.rfq-success-content {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  padding: 40px;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.rfq-success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.rfq-success-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.rfq-success-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* --- DOWNLOAD PROFILE SECTION --- */
.download-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(0,0,0,0) 75%);
  pointer-events: none;
}

.download-title {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.download-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* --- CONTACT US & MAPS --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(11, 60, 109, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(11, 60, 109, 0.1);
}

.contact-info-content h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

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

.contact-info-content a:hover {
  color: var(--secondary-dark);
}

.map-iframe-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 350px;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  font-size: 2rem;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.3;
  z-index: -1;
  animation: pulseGlow 2s infinite;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background-color: rgba(7, 21, 36, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(-450px);
  transition: var(--transition-slow);
}

.cookie-banner.active {
  transform: translateX(0);
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--secondary);
  color: var(--bg-dark);
}

.cookie-accept:hover {
  background-color: var(--secondary-light);
}

.cookie-decline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-light);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.social-icon:hover {
  background-color: var(--secondary);
  color: var(--bg-dark);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .about-grid, .why-grid, .rfq-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-box {
    max-width: 500px;
    margin: 0 auto;
  }
  .why-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    height: 70px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
    overflow-y: auto;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    color: var(--text-light);
    font-size: 1.1rem;
  }
  .nav-link:hover {
    color: var(--secondary);
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-badge {
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rfq-form-grid {
    grid-template-columns: 1fr;
  }
  .rfq-full-width {
    grid-column: span 1;
  }
  .rfq-card {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .map-details-card {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
  }
  
}
