/* ============================================================
   DZR RESOURCES ENTERPRISE — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:    #0E1C2F;
  --navy2:   #162336;
  --gold:    #C8892A;
  --gold2:   #E0A84A;
  --cream:   #F5F0E8;
  --warm-white: #FDFAF5;
  --text:    #2C2C2C;
  --muted:   #6B7280;
  --border:  #E3DDD4;
  --section-gap: 100px;
  --radius:  4px;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(14,28,47,0.12);
}

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

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

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}

.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 24px;
}

.section-title.light { color: #fff; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-subtitle.light { color: rgba(255,255,255,0.7); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-gap) 0; }
.section-dark { background: var(--navy); }
.section-cream { background: var(--cream); }

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

.credential-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 20px;
    background:#faf8f4;
    border-left:4px solid var(--gold);
    border-radius:4px;
}

.credential-icon{
    width:50px;
    height:50px;
    background:var(--cream);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:20px;
    flex-shrink:0;
}

.credential-item strong{
    display:block;
    color:var(--navy);
    margin-bottom:4px;
}

.credential-item span{
    color:var(--muted);
    font-size:14px;
}

/* ── Divider ─────────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,137,42,0.35);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

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

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--navy2);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}

.topbar-contact a:hover { color: var(--gold); }

.topbar-contact a svg { opacity: 0.7; }

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color var(--transition);
}

.topbar-social a:hover { color: var(--gold); }

/* Main Nav */
.navbar {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 55px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
}

.nav-logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 28px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: var(--gold); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

/* Dropdown */
.nav-item:hover .dropdown { display: block; }

.dropdown-toggle {            /* desktop default */
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-item { display: flex; flex-wrap: wrap; align-items: stretch; }
  .nav-link { flex: 1 1 auto; }
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
  }
  .nav-item.open .dropdown-toggle { transform: rotate(180deg); }
  .dropdown { flex-basis: 100%; }
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
  animation: dropIn 0.2s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: var(--cream);
  color: var(--gold);
  padding-left: 26px;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

/* Placeholder backgrounds (replace with real images) */
.hero-slide:nth-child(1) {
  background: linear-gradient(135deg, #0D2137 0%, #1B3A5C 50%, #0E1C2F 100%);
}

.hero-slide:nth-child(2) {
  background: linear-gradient(135deg, #1B2D1A 0%, #2A4A28 50%, #0E1C2F 100%);
}

.hero-slide:nth-child(3) {
  background: linear-gradient(135deg, #1C1810 0%, #3A2E18 50%, #0E1C2F 100%);
}

/* If using real images:
.hero-slide {
  background-size: cover;
  background-position: center;
}
*/

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,35,0.88) 0%,
    rgba(10,20,35,0.6) 60%,
    rgba(10,20,35,0.3) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 20px 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slide indicators */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  width: 44px;
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

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

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT STRIP
   ═══════════════════════════════════════════════════════════════ */
.about-strip {
  background: var(--gold);
  padding: 28px 0;
}

.about-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  max-width: 680px;
}

.about-strip a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: var(--transition);
}

.about-strip a:hover {
  border-color: #fff;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  background: linear-gradient(145deg, #1B3A5C, #0E1C2F);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  overflow: hidden;
}

/* Replace with: <img src="assets/img/about.jpg" alt=""> */
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.about-img-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px;
}

.about-content { padding-right: 20px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 15px;
}

.about-feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-feature-text span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.services-header .section-subtitle { margin: 0 auto; }

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--navy2);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  opacity: 0.35;
}

/* Placeholder backgrounds — replace with real images */
.service-card:nth-child(1) .service-card-bg { background-color: #1a3a6e; }
.service-card:nth-child(2) .service-card-bg { background-color: #2a4a2a; }
.service-card:nth-child(3) .service-card-bg { background-color: #4a3020; }
.service-card:nth-child(4) .service-card-bg { background-color: #1a3a3a; }

.service-card:hover .service-card-bg {
  transform: scale(1.06);
  opacity: 0.5;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,28,47,0.95) 30%, rgba(14,28,47,0.3) 100%);
}

.service-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px;
  transition: var(--transition);
}

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

.service-card-body h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.service-card-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-card:hover .service-card-body p {
  max-height: 100px;
  opacity: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-card:hover .service-card-link { gap: 12px; }

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover { background: rgba(255,255,255,0.07); }
.why-card:hover::before { transform: scaleX(1); }

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(200,137,42,0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.why-card:hover .why-number { color: rgba(200,137,42,0.3); }

.why-card h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 14px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   VISION & MISSION
   ═══════════════════════════════════════════════════════════════ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.vm-card {
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.vm-card:first-child { background: var(--navy); }
.vm-card:last-child  { background: var(--navy2); }

.vm-card::after {
  content: attr(data-letter);
  position: absolute;
  top: -20px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.vm-card h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.vm-card .gold-rule { margin-bottom: 24px; }

.vm-item {
  margin-bottom: 28px;
}

.vm-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vm-item h4::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  display: block;
}

.vm-item p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14,28,47,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14,28,47,0.14);
}

.team-photo {
  width: 100%;
  height: 460px;
  background: linear-gradient(145deg, var(--navy) 0%, #253A50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(200,137,42,0.2);
  border: 3px solid rgba(200,137,42,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 36px;
}

.team-body {
  padding: 28px;
  border-top: 3px solid var(--gold);
}

.team-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

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

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-white {
  background: #fff;
  color: var(--gold);
}

.btn-white:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: #080F1A;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .nav-logo-name {
  font-size: 26px;
  margin-bottom: 4px;
}

.footer-brand .nav-logo-tag {
  display: block;
  margin-bottom: 20px;
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(200,137,42,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-info strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

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

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.02) 0,
    rgba(255,255,255,0.02) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 24px 24px;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.breadcrumb span { color: rgba(255,255,255,0.25); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-stats-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .topbar-contact span:first-child { display: none; }
  
    .nav-logo-img {
    height: 42px;
  }

  .nav-logo-name {
    font-size: 18px;
  }

  .nav-logo-tag {
    font-size: 7px;
    letter-spacing: 1px;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 0 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    gap: 0;
    z-index: 999;
  }

  .nav-menu.open { display: flex; }

  .nav-link { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link::after { display: none; }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    background: rgba(255,255,255,0.05);
  }

  .nav-item.open .dropdown { display: block; }
  .dropdown a { padding-left: 36px; color: rgba(255,255,255,0.7); background: transparent; }

  .nav-toggle { display: flex; }

  .hero h1 { font-size: 2.4rem; }
  .hero-stats-inner { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { bottom: -16px; right: 16px; width: 130px; height: 130px; }
  .about-content { padding-right: 0; }

  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { aspect-ratio: 4/3; }
  .service-card-body p { max-height: 100px; opacity: 1; }

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

  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 44px 32px; }

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

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .about-strip-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
}


/* ============================================================
   MOBILE PATCH — fixes squeezed columns / horizontal overflow
   Added by ChatGPT
   ============================================================ */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
}

@media (max-width: 900px) {
  /* Force all desktop inline grids to become single column on mobile */
  .section [style*="grid-template-columns"],
  .page-hero [style*="grid-template-columns"],
  .container [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .section [style*="display:grid"],
  .page-hero [style*="display:grid"],
  .container [style*="display:grid"] {
    display: grid !important;
  }

  /* Remove desktop RTL trick used for alternating service rows */
  [style*="direction:rtl"],
  [style*="direction:ltr"] {
    direction: ltr !important;
  }

  /* General grids */
  .services-grid,
  .why-grid,
  .vm-grid,
  .team-grid,
  .footer-grid,
  .about-grid,
  .hero-stats-inner,
  .about-features {
    grid-template-columns: 1fr !important;
  }

  /* Service/expertise/detail pages */
  .section,
  .section-cream,
  .section-dark {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .section-title,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1.1 !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section-subtitle,
  p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* Fix cards from becoming very narrow columns */
  .service-card,
  .why-card,
  .vm-card,
  .team-card {
    min-width: 0 !important;
    width: 100% !important;
  }

  .service-card {
    aspect-ratio: auto !important;
    min-height: 360px;
  }

  .service-card-body {
    padding: 32px 24px !important;
  }

  .service-card-body h3 {
    font-size: 1.45rem !important;
    letter-spacing: 1px !important;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .service-card-body p {
    max-height: none !important;
    opacity: 1 !important;
  }

  /* Inline card sections in About / Expertise */
  .container > div[style*="display:grid"] > div,
  .section > div[style*="display:grid"] > div {
    min-width: 0 !important;
  }

  /* Contact page form */
  form [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  form input,
  form select,
  form textarea,
  input,
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px !important;
  }

  /* Prevent contact columns from splitting too narrow */
  .contact-section .container > div,
  .contact-section [style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Large inline padding boxes */
  [style*="padding:44px"],
  [style*="padding: 44px"] {
    padding: 28px !important;
  }

  [style*="gap:72px"],
  [style*="gap: 72px"],
  [style*="gap:80px"],
  [style*="gap: 80px"] {
    gap: 36px !important;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero {
    min-height: auto !important;
    height: auto !important;
  }

  .hero-content {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  .hero h1 {
    font-size: 2.25rem !important;
    line-height: 1.08 !important;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

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

  .service-card {
    min-height: 420px;
  }

  .service-card-body {
    padding: 36px 24px !important;
  }

  .service-card-icon,
  .vm-icon {
    width: 72px !important;
    height: 72px !important;
    font-size: 26px !important;
  }

  .vm-card,
  .why-card,
  .team-card {
    padding: 30px 24px !important;
  }

  /* Fix very tall/narrow text in icon cards */
  .why-card h3,
  .vm-card h3,
  .team-card h3,
  .service-card h3 {
    font-size: 1.35rem !important;
    letter-spacing: 1px !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .why-card p,
  .vm-card p,
  .team-card p,
  .service-card p {
    font-size: 14.5px !important;
    line-height: 1.75 !important;
  }

  /* Forms should not be split into two tiny columns */
  form > div[style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* ============================================================
   FINAL MOBILE PATCH — Burger menu + homepage stat overlay
   ============================================================ */

/* Make sure mobile menu appears above all homepage overlays/sliders */
@media (max-width: 768px) {
  .navbar {
    z-index: 9999 !important;
  }
  

  .nav-menu {
    top: 80px !important;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 9998 !important;
  }

  .nav-menu.open,
  .nav-menu.active,
  .nav-menu.show {
    display: flex !important;
  }

  .nav-toggle,
  .mobile-toggle,
  .menu-toggle,
  .hamburger {
    z-index: 10000 !important;
    position: relative;
    cursor: pointer;
  }

  /* Fix hero stats overlay on mobile */
  .hero {
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    padding-bottom: 0 !important;
  }

  .hero-content {
    position: relative;
    padding-top: 96px !important;
    padding-bottom: 48px !important;
  }

  .hero-stats {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 0 !important;
    background: var(--navy2) !important;
    backdrop-filter: none !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    z-index: 2 !important;
  }

  .hero-stats-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-stat {
    padding: 22px 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  }

  .hero-stat:last-child {
    border-bottom: 0 !important;
  }

  .hero-stat-num {
    font-size: 2rem !important;
  }

  .hero-stat-label {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    top: 72px !important;
    max-height: calc(100vh - 72px);
  }

  .hero-content {
    padding-top: 82px !important;
  }

  .hero-stats-inner {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   FINAL STAT SPACING PATCH — fixes 35+ text overlapping label
   ============================================================ */

@media (max-width: 768px) {
  .hero-stat {
    min-height: 132px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 28px 20px !important;
  }

  .hero-stat-num {
    display: block !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 2.15rem !important;
  }

  .hero-stat-label {
    display: block !important;
    position: static !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    max-width: 260px !important;
  }
}

@media (max-width: 480px) {
  .hero-stat {
    min-height: 140px !important;
    gap: 14px !important;
    padding: 30px 18px !important;
  }

  .hero-stat-num {
    font-size: 2.25rem !important;
  }

  .hero-stat-label {
    font-size: 11px !important;
    max-width: 240px !important;
  }
}


/* ============================================================
   FINAL PRODUCTION PATCH — Mobile Stats Stack + Menu Stability
   ============================================================ */

/* Prevent hidden horizontal scroll from desktop layouts */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Mobile menu always above hero/carousels/overlays */
@media (max-width: 768px) {
  .navbar,
  .site-header,
  header {
    z-index: 10000 !important;
  }

  .nav-menu {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
  }

  .nav-menu.open,
  .nav-menu.active,
  .nav-menu.show {
    display: flex !important;
  }

  .nav-toggle,
  .menu-toggle,
  .mobile-toggle,
  .hamburger {
    position: relative !important;
    z-index: 10001 !important;
    cursor: pointer !important;
  }

  /* Turn homepage stats carousel into readable stacked stats */
  .hero-stats {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    background: var(--navy2) !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    backdrop-filter: none !important;
    overflow: visible !important;
  }

  .hero-stats-inner,
  .hero-stats-track,
  .hero-stats .swiper-wrapper,
  .hero-stats .slick-track {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-stat,
  .hero-stats .swiper-slide,
  .hero-stats .slick-slide {
    display: flex !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 122px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 28px 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .hero-stat:last-child {
    border-bottom: 0 !important;
  }

  .hero-stat-num {
    display: block !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 2.25rem !important;
    color: var(--gold2) !important;
    text-align: center !important;
  }

  .hero-stat-label {
    display: block !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45 !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    max-width: 280px !important;
    color: rgba(255,255,255,0.58) !important;
  }

  /* Hide slider dots/pagination only for the stats area */
  .hero-stats .swiper-pagination,
  .hero-stats .slick-dots,
  .hero-stats-dots,
  .hero-stat-dots,
  .stats-dots,
  .stat-dots {
    display: none !important;
  }

  /* Some builds put dots outside but immediately after stats */
  .hero-stats + .swiper-pagination,
  .hero-stats + .slick-dots,
  .hero-stats + .hero-stats-dots,
  .hero-stats + .stats-dots {
    display: none !important;
  }

  /* Hero gets natural height on mobile */
  .hero {
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    padding-bottom: 0 !important;
  }

  .hero-content {
    padding-top: 90px !important;
    padding-bottom: 52px !important;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    top: 72px !important;
    max-height: calc(100vh - 72px) !important;
  }

  .hero-stat {
    min-height: 128px !important;
    padding: 30px 18px !important;
  }

  .hero-stat-num {
    font-size: 2.35rem !important;
  }

  .hero-stat-label {
    font-size: 11px !important;
    max-width: 250px !important;
  }
}


/* ============================================================
   HARD FIX — Mobile hero stats must be normal stacked content
   This overrides all previous carousel/overlay patches.
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .hero-content {
    order: 1 !important;
    width: 100% !important;
  }

  .hero-stats {
    order: 2 !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    clear: both !important;
    z-index: 1 !important;
    background: var(--navy2) !important;
    backdrop-filter: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-stats-inner {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-stat {
    position: static !important;
    display: flex !important;
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 128px !important;
    min-height: 128px !important;
    max-height: 128px !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    padding: 24px 18px !important;
    margin: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.13) !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .hero-stat:last-child {
    border-bottom: 0 !important;
  }

  .hero-stat-num {
    display: block !important;
    font-size: 2.2rem !important;
    line-height: 1 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    position: static !important;
  }

  .hero-stat-label {
    display: block !important;
    position: static !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 2px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 300px !important;
    white-space: normal !important;
    text-align: center !important;
    transform: none !important;
  }

  /* The original design has hero dots; hide them on mobile so they do not appear between stats */
  .hero-dots,
  .hero-dot,
  .hero-stats .hero-dots,
  .hero-stats + .hero-dots,
  .swiper-pagination,
  .slick-dots {
    display: none !important;
  }

  /* Prevent next orange CTA from covering last stat */
  .about-strip,
  .cta,
  section.after-hero {
    position: relative !important;
    z-index: 0 !important;
    margin-top: 0 !important;
  }
}

.team-card-body {
  padding: 28px;
}