:root {
  --navy-dark: #070B19;
  --navy-base: #0B132B;
  --navy-light: #1C2541;
  --navy-muted: #3A506B;

  --gold: #D4AF37;
  --gold-hover: #EBCB63;
  --gold-light: #FFF8E1;

  --gray-bg: #F8F9FA;
  --gray-light: #E2E8F0;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --white: #FFFFFF;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--gray-bg);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-logo {
  font-family: var(--font-heading);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 125px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--gold);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover:not(.nav-cta) {
  color: var(--white);
}

.nav-links a:hover:not(.nav-cta)::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

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

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-base) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.homepage-hero {
  padding: 0;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(7, 11, 25, 0.9) 0%, rgba(11, 19, 43, 0.7) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(28, 37, 65, 0.6) 0%, transparent 60%);
  z-index: 1;
}

/* Elegant geometric abstract elements */
.hero-leaf {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  animation: floatGeometric 15s ease-in-out infinite;
  border: 1px solid var(--white);
}

.hero-leaf:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
}

.hero-leaf:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -5%;
  animation-delay: 5s;
  opacity: 0.02;
}

@keyframes floatGeometric {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(30px, -40px) rotate(10deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 50px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
  }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 4.7rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.25);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

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

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  background: rgba(11, 19, 43, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  z-index: 2;
}

.hero-stat {
  padding: 1.8rem 2rem;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-stat:last-child {
  border-right: none;
}

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

.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}


/* --- ENQUIRY PORTFOLIO BADGE --- */
.portfolio-badge {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background: var(--navy-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.portfolio-badge:hover {
    transform: translateY(-5px);
    background: var(--navy-base);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.portfolio-count {
    background: var(--gold);
    color: var(--navy-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.portfolio-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 8rem 5%;
}

.page-section {
  padding-top: 11rem;
  min-height: 100vh;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 300;
}

/* ── LIGHT SECTIONS (About, Values) ── */
.about,
.mission,
.core-values,
.why-us {
  background: var(--white);
}

.about-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-img-main {
  width: 75%;
  border-radius: 12px;
  aspect-ratio: 1/1;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(11, 19, 43, 0.1);
}

.about-accent-card {
  position: absolute;
  bottom: -4rem;
  right: -2rem;
  background: rgba(11, 19, 43, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  padding: 1.8rem 2.22rem;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-accent-card:hover {
  transform: translate(-10px, -10px) rotate(-1deg);
  border-color: var(--gold);
  background: var(--navy-dark);
}

.about-accent-card .badge-icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-accent-card strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  color: var(--white);
  line-height: 1.2;
}

.about-accent-card span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gray-bg);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-base);
  transition: all 0.3s;
}

.value-chip:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

/* ── PRODUCTS ── */
.products {
  background: #f4f4f4;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1300px;
  margin: 0 auto 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(11, 19, 43, 0.12);
  border-color: var(--gold);
}

.product-img {
  height: 280px;
  background: var(--navy-dark);
  overflow: hidden;
  position: relative;
}

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

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

.product-card:nth-child(odd) .product-img {
  background: var(--navy-light);
}

.product-body {
  padding: 2rem;
}

.product-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--navy-dark);
}

.product-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- PRODUCT BUTTONS --- */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px;
  margin-top: auto;
}

.btn-details {
  background: transparent;
  color: var(--navy-dark);
  border: 1px solid var(--navy-dark);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.btn-enquiry {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-enquiry:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 19, 43, 0.2);
}


/* ── SERVICES (DARK SECTON) ── */
.services {
  background: var(--navy-base);
  color: var(--white);
}

.services .section-title {
  color: var(--white);
}

.services .section-label {
  color: var(--gold);
}

.services .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 4rem auto 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 500;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact {
  background: var(--navy-dark);
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
}

.contact .section-label {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 4rem auto 0;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}

.contact-detail p {
  font-size: 1.05rem;
  color: var(--white);
}

.contact-form {
  background: var(--navy-base);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: none;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.form-group select option {
  background: var(--navy-base);
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: #040812;
  padding: 5rem 5% 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto 4rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.soc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

.soc-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── ABOUT SNIPPET ── */
.about-snippet {
  background: var(--gray-bg);
  padding: 8rem 5%;
}

/* ── DARK VALUES GRID ── */
.dark-values {
  background: var(--navy-base);
  color: var(--white);
  padding: 8rem 5%;
}

.values-big-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 3rem auto 0;
}

.value-big-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--white);
}

.value-big-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.value-big-card .val-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-big-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.value-big-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 85px; /* offset for nav */
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 11, 25, 0.8) 0%, rgba(11, 19, 43, 0.9) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 5%;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.breadcrumb span { color: rgba(255, 255, 255, 0.3); }

/* ── MODERN MVV (Mission/Vision/Values) ── */
.mission.modern {
  background: var(--navy-dark);
  color: var(--white);
  padding: 10rem 5%;
}

.mvv-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 5rem auto 0;
}

.mvv-modern-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mvv-modern-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.mvv-modern-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-10px);
}

.mvv-modern-card:hover::before {
  height: 100%;
}

.mvv-modern-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mvv-modern-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
}

.mvv-modern-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* ── WHY CHIGURU MODERN ── */
.why-modern {
  background: var(--white);
  padding: 10rem 5%;
}

.why-modern-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.why-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.why-feature-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.why-feature-item .icon {
  color: var(--gold);
}

.why-feature-item h4 {
  font-size: 1.25rem;
  color: var(--navy-dark);
}

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

.why-map-visual {
  background: var(--navy-base);
  border-radius: 30px;
  padding: 4rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(11, 19, 43, 0.2);
}

.map-accent {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}

/* ── ACCREDITATIONS ── */
.accreditations {
  padding: 6rem 5%;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-light);
}

.accreditations-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.6;
  filter: grayscale(1);
  gap: 3rem;
  flex-wrap: wrap;
}

.accreditation-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-muted);
  letter-spacing: 1px;
}

/* ── UTILITIES ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 2rem 5%;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hamburger {
    display: flex;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

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

  .mvv-modern-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-modern-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 5rem 5%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

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

/* --- ENQUIRY PORTFOLIO BADGE --- */
.portfolio-badge {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background: var(--navy-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.portfolio-badge:hover {
    transform: translateY(-5px);
    background: var(--navy-base);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.portfolio-count {
    background: var(--gold);
    color: var(--navy-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.portfolio-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1) rotate(10deg);
}