/* ============================================================
   Oceanflow Equipments LLC — modern-landing.css
   Design: Clean, Modern, Airy — post-hero redesign
   ============================================================ */

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

:root {
  /* Enhanced palette */
  --gold: #1E9DC8;
  --gold-dark: #C8861A;
  --gold-light: #F5C060;
  --gold-glow: rgba(232, 160, 32, 0.18);
  --navy: #0D1B2A;
  --navy-mid: #112233;
  --navy-light: #1A2E44;
  --off-white: #F7F8FA;
  --white: #ffffff;
  --gray: #6B7280;
  --gray-light: #F1F3F7;
  --text-dark: #111827;
  --text-mid: #374151;
  --border-color: #E5E7EB;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --font-main: 'Inter', 'Barlow', sans-serif;
}

body {
  font-family: var(--font-main);
}

/* ============================================================
   TOP BAR — slimmer, cleaner
   ============================================================ */
#top-bar {
  background: var(--navy);
  padding: 9px 0;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(232, 160, 32, 0.15);
}

.top-bar-left {
  gap: 28px;
}

.top-bar-left a,
.top-bar-left span {
  font-size: 12.5px;
  letter-spacing: 0.2px;
}

/* ============================================================
   NAVBAR — clean glassmorphism
   ============================================================ */
#navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  height: 70px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(232, 160, 32, 0.08);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(30, 157, 200, 0.35);
  color: var(--navy);
}

/* ============================================================
   HERO — Video Background
   ============================================================ */

/* Wrapper keeps the same #hero dimensions */
.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

/* The <video> element fills the full hero */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Dark gradient overlay — video shows through at ~35% opacity */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(8, 14, 26, 0.80) 0%,
    rgba(8, 14, 26, 0.55) 55%,
    rgba(8, 14, 26, 0.35) 100%
  );
}

/* Content sits above video + overlay */
.hero-video-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-bottom: 100px; /* clear stats bar */
  z-index: 2;
}

/* Staggered fade-up animation for hero text */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text-animated .hero-label {
  animation: heroFadeUp 0.75s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-text-animated .hero-title {
  animation: heroFadeUp 0.75s ease forwards;
  animation-delay: 0.55s;
  opacity: 0;
}

.hero-text-animated .hero-desc {
  animation: heroFadeUp 0.75s ease forwards;
  animation-delay: 0.75s;
  opacity: 0;
}

.hero-text-animated .hero-btns {
  animation: heroFadeUp 0.75s ease forwards;
  animation-delay: 0.95s;
  opacity: 0;
}

/* Stats bar stays on top */
.hero-video-wrap .hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-stats-bar {
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--gold);
}

.hero-stat-number {
  color: var(--gold);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section-label {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-main);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 400;
  max-width: 600px;
}

.gold-bar {
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
  margin: 0 0 22px;
}

.gold-bar.center {
  margin: 0 auto 22px;
}

/* ============================================================
   BUTTONS — clean minimal style
   ============================================================ */
.btn {
  border-radius: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: none;
  padding: 12px 28px;
  gap: 8px;
  transition: all 0.22s ease;
}

.btn::after {
  display: none;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 12px var(--gold-glow);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border-color);
}

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

.btn-outline::before {
  display: none;
}

/* ============================================================
   VISION / MISSION / MOTTO — clean cards on light bg
   ============================================================ */
#vision-strip {
  background: var(--off-white);
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.vision-card {
  padding: 52px 44px;
  background: var(--white);
  border-right: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.vision-card:last-child {
  border-right: none;
}

.vision-card::before {
  display: none;
}

.vision-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  z-index: 2;
  border-radius: var(--radius);
}

.vision-icon {
  width: 50px;
  height: 50px;
  background: rgba(232, 160, 32, 0.1);
  border: 1.5px solid rgba(232, 160, 32, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.vision-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.vision-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
   ABOUT SECTION — clean & airy
   ============================================================ */
#about {
  background: var(--white);
  padding: 100px 0;
}

.about-grid {
  gap: 80px;
  align-items: center;
}

.about-img-main {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  bottom: -20px;
  right: -20px;
}

.about-img-badge .badge-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-main);
}

.about-img-badge .badge-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content {
  gap: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.about-feature:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-glow);
  transform: translateY(-2px);
}

.about-feature:hover .af-icon {
  background: var(--gold);
  color: #fff;
}

.af-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(232, 160, 32, 0.12);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s ease;
}

.about-feature h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  transition: color 0.2s;
}

.about-feature p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.55;
}

/* ============================================================
   STATS — dark navy with gold accents
   ============================================================ */
#stats {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow in the background for depth */
#stats::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 157, 200, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left text column */
#stats .section-label {
  color: var(--gold) !important;
}

#stats .section-title {
  color: #ffffff !important;
  font-size: clamp(26px, 3vw, 42px);
}

#stats .section-subtitle {
  color: rgba(255, 255, 255, 0.65) !important;
  max-width: 480px;
}

/* Circles row */
.stats-circles {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
}

.stat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* SVG circle track */
.circle-bg {
  stroke: rgba(255, 255, 255, 0.10);
  stroke-width: 6;
  fill: none;
}

.circle-bar {
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
  fill: none;
}

/* Circle wrapper: subtle glass card */
.circle-progress {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.circle-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.circle-value {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.stat-circle-item h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

/* ============================================================
   CLIENTS BAR — subtle marquee-style
   ============================================================ */
#clients {
  padding: 52px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.clients-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9CA3AF;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.clients-logos {
  gap: 48px;
}

.client-logo {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  color: #D1D5DB;
  letter-spacing: 1px;
  gap: 8px;
  transition: color 0.25s;
}

.client-logo:hover {
  color: var(--text-dark);
}

/* ============================================================
   WHY CHOOSE US — clean cards on white bg instead of dark navy
   ============================================================ */
#why-us {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

#why-us::before {
  display: none;
}

.why-us-header {
  margin-bottom: 56px;
}

.why-us-header .section-label {
  color: var(--gold);
}

.why-us-header .section-title {
  color: var(--text-dark) !important;
  font-size: clamp(28px, 3.5vw, 46px);
}

.why-us-header .section-subtitle {
  color: var(--gray) !important;
  max-width: 560px;
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  padding: 30px 26px;
  background: var(--off-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  display: none;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

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

.why-card:hover {
  background: var(--white);
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 160, 32, 0.1);
  border: 1.5px solid rgba(232, 160, 32, 0.2);
  border-radius: 12px;
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: none;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 9px;
  letter-spacing: -0.1px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   PRODUCTS — clean card grid
   ============================================================ */
#products {
  padding: 100px 0;
  background: var(--off-white);
}

.products-header {
  margin-bottom: 52px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
}

.product-card::before {
  display: none;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}

.product-card-img {
  height: 200px;
}

.product-card-img img {
  transition: transform 0.5s ease;
}

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

.product-card-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border: none;
  box-shadow: var(--shadow-sm);
}

.product-card-body {
  padding: 22px;
}

.product-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  font-family: var(--font-main);
}

.product-card-body p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}

.product-stats {
  border-top: 1px solid var(--border-color);
  padding: 12px 0;
  margin-bottom: 14px;
  gap: 14px;
}

.product-stat {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 600;
}

.product-stat span {
  color: var(--gold);
}

/* ============================================================
   CAPABILITIES — lighter treatment
   ============================================================ */
#capabilities {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}

#capabilities::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/about_workers.png');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

.cap-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.cap-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 160, 32, 0.4);
  transform: translateX(8px);
}

.cap-item:hover .cap-item-num {
  opacity: 0.9;
  color: var(--gold);
}

.cap-item-num {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  transition: opacity 0.3s, color 0.3s;
}

/* ============================================================
   FACILITY — clean two-col
   ============================================================ */
#facility {
  padding: 100px 0;
  background: var(--white);
}

.facility-img-main {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.facility-img-accent {
  border-radius: 12px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.facility-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--navy);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
}

.facility-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.facility-spec {
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.facility-spec:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-glow);
  transform: translateY(-3px);
}

.facility-spec .fs-num {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.facility-spec .fs-label {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================================
   WHAT WE DO — image grid with clean overlay
   ============================================================ */
#what-we-do {
  padding: 100px 0;
  background: var(--off-white);
}

.wwd-header {
  margin-bottom: 52px;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wwd-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.wwd-card img {
  height: 260px;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.wwd-card:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.wwd-overlay {
  background: linear-gradient(to top, rgba(10, 16, 26, 0.92) 0%, rgba(10, 16, 26, 0.3) 55%, transparent 100%);
}

.wwd-overlay h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 20px;
}

.wwd-label {
  font-family: var(--font-main);
  font-size: 10px;
  letter-spacing: 2px;
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ============================================================
   LEADERSHIP — clean on navy
   ============================================================ */
#leadership {
  padding: 100px 0;
  background: var(--off-white);
}

.leadership-inner {
  gap: 80px;
}

.ceo-photo {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.ceo-photo-wrap::before {
  display: none;
}

.ceo-photo-badge {
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  bottom: -16px;
  right: -16px;
  z-index: 2;
}

.ceo-photo-badge .ceo-badge-title {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.ceo-photo-badge .ceo-badge-sub {
  font-size: 12px;
  color: var(--gray);
}

.ceo-content {
  gap: 20px;
}

.quote-mark {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: -10px;
}

.ceo-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 400;
}

.ceo-bio {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.8;
}

.ceo-credentials {
  gap: 12px;
}

.ceo-credential {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.ceo-credential h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-main);
}

.ceo-credential p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   CUSTOMERS — clean 4-col grid
   ============================================================ */
#customers {
  padding: 100px 0;
  background: var(--white);
}

.customers-header {
  margin-bottom: 52px;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.customer-card {
  padding: 28px 22px;
  background: var(--off-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.customer-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 28px var(--gold-glow);
  transform: translateY(-5px);
}

.customer-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 160, 32, 0.1);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.customer-card:hover .customer-icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
  border-radius: 14px;
}

.customer-card h3 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.customer-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS — clean & open
   ============================================================ */
#testimonials {
  padding: 100px 0;
  background: var(--off-white);
}

.testimonials-inner {
  gap: 60px;
}

.testimonials-left h2 {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.testimonials-left p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 72px;
  color: rgba(232, 160, 32, 0.12);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 900;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 22px;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text-dark);
}

.testimonial-author-title {
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 2px;
}

.testimonial-dots button {
  background: #E0E2E6;
}

.testimonial-dots button.active {
  background: var(--gold);
}

/* ============================================================
   CTA BANNER — impactful dark section
   ============================================================ */
#cta-banner {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_bg_1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

#cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.07) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-family: var(--font-main);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.cta-actions .btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 160, 32, 0.35);
}

.cta-actions .btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 30px rgba(232, 160, 32, 0.4);
}

.cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-icon {
  background: rgba(232, 160, 32, 0.1);
  color: var(--gold);
  border-radius: 10px;
  border: 1.5px solid rgba(232, 160, 32, 0.2);
  font-size: 18px;
  transition: all 0.25s ease;
}

.contact-item:hover .contact-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  background: var(--white);
  padding: 12px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.1);
  outline: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0A0F1A;
}