/* ============================================================
   SPIRAL PACK — OCEAN PARTNERS WEBSITE CSS (LIGHT / COLORFUL THEME)
   Color Palette from Logo:
   - Copper/Bronze: #C17A2C
   - Green: #3E8A2E
   - Gold: #C9A227
   - Silver: #9AA3A8
   - Ocean Blue: #1B3F75
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --copper: #C17A2C;
  --copper-lt: #E09040;
  --green: #3E8A2E;
  --green-lt: #54B040;
  --gold: #C9A227;
  --gold-lt: #E6BB3A;
  --silver: #9AA3A8;
  --ocean: #1B3F75;
  --ocean-lt: #2656A8;

  /* Basic Colors */
  --primary: var(--ocean);
  --secondary: var(--copper);

  /* Light Theme Backgrounds */
  --bg-darkest: #F3F5F9;
  --bg-dark: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);

  /* Dark text for Light Theme */
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #718096;

  /* Borders */
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-glass: rgba(0, 0, 0, 0.05);

  --font: 'Outfit', system-ui, sans-serif;
  --radius: 24px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-darkest);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS (Premium Corporate Look) ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--ocean);
  color: #fff;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  /* Sleeker, sharper edges */
  border: 1px solid var(--ocean);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(27, 63, 117, 0.1);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-lt));
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 63, 117, 0.25);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: 0.6s;
  pointer-events: none;
  opacity: 0;
}

.btn-primary:hover::after {
  left: 120%;
  opacity: 1;
}

.btn-primary.btn-large {
  padding: 18px 54px;
  font-size: 1.05rem;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ocean);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(27, 63, 117, 0.04);
  color: var(--ocean-lt);
  border-color: var(--ocean-lt);
}

.play-icon {
  width: 28px;
  height: 28px;
  background: rgba(27, 63, 117, 0.08);
  color: var(--ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-ghost:hover .play-icon {
  background: var(--ocean-lt);
  color: white;
}

/* ===== SECTION HEADER SHARED ===== */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-left: 2px solid var(--copper);
  background: rgba(193, 122, 44, 0.06);
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.copper-text {
  background: linear-gradient(135deg, var(--copper), var(--copper-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  /* Rests below top bar */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-logo:hover img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-link:hover {
  color: var(--ocean);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--ocean);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(27, 63, 117, 0.2);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(27, 63, 117, 0.05);
}

.nav-cta:hover {
  background: var(--ocean-lt);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(27, 63, 117, 0.2);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ocean);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== CREATIVE HERO BLOCK ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-darkest);
  padding-top: 80px;
  /* Offset for navbar */
}

/* Base layout: 50/50 Split on desktop */
.hero-left {
  flex: 0 0 50%;
  padding: 15px 5% 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.hero-right {
  flex: 0 0 50%;
  height: 100vh;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--bg-dark);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
  filter: brightness(0.85) contrast(1.1);
}

/* Creative Corner Accents */
.hero-corner-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(27, 63, 117, 0.8), rgba(27, 63, 117, 0));
  z-index: 2;
}

.hero-copper-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 8px;
  background: var(--copper);
  z-index: 3;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-content {
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(27, 63, 117, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: #fff;
  border-left: 3px solid var(--ocean);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.hero-gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 500;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}



/* ===== SERVICES ===== */
.services {
  padding: 40px 0;
  /* Reduced padding for tighter spacing */
  background: var(--bg-dark);
}

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 63, 117, 0.15);
  box-shadow: var(--shadow-lg);
}

.card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .card-img {
  transform: scale(1.08);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.card-icon {
  position: absolute;
  bottom: 20px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
}

.card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ocean);
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-weight: 500;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--copper);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-link:hover {
  gap: 12px;
  color: var(--ocean);
}

.link-arrow {
  font-size: 1rem;
}

/* Card colored accent bar */
.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.card-accent--copper {
  background: var(--copper);
}

.card-accent--green {
  background: var(--green);
}

.card-accent--blue {
  background: var(--ocean);
}

.card-accent--gold {
  background: var(--gold);
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 40px 0;
  /* Reduced padding */
  background: var(--bg-darkest);
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(27, 63, 117, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(193, 122, 44, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

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

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  animation: floatLogo 5s ease-in-out infinite;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.about-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(27, 63, 117, 0.1);
  animation: ringPulse 4s ease-in-out infinite;
}

.about-ring--1 {
  inset: 0;
  animation-delay: 0s;
}

.about-ring--2 {
  inset: -20px;
  animation-delay: 1s;
  border-color: rgba(62, 138, 46, 0.1);
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.5;
  }
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pillar:hover {
  transform: translateX(10px);
  border-color: rgba(27, 63, 117, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pillar-icon--copper {
  background: rgba(193, 122, 44, 0.1);
  color: var(--copper);
}

.pillar-icon--green {
  background: rgba(62, 138, 46, 0.1);
  color: var(--green);
}

.pillar-icon--gold {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}

.pillar div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
}

.pillar span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== GLOBAL REACH ===== */
.global {
  padding: 40px 0;
  /* Reduced padding */
  background: #fff;
}

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

.region-card {
  padding: 36px 24px;
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--ocean);
  opacity: 0;
  transition: var(--transition);
}

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

.region-card:hover {
  border-color: var(--ocean);
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(27, 63, 117, 0.1);
  background: #fff;
}

.region-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  padding: 16px;
  background: rgba(27, 63, 117, 0.05);
  border-radius: 50%;
}

.region-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ocean);
  margin-bottom: 12px;
}

.region-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 40px 0;
  /* Reduced padding */
  background: linear-gradient(135deg, var(--ocean) 0%, #0a1931 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

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

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.cta-contact-btn {
  background: #fff;
  color: var(--ocean);
}

.cta-contact-btn:hover {
  background: var(--copper);
  color: #fff;
}

/* ===== CONTACT ===== */
.contact {
  padding: 40px 0;
  /* Reduced padding */
  background: var(--bg-darkest);
}

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

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid rgba(27, 63, 117, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  color: var(--ocean);
}

.contact-item>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ocean);
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 63, 117, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.form-success {
  display: none;
  text-align: center;
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px;
  background: rgba(62, 138, 46, 0.1);
  border-radius: 8px;
}

.form-success.visible {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ocean);
  color: #fff;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(27, 63, 117, 0.05);
  border: 1px solid rgba(27, 63, 117, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(27, 63, 117, 0.2);
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
  background: #15325c;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: #fff;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE GLOBALS ===== */
@media (max-width: 1024px) {

  /* Fix Split Hero for tablets */
  .hero-left {
    flex: 0 0 60%;
    padding-left: 5%;
  }

  .hero-right {
    flex: 0 0 40%;
  }

  .hero-image-wrapper {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }

  /* Other layout grids */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    display: none;
  }
}

@media (max-width: 768px) {

  /* Flatten Split Hero for mobile */
  .hero {
    flex-direction: column;
    padding-top: 100px;
    height: auto;
    min-height: unset;
  }

  .hero-left {
    flex: 1;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    border-top: none;
    padding-top: 20px;
  }

  .stat {
    text-align: center;
  }

  .hero-right {
    position: relative;
    width: 100%;
    height: 350px;
    flex: none;
    margin-top: 40px;
  }

  .hero-image-wrapper {
    clip-path: none;
    border-radius: 20px 20px 0 0;
  }

  .top-bar {
    display: none;
    /* Hide top bar on mobile for space */
  }

  .navbar {
    top: 0;
    position: fixed;
    padding: 14px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-burger {
    display: flex;
  }

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

  .regions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .contact-form {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .regions-grid {
    grid-template-columns: 1fr;
  }

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