/* ===================================================
   CnC Facility Management – Shared Stylesheet
   Brand: Deep Navy (#071a30) + Amber (#f7941d)
=================================================== */

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

/* ── CSS Custom Properties ── */
:root {
  --navy: #92278F;
  --navy-mid: #7a1f77;
  --navy-light: #ab3da8;
  --orange: #FFF200;
  --orange-dark: #e6d900;
  --white: #ffffff;
  --grey-light: #f4f7fb;
  --grey-mid: #e2e8f0;
  --text-main: #1e2d3d;
  --text-muted: #939598;
  --radius: 14px;
  --shadow: 0 20px 60px rgba(146, 39, 143, 0.10);
  --shadow-lg: 0 30px 90px rgba(146, 39, 143, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--grey-light);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-mid);
  border-radius: 3px;
}

/* ===================================================
   NAVIGATION
=================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(90, 18, 88, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo .logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-logo .logo-name span {
  color: var(--orange);
}

.nav-logo .logo-tag {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(255, 242, 0, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 242, 0, 0.5);
}

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

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(146, 39, 143, 0.25);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ===================================================
   SECTION LAYOUT
=================================================== */
.section {
  padding: 110px 0;
}

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

.section-label {
  display: inline-block;
  background: rgba(146, 39, 143, 0.10);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--navy);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

.title-center {
  text-align: center;
}

.title-center .section-sub {
  margin: 0 auto;
}

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

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

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(70, 10, 68, 0.95) 0%,
      rgba(90, 18, 88, 0.75) 60%,
      rgba(90, 18, 88, 0.50) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 242, 0, 0.15);
  border: 1px solid rgba(255, 242, 0, 0.40);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

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

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 26px;
  max-width: 820px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin-bottom: 46px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item .num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-item .num span {
  color: var(--orange);
}

.stat-item .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
}

@keyframes bounce {

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

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

/* ===================================================
   MARQUEE CLIENTS STRIP
=================================================== */
.clients-strip {
  background: var(--grey-light);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}

.clients-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clients-strip .strip-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 40px 0 60px;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 0;
  overflow: hidden;
  flex: 1;
}

.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
  flex-shrink: 0;
  align-items: center;
}

.marquee-content .client-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-mid);
  opacity: 0.6;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===================================================
   SERVICES GRID
=================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--grey-mid);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

.service-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.service-card-body {
  padding: 28px 32px 36px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(146, 39, 143, 0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}

.service-card-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--navy-mid);
}

/* ===================================================
   WHY US / FEATURES
=================================================== */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 20px;
}

.features-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.features-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.features-badge {
  position: absolute;
  bottom: 36px;
  left: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.features-badge .big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.features-badge .badge-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================
   TEAM CARDS
=================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--grey-mid);
  transition: border-color var(--transition);
}

.team-card:hover .team-avatar {
  border-color: var(--orange);
}

.team-card h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.team-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================================
   TESTIMONIALS
=================================================== */
.testimonials-section {
  background: var(--grey-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-mid);
  transition: transform var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-mark {
  font-size: 64px;
  line-height: 0.8;
  color: var(--navy);
  font-family: Georgia, serif;
  opacity: 0.25;
  position: absolute;
  top: 24px;
  right: 28px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.author-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* Stars */
.stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ===================================================
   CTA BAND
=================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 242, 0, 0.07);
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 242, 0, 0.04);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 18px;
}

.cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 42px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ===================================================
   CONTACT / QUOTE FORM
=================================================== */
.quote-section {
  background: var(--navy);
  padding: 110px 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.quote-info h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.quote-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(247, 148, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Form */
.quote-form {
  background: var(--white);
  padding: 44px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.quote-form h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 28px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--grey-mid);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-main);
  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(--navy);
  box-shadow: 0 0 0 4px rgba(146, 39, 143, 0.12);
}

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

/* ===================================================
   FOOTER
=================================================== */
.footer {
  background: #030d1a;
  color: rgba(255, 255, 255, 0.5);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand .logo-name span {
  color: var(--orange);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: background var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--navy);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

/* yellow is light so needs a slightly brightened tint on dark bg */
.footer .footer-col ul li a:hover {
  color: #ffe800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===================================================
   ANIMATIONS (scroll reveal)
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  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;
}

/* ===================================================
   ABOUT / SERVICES HERO
=================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
}

.page-hero-content h1 span {
  color: var(--orange);
}

.page-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 660px;
  margin: 0 auto;
}

/* ===================================================
   VALUES GRID (About)
=================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-mid);
  transition: transform var(--transition);
  border-top: 4px solid var(--orange);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===================================================
   TIMELINE
=================================================== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 56px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), transparent);
}

.timeline-item {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
  align-items: flex-start;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(146, 39, 143, 0.30);
  z-index: 1;
  position: relative;
}

.timeline-body h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-body p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ===================================================
   COMPLIANCE BOX
=================================================== */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.compliance-item {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--navy);
}

.compliance-item .check {
  font-size: 22px;
}

.compliance-item h5 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.compliance-item p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-image-wrap img {
    height: 380px;
  }

  .features-badge {
    left: 16px;
  }

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

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

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .navbar.scrolled {
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-content {
    padding: 120px 24px 60px;
  }

  .hero-stats {
    gap: 32px;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 24px;
  }

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

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

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

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

  .quote-form {
    padding: 28px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-item .num {
    font-size: 30px;
  }

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