/* ================================================================
   MARK INTERNATIONAL — style.css
   Professional Fuel & Lubricants Supply Website
================================================================ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e45;
  --navy-light: #1e3a5f;
  --gold:       #f5a623;
  --gold-dark:  #d4871a;
  --gold-light: #ffd166;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --gray-100:   #f1f3f5;
  --gray-200:   #e9ecef;
  --gray-400:   #adb5bd;
  --gray-600:   #6c757d;
  --gray-800:   #343a40;
  --green-wa:   #25d366;
  --green-wa-d: #128c7e;

  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.24);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.highlight {
  color: var(--gold);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ── Scroll Reveal Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
  background: var(--green-wa-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ================================================================
   NAVIGATION
================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-link.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.blob-1 {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -150px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-2 {
  width: 300px; height: 300px;
  background: var(--gold-light);
  bottom: 50px; left: -80px;
  animation: blobFloat 6s ease-in-out infinite reverse;
}

.blob-3 {
  width: 200px; height: 200px;
  background: #4a90d9;
  top: 50%; left: 40%;
  animation: blobFloat 10s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Floating fuel drops */
.fuel-drop {
  position: absolute;
  color: rgba(245,166,35,0.2);
  font-size: 2rem;
  pointer-events: none;
  animation: dropFloat linear infinite;
}

.drop-1 { left: 10%; top: 20%; font-size: 1.5rem; animation-duration: 6s; animation-delay: 0s; }
.drop-2 { left: 85%; top: 30%; font-size: 2.5rem; animation-duration: 8s; animation-delay: 2s; }
.drop-3 { left: 5%;  bottom: 30%; font-size: 1.2rem; animation-duration: 7s; animation-delay: 1s; }
.drop-4 { right: 10%; bottom: 20%; font-size: 3rem; animation-duration: 9s; animation-delay: 3s; }

@keyframes dropFloat {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  50%  { transform: translateY(-20px) rotate(10deg); opacity: 0.4; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Visual Cards */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.hero-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.4);
}

.hero-card.hc-accent {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.25);
  margin-top: 24px;
}

.hc-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.hero-card h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  margin-top: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ================================================================
   ABOUT
================================================================ */
.about {
  background: var(--white);
}

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  margin-bottom: 24px;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

.about-fact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
}

.fact-card i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.fact-card strong { display: block; font-weight: 700; color: var(--navy); }
.fact-card span   { font-size: 0.85rem; color: var(--gray-600); }

.about-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.pillar i { color: var(--gold); font-size: 1rem; }

/* ================================================================
   SERVICES
================================================================ */
.services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245,166,35,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245,166,35,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.services .section-title { color: var(--white); }
.services .section-label { background: rgba(245,166,35,0.15); }
.services .section-sub   { color: rgba(255,255,255,0.55); }

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.sc-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.sc-yellow { background: rgba(245,166,35,0.2); color: var(--gold); }
.sc-blue   { background: rgba(30, 58, 95, 0.6); color: #64b5f6; }

.service-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sc-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
}

.sc-features i { color: var(--gold); font-size: 0.7rem; }

/* ================================================================
   BENEFITS
================================================================ */
.benefits {
  background: var(--off-white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

/* Orbit visual */
.benefit-visual-inner {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.bv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gold);
  font-size: 2rem;
  z-index: 2;
  box-shadow: 0 0 40px rgba(245,166,35,0.3);
}

.bv-center span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.3;
}

.bv-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(245,166,35,0.25);
  animation: orbitSpin 20s linear infinite;
}

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

.bv-dot {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateX(148px)
    rotate(calc(-1 * var(--angle)));
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.benefit-item:hover {
  border-color: rgba(245,166,35,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.bi-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bi-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.bi-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ================================================================
   PARTNERS
================================================================ */
.partners {
  background: var(--navy);
  overflow: hidden;
}

.partners .section-title { color: var(--white); }
.partners .section-label { background: rgba(245,166,35,0.15); }
.partners .section-sub   { color: rgba(255,255,255,0.55); }

/* Ticker / Carousel */
.partners-ticker-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-ticker {
  display: flex;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

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

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track {
  display: flex;
  gap: 16px;
  padding: 8px 8px;
}

.partner-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
}

.partner-chip i { color: var(--gold); }

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.partner-card:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
}

.partner-card i {
  font-size: 1.6rem;
  color: var(--gold);
}

.partner-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}

/* ================================================================
   CEO / FOUNDER
================================================================ */
.ceo {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.ceo-bg-decor {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(245,166,35,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ceo-img-wrap {
  position: relative;
  text-align: center;
}

.ceo-img-placeholder {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 12px rgba(245,166,35,0.15), 0 0 0 24px rgba(245,166,35,0.06);
}

.ceo-name-badge {
  display: inline-block;
  margin-top: 24px;
  text-align: center;
}

.ceo-name-badge strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.ceo-name-badge span {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ceo-quote {
  background: var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px;
  margin: 24px 0 32px;
  position: relative;
}

.quote-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.7;
}

.ceo-quote p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.8;
  font-style: italic;
}

.ceo-quote footer {
  margin-top: 16px;
  font-weight: 700;
  font-style: normal;
  color: var(--navy);
  font-size: 0.9rem;
}

.ceo-achievements {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 16px;
}

.achievement i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.achievement strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.achievement span   { font-size: 0.84rem; color: var(--gray-600); }

/* ================================================================
   CONTACT
================================================================ */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.ci-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cc-phone .cc-icon  { background: rgba(13,27,42,0.08); color: var(--navy); }
.cc-wa    .cc-icon  { background: rgba(37,211,102,0.12); color: var(--green-wa-d); }
.cc-email .cc-icon  { background: rgba(245,166,35,0.12); color: var(--gold-dark); }

.cc-body { flex: 1; }
.cc-label { display: block; font-size: 0.78rem; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.cc-value { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }

.cc-arrow { color: var(--gray-400); transition: all var(--transition); }
.contact-card:hover .cc-arrow { color: var(--gold); transform: translateX(4px); }

.contact-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 8px;
  color: var(--white);
}

.contact-hours i { font-size: 1.4rem; color: var(--gold); }
.contact-hours strong { display: block; font-size: 0.95rem; }
.contact-hours span   { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success i {
  font-size: 3.5rem;
  color: var(--green-wa);
  margin-bottom: 16px;
  display: block;
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--navy);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo i { color: var(--gold); font-size: 1.4rem; }

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.footer-services i { color: var(--gold); font-size: 0.7rem; }

.fc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.fc-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.fc-item a,
.fc-item span {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.fc-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-badges {
  display: flex;
  gap: 16px;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

.footer-badges i { color: var(--gold); }

/* ================================================================
   FLOATING BUTTONS
================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: var(--green-wa-d);
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green-wa);
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 38px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.1);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
================================================================ */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual        { max-width: 480px; margin: 0 auto; }
  .about-grid         { grid-template-columns: 1fr; gap: 48px; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-layout    { grid-template-columns: 1fr; gap: 48px; }
  .benefit-visual-inner { display: none; }
  .partners-grid      { grid-template-columns: repeat(4, 1fr); }
  .ceo-grid           { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .ceo-visual         { order: -1; }
  .ceo-quote          { text-align: left; }
  .contact-grid       { grid-template-columns: 1fr; gap: 40px; }
  .footer-top-inner   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 768px)
================================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 24px;
    transition: right var(--transition-slow);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-link { padding: 14px 20px; font-size: 1rem; }
  .nav-link.nav-cta { margin-top: 12px; text-align: center; }

  /* Hero */
  .hero-inner       { text-align: center; }
  .hero-sub         { margin: 0 auto 36px; }
  .hero-btns        { justify-content: center; }
  .hero-stats       { justify-content: center; }
  .hero-visual      { grid-template-columns: 1fr 1fr; }
  .hero-card.hc-accent { margin-top: 0; }

  /* Services */
  .services-grid    { grid-template-columns: 1fr; }

  /* Partners */
  .partners-grid    { grid-template-columns: repeat(2, 1fr); }

  /* Form */
  .form-row         { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  /* Footer */
  .footer-top-inner       { grid-template-columns: 1fr; }
  .footer-bottom-inner    { flex-direction: column; text-align: center; }

  /* About pillars */
  .about-pillars { grid-template-columns: 1fr; }

  /* CEO */
  .ceo-achievements { align-items: flex-start; text-align: left; }
}

@media (max-width: 480px) {
  .hero-visual { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; align-items: center; }
  .btn         { width: 100%; justify-content: center; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats  { gap: 16px; }
}
