/* =========================================================
   National Bulk Carriers — Professional Energy Co. Stylesheet
   ========================================================= */

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

/* --- Variables --- */
:root {
  --navy:        #081829;
  --navy-mid:    #0f2845;
  --navy-light:  #1a3d6b;
  --gold:        #c8a951;
  --gold-light:  #dbbe75;
  --white:       #ffffff;
  --off-white:   #f9f8f6;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --text:        #111827;
  --font:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius:      6px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12), 0 24px 64px rgba(0,0,0,0.08);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 40px; width: 40px;
  border-radius: 5px;
  object-fit: cover;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text .brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.nav-logo-text .brand-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.navbar.scrolled .brand-name { color: var(--navy); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.navbar.scrolled .nav-link { color: var(--gray-500); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }
.navbar.scrolled .nav-link.active::after { background: var(--navy); }
.nav-cta-btn {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta-btn::after { display: none; }
.nav-cta-btn:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,169,81,0.35);
}
.navbar.scrolled .nav-cta-btn { color: var(--navy); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO — PHOTO BACKGROUND
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 8s ease;
}
.hero:hover .hero-bg img { transform: scale(1.04); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8,24,41,0.92) 0%,
    rgba(8,24,41,0.55) 45%,
    rgba(8,24,41,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,81,0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg img {
  object-position: center 55%;
}
.page-hero .hero-content {
  padding-bottom: 4rem;
}
.page-hero .hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  max-width: 680px;
}

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.dark { color: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
}
.section-title.light { color: var(--white); }
.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 580px;
  margin-top: 1rem;
}
.section-body.light { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.text-center .section-body { margin: 1rem auto 0; }

/* =========================================================
   PILLAR CARDS
   ========================================================= */
.pillars-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
/* Always-visible gold top accent bar */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(200,169,81,0.25);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.pillar-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(8,24,41,0.2);
}
.pillar-icon-wrap svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.pillar-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.pillar-desc {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-500);
}

/* =========================================================
   SPLIT SECTION
   ========================================================= */
.split-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.split-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(8,24,41,0.18), 0 8px 24px rgba(8,24,41,0.12);
}
.split-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.split-photo:hover img { transform: scale(1.04); }
.split-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.65rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =========================================================
   STATS SECTION
   ========================================================= */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8a951' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   FULL-WIDTH IMAGE BANNER
   ========================================================= */
.image-banner {
  position: relative;
  height: 56vh;
  min-height: 360px;
  overflow: hidden;
}
.image-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.image-banner:hover img { transform: scale(1.04); }
.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,24,41,0.8) 0%, rgba(8,24,41,0.2) 60%);
  display: flex;
  align-items: center;
}
.image-banner-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}
.image-banner-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.2;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.image-banner-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* =========================================================
   DARK STATEMENT SECTION
   ========================================================= */
.statement-section {
  background: var(--navy-mid);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: '';
  position: absolute;
  right: -10%; top: -50%;
  width: 55%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.06) 0%, transparent 70%);
}
.statement-quote {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 840px;
  position: relative;
  z-index: 1;
}
.statement-quote em {
  font-style: normal;
  color: var(--gold);
}
.statement-meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.statement-meta-line {
  width: 32px; height: 1.5px;
  background: var(--gold);
}
.statement-meta-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: var(--off-white);
  padding: 6rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.cta-text p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 420px;
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-navy svg { width: 16px; height: 16px; }

/* =========================================================
   SERVICES PAGE — NUMBERED LIST
   ========================================================= */
.service-list-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.service-list-item:first-child { padding-top: 0; }
.service-list-item:last-child { border-bottom: none; }
.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.35rem;
}
.service-body h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.service-body p {
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-500);
  max-width: 660px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.why-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(200,169,81,0.3);
}
.why-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
}
.why-item p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-700);
  line-height: 1.65;
}
.why-item strong { color: var(--text); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.about-sticky { position: sticky; top: 100px; }
.about-content p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}
.about-content p:last-child { margin-bottom: 0; }
.pullquote {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.5;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 4rem;
}
.value-col {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gray-200);
  background: var(--white);
  transition: background var(--transition);
}
.value-col:last-child { border-right: none; }
.value-col:hover { background: var(--off-white); }
.value-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.value-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-500);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.contact-info-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-info-desc {
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.contact-feature-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.contact-feature-icon svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; }
.contact-feature strong {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.contact-feature span {
  font-size: 0.825rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(8,24,41,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c0bdb8;
  font-weight: 300;
}
.form-group textarea { resize: none; min-height: 130px; }
.form-submit { margin-top: 1.75rem; }
.btn-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.form-note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  font-weight: 300;
}
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--gray-500); font-size: 0.95rem; font-weight: 300; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 38px; height: 38px;
  border-radius: 5px;
  object-fit: cover;
}
.footer-brand-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-photo { aspect-ratio: 16/9; }
  .about-columns { grid-template-columns: 1fr; gap: 3rem; }
  .about-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .value-col { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 1.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 0.9rem 2.5rem; color: var(--gray-500) !important; font-size: 0.9rem; }
  .nav-link::after { display: none; }
  .nav-cta-btn { margin: 0.5rem 2.5rem 0; text-align: center; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .container { padding: 0 1.5rem; }
  .contact-form { padding: 2rem 1.5rem; }
}
