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

:root {
  --navy: #f0f5ff;
  --dark: #1e2d5a;
  --mid: #eef3ff;
  --blue: #1a4fbf;
  --royal: #2560d4;
  --sky: #1a4fbf;
  --accent: #00eaff;
  --light: #f5f7fb;
  --white: #ffffff;
  --gray: #4b6690;
  --border: rgba(26, 79, 191, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: #f8faff;
  color: #1e2d5a;
  overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.accent {
  color: var(--accent);
}
.blue-text {
  color: var(--sky);
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 18px 0;
  background: rgba(26, 79, 191, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 20px rgba(26, 79, 191, 0.3);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, padding 0.3s;
}

/* Scrolled state — wit */
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(26, 79, 191, 0.1);
  box-shadow: 0 2px 24px rgba(26, 79, 191, 0.1);
}
nav.scrolled .nav-links a {
  color: #4b6690;
}
nav.scrolled .nav-links a:hover {
  color: #1a4fbf;
}
nav.scrolled .nav-cta {
  background: #1a4fbf !important;
  color: #f0f5ff !important;
}
nav.scrolled .hamburger span {
  background: #1e2d5a;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: opacity 0.2s;
}
.logo-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #ffffff;
}

.nav-cta {
  background: #ffffff !important;
  color: #1a4fbf !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 4px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.88;
  color: #1a4fbf !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      135deg,
      rgba(240, 245, 255, 0.96) 0%,
      rgba(220, 235, 255, 0.93) 50%,
      rgba(240, 245, 255, 0.96) 100%
    ),
    url("../images/hero-bg.jpg") center/cover no-repeat;
}

/* Diagonal accent stripe */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #1a4fbf 0%, transparent 45%);
  opacity: 0.07;
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(26, 79, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 79, 191, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 18s linear infinite;
}
@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 79, 191, 0.08);
  border: 1px solid rgba(26, 79, 191, 0.25);
  color: #1a4fbf;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: "●";
  font-size: 0.5rem;
  color: var(--accent);
}

.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-title .line2 {
  color: var(--sky);
}
.hero-title .highlight {
  color: #1a4fbf;
}

.hero-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: #4b6690;
  max-width: 480px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.35s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  color: #1e2d5a;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--sky);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 40px;
  overflow: hidden;
  animation: fadeUp 1s ease 0.45s both;
}
.stat-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 18px 16px;
  text-align: center;
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a4fbf;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeIn 1.2s ease 0.3s both;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26, 79, 191, 0.3);
}
.hero-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.1);
}
.hero-img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 79, 191, 0.3), transparent 60%);
  z-index: 1;
}
.float-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(26, 79, 191, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
}
.float-card.top-left {
  top: -16px;
  left: -16px;
}
.float-card.bottom-right {
  bottom: -16px;
  right: -16px;
}
.float-card .fc-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b6690;
}
.float-card .fc-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 96px 0;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #1e2d5a;
}
.section-sub {
  font-size: 1rem;
  color: #4b6690;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 560px;
}
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--accent));
  border-radius: 2px;
  margin: 18px 0;
}

/* ===== SERVICES ===== */
#services {
  background: #ffffff;
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .section-sub {
  margin: 14px auto 0;
}
.services-header .divider {
  margin: 18px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: linear-gradient(145deg, #ffffff, #f7faff);
  border: 1px solid rgba(26, 79, 191, 0.12);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26, 79, 191, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(26, 79, 191, 0.12),
    rgba(26, 79, 191, 0.06)
  );
  border: 1px solid rgba(26, 79, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: #1e2d5a;
}
.service-desc {
  font-size: 0.9rem;
  color: #4b6690;
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  background: #f0f5ff;
  position: relative;
  overflow: hidden;
}
#how-it-works::before {
  content: "";
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 79, 191, 0.08) 0%,
    transparent 70%
  );
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(26, 79, 191, 0.25);
}
.how-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}
.how-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 14, 26, 0.7) 0%, transparent 60%);
}

.steps {
  margin-top: 32px;
}
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.step:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(26, 79, 191, 0.2);
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4fbf, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}
.step-content h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: #1e2d5a;
}
.step-content p {
  font-size: 0.88rem;
  color: #4b6690;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
#about {
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(26, 79, 191, 0.2);
}
.about-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #1a4fbf, #2560d4);
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(26, 79, 191, 0.4);
}
.about-badge-card .big-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-badge-card .big-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text {
  padding-right: 20px;
}
.about-text .section-sub {
  max-width: 100%;
}
.mission-box {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(26, 79, 191, 0.06);
  border-left: 3px solid #1a4fbf;
  border-radius: 0 8px 8px 0;
}
.mission-box p {
  font-size: 0.95rem;
  color: #1e2d5a;
  line-height: 1.7;
  font-style: italic;
}

/* ===== WHY CHOOSE US ===== */
#why {
  background: #eef3ff;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list {
  margin-top: 28px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  margin-top: 2px;
}
.why-item-text h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1e2d5a;
  margin-bottom: 3px;
}
.why-item-text p {
  font-size: 0.85rem;
  color: #4b6690;
}

.why-visual {
  position: relative;
}
.why-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 79, 191, 0.25);
}
.why-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.why-floating-stat {
  position: absolute;
  top: 24px;
  left: -24px;
  background: #ffffff;
  border: 1px solid rgba(26, 79, 191, 0.15);
  border-radius: 10px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}
.why-floating-stat .wfs-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.why-floating-stat .wfs-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== FOR BUSINESSES ===== */
#business {
  background: linear-gradient(135deg, var(--blue) 0%, #0e2a6e 100%);
  position: relative;
  overflow: hidden;
}
#business::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
}
.business-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.business-text .section-title {
  color: var(--white);
}
.business-text .section-sub {
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
}
.business-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.biz-feat {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  border-radius: 8px;
}
.biz-feat-icon {
  font-size: 1.2rem;
}
.biz-feat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.business-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}
.business-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ===== CONTACT ===== */
#contact {
  background: #ffffff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-info p {
  font-size: 0.95rem;
  color: #4b6690;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(26, 79, 191, 0.08);
  border: 1px solid rgba(26, 79, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text .cd-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b6690;
}
.contact-detail-text .cd-val {
  font-weight: 600;
  color: #1e2d5a;
  font-size: 0.95rem;
  margin-top: 2px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

/* Contact form side */
.contact-form-box {
  background: #f8faff;
  border: 1px solid rgba(26, 79, 191, 0.12);
  border-radius: 12px;
  padding: 36px;
}
.contact-form-box h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b6690;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: #ffffff;
  border: 1px solid rgba(26, 79, 191, 0.2);
  color: #1e2d5a;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: 6px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select option {
  background: #ffffff;
  color: #1e2d5a;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 6px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* ===== PROMO POPUP ===== */
#promo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.promo-modal {
  position: relative;
  max-width: 520px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: promoFadeIn 0.3s ease;
}

.promo-modal img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.promo-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

@keyframes promoFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ===== FOOTER ===== */
footer {
  background: #040a20;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}
.footer-col h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: var(--sky);
  text-decoration: none;
}

/* ===== TICKER ===== */
.ticker-bar {
  background: linear-gradient(90deg, #1a4fbf, #2560d4, #1a4fbf);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: tickerScroll 28s linear infinite;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.ticker-inner span {
  margin: 0 40px;
}
.ticker-inner span::before {
  content: "★ ";
  color: var(--accent);
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== NAV DROPDOWN ===== */
.has-dropdown {
  position: relative;
}
.has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s;
  vertical-align: middle;
}
.has-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  min-width: 210px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(26, 79, 191, 0.18);
  border: 1px solid rgba(26, 79, 191, 0.1);
  white-space: nowrap;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid rgba(26, 79, 191, 0.1);
  border-left: 1px solid rgba(26, 79, 191, 0.1);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: #4b6690 !important;
  text-transform: none !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.03em !important;
  font-weight: 500 !important;
  transition: background 0.2s, color 0.2s !important;
  text-decoration: none;
}
.nav-dropdown a:hover {
  background: rgba(26, 79, 191, 0.06);
  color: #1a4fbf !important;
}
.nav-dropdown .dd-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== CALCULATOR ===== */
#calculator {
  background: #f8faff;
}
/* ===== WEST TECH STYLE CALCULATOR ===== */
#calculator {
  background: #f4f7fb;
  padding: 60px 0;
}
.wt-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.wt-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.wt-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0e1d3a;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.wt-field {
  margin-bottom: 20px;
}
.wt-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e2d5a;
  margin-bottom: 7px;
}
.wt-input,
.wt-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #cbd5e0;
  border-radius: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: #1e2d5a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.wt-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b6690' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.wt-input:focus,
.wt-select:focus {
  outline: none;
  border-color: #1a4fbf;
  box-shadow: 0 0 0 3px rgba(26, 79, 191, 0.1);
}
/* Shipping Method toggle */
.method-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.method-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border: 1.5px solid #cbd5e0;
  border-radius: 8px;
  background: #f8fafc;
  color: #4b6690;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.method-btn:hover:not(.active) {
  border-color: #1a4fbf;
  color: #1a4fbf;
}
.method-btn.active {
  background: #1a4fbf;
  border-color: #1a4fbf;
  color: #ffffff;
}
/* $ prefix input */
.input-prefix-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-prefix {
  position: absolute;
  left: 14px;
  color: #4b6690;
  font-weight: 600;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
}
.input-prefix-wrap .wt-input {
  padding-left: 28px;
}
/* Dimensions row */
.dims-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
/* Calculate button */
.wt-calc-btn {
  width: 100%;
  padding: 14px;
  background: #1a4fbf;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(26, 79, 191, 0.25);
}
.wt-calc-btn:hover {
  background: #1440a0;
  transform: translateY(-1px);
}
/* Inline field errors */
.field-error {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #dc3545;
  font-weight: 500;
}
.field-error.visible {
  display: flex;
}
.field-error::before {
  content: '!';
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dc3545;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wt-input.error,
.wt-select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
/* Breakdown right card placeholder */
.wt-breakdown-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
  color: #a0b0c8;
  min-height: 280px;
}
.wt-breakdown-placeholder .ph-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: 0.45;
}
.wt-breakdown-placeholder p {
  font-size: 0.88rem;
  line-height: 1.6;
}
/* Breakdown rows */
.breakdown-rows {
  margin-bottom: 8px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #e8edf5;
  font-size: 0.9rem;
}
.bd-label {
  color: #4b6690;
}
.bd-value {
  font-weight: 600;
  color: #1e2d5a;
}
.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f0f5ff;
  border-radius: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.bt-label {
  font-weight: 800;
  font-size: 1rem;
  color: #0e1d3a;
}
.bt-value {
  font-weight: 800;
  font-size: 1.4rem;
  color: #1a4fbf;
}
.bd-disclaimer {
  font-size: 0.8rem;
  color: #7a8da8;
  line-height: 1.55;
  font-style: italic;
}
.bd-transit {
  font-size: 0.8rem;
  color: #4b6690;
  margin-top: 6px;
}
/* Custom quote card (below breakdown card) */
.wt-quote-card {
  background: linear-gradient(135deg, #0e2d6e, #1a4fbf);
  border-radius: 12px;
  padding: 28px;
  margin-top: 28px;
  color: #fff;
}
.wt-quote-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.wt-quote-card p {
  font-size: 0.85rem;
  color: rgba(232, 240, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 18px;
}
.wt-quote-feats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}
.wt-quote-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: rgba(232, 240, 255, 0.9);
}
.wt-quote-feat-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .wt-calc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .wt-card {
    padding: 24px 18px;
  }
  .dims-row {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8efff 100%);
  padding: 130px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(26, 79, 191, 0.1);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 79, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 79, 191, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero .page-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #1e2d5a;
  line-height: 1.02;
}
.page-hero .page-sub {
  font-size: 1.05rem;
  color: #4b6690;
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content,
  .how-layout,
  .about-layout,
  .why-layout,
  .business-inner,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-badge-card {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }
  .about-img {
    text-align: center;
  }
  .why-floating-stat {
    position: static;
    margin-bottom: 16px;
    display: inline-block;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  section {
    padding: 64px 0;
  }
}
