/* ============================================================
   ROHARA HOLDINGS LLC – Main Stylesheet
   Colors: Navy #102A4C | Gold #B89A58 | White #FFFFFF
   ============================================================ */

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

:root {
  --navy:       #102A4C;
  --navy-light: #1a3d6d;
  --navy-dark:  #0b1e35;
  --gold:       #B89A58;
  --gold-light: #cdb97a;
  --gold-pale:  #f5efe0;
  --white:      #FFFFFF;
  --off-white:  #F8F8F6;
  --gray-100:   #F3F4F6;
  --gray-300:   #D1D5DB;
  --gray-500:   #6B7280;
  --gray-700:   #374151;
  --shadow-sm:  0 1px 4px rgba(16,42,76,.08);
  --shadow-md:  0 4px 20px rgba(16,42,76,.12);
  --shadow-lg:  0 12px 40px rgba(16,42,76,.18);
  --radius:     6px;
  --transition: .3s ease;
}

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

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Libre Baskerville', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
}

p { color: var(--gray-700); }

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

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

ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 48px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto 32px;
  border: none;
}

.divider-left {
  margin-left: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── Header / Navigation ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-wrap img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

/* Hide text beside logo — real logo image already contains the company name */
.logo-text {
  display: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.primary-nav a {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
  border-radius: 2px;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  left: 16px; right: 16px;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--navy);
}

.nav-cta {
  margin-left: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  padding: 20px 24px 28px;
  gap: 4px;
}

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

.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg, rgba(8,20,40,.80) 0%, rgba(11,30,56,.75) 50%, rgba(16,42,76,.70) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 82px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 15%, rgba(184,154,88,.18) 0%, transparent 45%),
    radial-gradient(circle at 8%  80%, rgba(184,154,88,.10) 0%, transparent 38%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,154,88,.15);
  border: 1px solid rgba(184,154,88,.35);
  border-radius: 40px;
  padding: 6px 18px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-badge i { font-size: .75rem; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span { color: var(--gold); }

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
}

.hero-logo-display {
  text-align: center;
  margin-bottom: 32px;
}

.hero-logo-display img {
  height: 110px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.hero-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.82);
}

.hero-feature-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Trust Bar ── */
#trust-bar {
  background: var(--navy);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.trust-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ── Services Overview (Home) ── */
#services-overview {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--gold);
  transition: color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--navy);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  line-height: 1.7;
}

.service-card .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

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

/* ── Why Choose Us ── */
#why-us {
  background: var(--white);
}

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

.why-content {}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.why-point {
  display: flex;
  gap: 18px;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-point-icon i { color: var(--gold); font-size: 1.1rem; }

.why-point-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.why-point-body p {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  line-height: 1.65;
}

/* Why Visual */
.why-visual {
  position: relative;
}

.why-map-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.why-map-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.why-map-card p {
  color: rgba(255,255,255,.7);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  margin-bottom: 32px;
}

.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.country-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 40px;
  padding: 7px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
}

.country-pill i { color: var(--gold); }

.why-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.why-stat-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.why-stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.why-stat-box .lbl {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ── Process Section ── */
#process {
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--navy);
}

.process-step h4 {
  font-size: .95rem;
  margin-bottom: 10px;
}

.process-step p {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  line-height: 1.6;
}

/* ── Testimonials / CTA Banner ── */
#cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(184,154,88,.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.cta-text p {
  color: rgba(255,255,255,.72);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  max-width: 580px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── WCU Home Grid Cards ── */
.wcu-home-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.wcu-home-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.wcu-home-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.wcu-home-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.wcu-home-card:hover::before { transform: scaleX(1); }

.wcu-home-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background .3s ease;
}

.wcu-home-icon i { color: var(--gold); font-size: 1.1rem; transition: color .3s ease; }
.wcu-home-card:hover .wcu-home-icon { background: var(--navy); }
.wcu-home-card:hover .wcu-home-icon i { color: var(--white); }

.wcu-home-card h4 {
  font-size: .9rem;
  margin-bottom: 7px;
  line-height: 1.3;
}

.wcu-home-card p {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
}

/* ── Experience Teaser responsive ── */
@media (max-width: 1024px) {
  #experience-teaser > .container > div { grid-template-columns: 1fr !important; }
  .wcu-home-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  .wcu-home-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .wcu-home-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-hero .section-label { display: block; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  position: relative;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: .65rem; }

/* ── About Page ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-visual {
  position: relative;
}

.about-img-frame {
  background: var(--navy);
  border-radius: 14px;
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
}

.about-img-frame .rh-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.about-img-frame .rh-monogram .r { color: var(--white); }
.about-img-frame .rh-monogram .h { color: var(--gold); }

.about-img-frame h3 {
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.about-img-frame p {
  color: rgba(255,255,255,.65);
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-badge-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.about-badge {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}

.about-badge .lbl {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
}

.about-intro-content .lead {
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 22px;
  line-height: 1.75;
}

.about-intro-content p {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 32px 26px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i { color: var(--gold); font-size: 1.4rem; }

.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p {
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  line-height: 1.65;
}

/* ── Services Page ── */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 40px 34px;
  display: flex;
  gap: 24px;
  transition: all var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.svc-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon-wrap i { color: var(--gold); font-size: 1.3rem; }

.svc-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.svc-body p {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.svc-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--gray-700);
}

.svc-feature i { color: var(--gold); font-size: .75rem; }

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

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.industry-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.industry-card h4 {
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info {}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.contact-info > p {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { color: var(--gold); font-size: 1rem; }

.contact-detail-body h4 {
  font-size: .88rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.contact-detail-body p,
.contact-detail-body a {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--gray-700);
}

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

/* ── Forms ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-card .form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,154,88,.12);
}

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

.form-group select { cursor: pointer; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-note {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--gray-500);
}

/* ── Quote Page ── */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.quote-sidebar {}

.quote-sidebar h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.quote-sidebar > p {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.quote-benefit i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.quote-benefit span {
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  color: var(--gray-700);
}

/* Step indicator */
.form-steps {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
}

.form-step-indicator {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.form-step-indicator::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--gray-300);
  z-index: 0;
}

.form-step-indicator:last-child::after { display: none; }

.step-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: background var(--transition);
}

.form-step-indicator.active .step-bubble,
.form-step-indicator.done .step-bubble {
  background: var(--navy);
}

.form-step-indicator.done .step-bubble { background: var(--gold); }

.step-label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 6px;
  text-align: center;
}

.form-step-indicator.active .step-label { color: var(--navy); font-weight: 700; }

/* ── Footer ── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-wrap img {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: .90;
  filter: brightness(1.05);
}

/* Hide text div beside footer logo — real logo image contains company name */
.footer-logo-wrap > div {
  display: none;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-contact-mini a:hover { color: var(--gold); }
.footer-contact-mini i { color: var(--gold); width: 16px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition), padding var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.footer-copy span { color: var(--gold); }

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

.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}

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

/* ── Toast Notification ── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i { color: var(--gold); font-size: 1.1rem; }

/* ── Back to top ── */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual       { display: none; }
  .why-grid          { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-grid  { grid-template-columns: 1fr; gap: 48px; }
  .process-steps     { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }
  .values-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-nav   { display: none; }
  .hamburger     { display: flex; }
  .nav-cta       { display: none; }

  .hero-inner    { padding: 60px 0 40px; }
  .hero-title    { font-size: 2.2rem; }
  .hero-stats    { gap: 20px; flex-wrap: wrap; }

  .services-grid        { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr; }
  .industries-grid      { grid-template-columns: repeat(2, 1fr); }

  .contact-layout   { grid-template-columns: 1fr; gap: 40px; }
  .quote-layout     { grid-template-columns: 1fr; gap: 40px; }
  .form-row         { grid-template-columns: 1fr; }
  .form-card        { padding: 32px 24px; }

  .cta-inner     { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions   { width: 100%; }

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

  .section-pad   { padding: 64px 0; }
  .section-pad-sm { padding: 40px 0; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats   { justify-content: center; }
  .form-steps   { display: none; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}



/* ── Trust Badge Strip (global reusable) ── */
.trust-badge-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,154,88,.25);
  border-radius: 40px;
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-badge i { color: var(--gold); font-size: .65rem; }

/* ── Toast improvements ── */
.toast--error {
  background: #c0392b;
}

/* ── Image Optimization — local assets ── */

/* Header logo — real PNG logo, sized for nav bar height */
/* Note: logo-wrap img and footer-logo-wrap img rules are defined in the Header/Footer sections above */

/* Founder portrait — landscape conference photo, face at ~28% from top */
/* object-position: 50% 28% keeps face centered in all crop frames */
.founder-photo-wrap img,
.ceo-portrait-card img,
.ceo-embed-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

/* Signature avatar thumbnails — tight round crop on face */
.ceo-sig-avatar img,
.ceo-embed-sig-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

/* Journey visual card photo */
.jvc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

/* CEO teaser card photo on homepage */
.ceo-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

/* Hero card logo display (decorative) */
.hero-logo-display img {
  width: auto;
  height: 48px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Comparison table logo */
.col-header-rohara img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* Story timeline logo */
.stc-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Mobile responsive tweaks for images */
@media (max-width: 768px) {
  .logo-wrap img {
    height: 52px;
  }

  .footer-logo-wrap img {
    height: 52px;
  }

  .hero-logo-display img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .logo-wrap img {
    height: 44px;
  }

  .footer-logo-wrap img {
    height: 44px;
  }
}
