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

/* ==========================================
   DESIGN SYSTEM VARIABLES (LIGHT THEME)
   ========================================== */
:root {
  --bg-dark: #f8fafc;        /* Body background */
  --bg-card: #ffffff;        /* Card & container background */
  --bg-card-hover: #ffffff;
  --primary: #002c77;        /* Brand Blue */
  --primary-hover: #001e52;
  --primary-glow: rgba(0, 44, 119, 0.08);
  --accent: #f25c05;         /* Brand Orange */
  --accent-hover: #d34d00;
  --accent-glow: rgba(242, 92, 5, 0.12);
  --text-main: #1e293b;      /* Main headings/body text */
  --text-muted: #64748b;     /* Description text */
  --border-color: #e2e8f0;   /* Slate 200 border */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 20px rgba(0, 44, 119, 0.04);
  --shadow-hover: 0 10px 25px rgba(0, 44, 119, 0.08);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-family-heading: 'Outfit', sans-serif;
}

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

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

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

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

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

ul {
  list-style: none;
}

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

p {
  color: var(--text-muted);
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header.scrolled {
  padding: 0.25rem 0;
  box-shadow: 0 4px 20px rgba(0, 44, 119, 0.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px; /* Increased Header Height */
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 68px; /* Increased Logo Size */
  width: auto;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 56px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  font-family: var(--font-family-heading);
}

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

.nav-btn {
  background-color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 44, 119, 0.2);
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  background-color: var(--accent);
  box-shadow: 0 6px 15px rgba(242, 92, 5, 0.3);
  transform: translateY(-1px);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

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

/* Services Dropdown (2-Column Grid) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 44, 119, 0.1);
  z-index: 100;
}

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

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 4px;
  transition: var(--transition-smooth);
  text-align: left;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background-color: var(--bg-dark);
  padding-left: 1.25rem;
}

/* ==========================================
   BUTTONS & UI ELEMENTS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 92, 5, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--primary-glow);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background-color: var(--primary-glow);
  border: 1px solid rgba(0, 44, 119, 0.15);
  color: var(--primary);
  font-family: var(--font-family-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* ==========================================
   HERO SECTION (DARK CORPORATE ENVIRONMENT)
   ========================================== */
.hero {
  padding-top: 140px;
  padding-bottom: 70px;
  position: relative;
  background: linear-gradient(135deg, #030d22 0%, #0c2044 100%);
  color: #ffffff;
  overflow: hidden;
}

/* Custom Page Hero Section (Dynamic Mockup Reconstruction) */
.custom-page-hero {
  padding-top: 140px;
  padding-bottom: 50px;
  position: relative;
  background: linear-gradient(135deg, #020813 0%, #081329 100%);
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.custom-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 30%, rgba(242, 92, 5, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.custom-page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242, 92, 5, 0.1);
  border: 1px solid rgba(242, 92, 5, 0.25);
  color: var(--accent);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.custom-hero-title {
  font-family: var(--font-family-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.custom-hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
}
.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
.hero-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hero-pillar-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.hero-pillar-title {
  font-family: var(--font-family-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-pillar-desc {
  font-size: 0.68rem;
  color: #94a3b8;
  line-height: 1.3;
}

/* Right-side visual collage/hex frames */
.hero-frame-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-frame-border {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 25px rgba(242, 92, 5, 0.2);
  clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%);
}
.hero-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s ease;
}
.hero-frame-border:hover .hero-frame-img {
  transform: scale(1.04);
}
.hero-frame-overlay-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #020813;
  border: 2px solid var(--accent);
  color: #ffffff;
  padding: 1.25rem;
  max-width: 220px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 10;
  text-align: center;
  font-family: var(--font-family-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
}

/* Contact Info Column in Hero */
.hero-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
.hero-contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-contact-info-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
.hero-contact-info-item span {
  font-size: 0.9rem;
  color: #cbd5e1;
}
.hero-contact-info-item a {
  color: #cbd5e1;
  transition: color 0.2s;
}
.hero-contact-info-item a:hover {
  color: var(--accent);
}

/* Contact Checklist Column */
.hero-checklist-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  width: 100%;
}
.hero-checklist-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.hero-checklist-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(242, 92, 5, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.hero-checklist-content h4 {
  font-family: var(--font-family-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}
.hero-checklist-content p {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* Gallery Collage Frame Grid */
.hero-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  aspect-ratio: 1.35 / 1;
}
.hero-collage-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.hero-collage-item.large {
  grid-row: span 2;
}
.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .custom-page-hero {
    padding-top: 120px;
  }
  .custom-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Server room background image overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/server-room.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  color: #cbd5e1;
}

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

.hero-btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.hero-btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

/* Decorative graphics for Hero */
.hero-graphic {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphic-core {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242, 92, 5, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s infinite alternate;
}

.graphic-ring {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.ring-1 { width: 260px; height: 260px; }
.ring-2 { width: 340px; height: 340px; animation-direction: reverse; }

.graphic-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 6s infinite ease-in-out;
}

.card-1 { top: 20%; right: 5%; }
.card-2 { bottom: 15%; left: 5%; animation-delay: -3s; }

.graphic-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.graphic-card-info h4 {
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
  color: #ffffff;
}

.graphic-card-info p {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

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

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

/* ==========================================
   SECTIONS GENERAL
   ========================================== */
.section {
  padding: 40px 0;
  position: relative;
}

.section-alt {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

/* ==========================================
   SERVICES GRID (9 SERVICES)
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition-smooth);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background-color: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.service-card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.service-card-desc {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.service-card-link svg {
  transition: var(--transition-smooth);
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 44, 119, 0.1);
  box-shadow: var(--shadow-hover);
}

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

.service-card:hover .service-card-icon {
  background-color: var(--accent);
  color: #ffffff;
}

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

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ==========================================
   ABOUT / TRUST STATS SECTION
   ========================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

.stat-number {
  font-family: var(--font-family-heading);
  font-size: 2.5rem;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.features-list {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon-wrapper {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.feature-info p {
  font-size: 0.9rem;
}

/* ==========================================
   PARTNERS GRID & OEM SECTION
   ========================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.partner-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Highlighted Partner Logo Cards & Marquee */
.partners-highlight-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
}

.partners-highlight-track {
  display: flex;
  gap: 2.5rem; /* 40px gap */
  width: max-content;
  animation: scrollHighlightMarquee 35s linear infinite;
}

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

.partner-highlight-card {
  width: 260px; /* Bigger width */
  height: 115px; /* Bigger height */
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 0 15px rgba(242, 92, 5, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
}

.partner-highlight-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(242, 92, 5, 0.2);
}

.partner-highlight-card svg {
  height: 60px !important;
  width: auto !important;
  max-width: 90% !important;
  max-height: 85% !important;
  display: block;
}

@keyframes scrollHighlightMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3000px); /* 10 original cards * (260px width + 40px gap) = 3000px */
  }
}

.partner-card span {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}

.partner-card span.sub-partner {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.1rem;
}

/* ==========================================
   TIMELINE (JOURNEY)
   ========================================== */
.timeline-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--border-color);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  width: 15%;
  text-align: center;
}

.timeline-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 5px solid var(--primary);
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 4px rgba(255,255,255,1);
}

.timeline-item:hover .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.15);
}

.timeline-year {
  font-family: var(--font-family-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================
   CONTACT SECTION & FORM (FROM REFERENCE)
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info-desc {
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background-color: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.contact-method-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

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

.contact-method-card a:hover {
  color: var(--accent);
}

/* White form card with solid border */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.contact-form-wrapper h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

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

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

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

.form-control {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text-main);
  font-family: var(--font-family-sans);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(242, 92, 5, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background-color: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.9rem;
  font-weight: 700;
}

.submit-btn:hover {
  background-color: var(--accent-hover);
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #15803d;
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}

/* SOLUTIONS SIDEBAR LIST (ON CONTACT PAGE) */
.solutions-sidebar {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.solutions-sidebar h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.sidebar-list {
  display: grid;
  gap: 0.5rem;
}

.sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.sidebar-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  padding-left: 1.25rem;
}

.sidebar-item svg {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.sidebar-item:hover svg {
  color: var(--accent);
  transform: translateX(3px);
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border: none;
  font-family: var(--font-family-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-icon {
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.75rem;
}

.faq-item.active .faq-content {
  padding-bottom: 1.25rem;
}

.faq-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================
   MAP & LOCATION DETAIL
   ========================================== */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  height: 350px;
}

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

/* ==========================================
   CTA CONTACT BANNER (24/7 SUPPORT PANEL)
   ========================================== */
.support-panel-cta {
  background-color: var(--primary);
  color: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--shadow-hover);
}

.support-panel-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.support-panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}

.support-panel-info h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.support-panel-info p {
  color: #93c5fd;
  font-size: 0.9rem;
}

.support-panel-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.support-action-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.support-action-link:hover {
  color: var(--accent);
}

.support-action-whatsapp {
  background-color: #25d366;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
}

.support-action-whatsapp:hover {
  background-color: #20ba5a;
  color: #ffffff;
}

/* ==========================================
   SERVICE DETAILS LAYOUT
   ========================================== */
.service-header-section {
  padding-top: 145px;
  padding-bottom: 55px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #020813 0%, #081329 100%);
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-header-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(242, 92, 5, 0.1) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.service-header-section .container {
  position: relative;
  z-index: 2;
}

.service-header-section h1 {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.service-header-section p {
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto;
  color: #cbd5e1;
  line-height: 1.6;
}

.service-header-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242, 92, 5, 0.12);
  border: 1px solid rgba(242, 92, 5, 0.25);
  color: var(--accent);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-details-grid.reverse {
  direction: rtl;
}

.service-details-grid.reverse * {
  direction: ltr;
}

.service-details-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.service-details-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

.service-feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.service-feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.service-feature-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1.05rem;
}

.service-feature-card p {
  font-size: 0.85rem;
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.service-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(7, 12, 25, 0.4) 100%);
}

.cta-banner {
  background: linear-gradient(135deg, rgba(0, 44, 119, 0.05) 0%, rgba(242, 92, 5, 0.05) 100%);
  border: 1px solid var(--border-color);
  padding: 4rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 6px;
  box-shadow: var(--shadow-card);
}

.cta-banner h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.cta-banner p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ==========================================
   FOOTER (DARK NORDIC/NAVY BLUE)
   ========================================== */
.footer {
  background-color: #030a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  position: relative;
  color: #cbd5e1;
}

.footer h4, .footer a, .footer p {
  color: #cbd5e1;
}

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

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  max-width: 280px;
  color: #94a3b8;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff !important;
}

.footer-links {
  display: grid;
  gap: 1rem;
}

.footer-link {
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-link:hover {
  color: var(--accent) !important;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #94a3b8;
}

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

.footer-legal-link {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-legal-link:hover {
  color: var(--accent) !important;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================
   SCROLL INTERSECTION ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
  background-color: #25d366;
}

.float-call {
  background-color: var(--accent);
}

.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  color: var(--text-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.float-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 66px;
}

/* ==========================================
   GALLERY PAGE STYLES
   ========================================== */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.gallery-tab {
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-tab:hover, .gallery-tab.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.gallery-img-wrapper {
  height: 220px;
  width: 100%;
  overflow: hidden;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}
.gallery-info {
  padding: 1.25rem;
  text-align: left;
}
.gallery-title {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.gallery-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  
  .hero-title { font-size: 2.5rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    align-items: stretch;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background-color: var(--bg-dark);
    border: none;
    box-shadow: none;
    padding: 0.5rem 0;
    min-width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-align: center;
  }

  .dropdown-menu a:hover {
    padding-left: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-graphic {
    height: 300px;
  }

  .ring-1 { width: 200px; height: 200px; }
  .ring-2 { width: 260px; height: 260px; }

  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .timeline-container {
    flex-direction: column;
    gap: 2rem;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
  }

  .timeline-container::before {
    top: 0;
    left: 12px;
    width: 3px;
    height: 100%;
  }

  .timeline-item {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .timeline-dot {
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(255,255,255,1);
  }

  .timeline-content {
    margin-top: -3px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

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

  .service-details-grid, .service-details-grid.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
    direction: ltr;
  }

  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .float-btn {
    width: 48px;
    height: 48px;
  }

  .map-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}
