/* ============================================================
   N. Chalise & Associates — Main Stylesheet
   Design: Luxury Corporate · Deep Navy + Gold · Refined
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2e44;
  --navy-light: #243b55;
  --gold:       #b8966a;
  --gold-light: #d4b483;
  --gold-pale:  #f5ead8;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --gray-100:   #f4f4f6;
  --gray-200:   #e8e8ee;
  --gray-400:   #9a9ab0;
  --gray-600:   #5a5a72;
  --gray-800:   #2a2a3a;
  --red:        #c0392b;
  --green:      #27ae60;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(13,27,42,.08);
  --shadow-md:  0 8px 32px rgba(13,27,42,.12);
  --shadow-lg:  0 20px 60px rgba(13,27,42,.18);
  --shadow-xl:  0 32px 80px rgba(13,27,42,.24);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);

  --header-h:   88px;
  --topbar-h:   40px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

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

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

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

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,106,.35);
}

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

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

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

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar a {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover { color: var(--gold); }
.top-bar i { font-size: .75rem; }
.top-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 600 !important;
}

/* ── Header ──────────────────────────────────────────────── */
.main-header {
  height: var(--header-h);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.main-header.scrolled {
  box-shadow: var(--shadow-md);
}
.main-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 60%);
  opacity: .3;
}
.logo-icon span {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
  position: relative;
}
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.logo-tagline {
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Main Nav */
.main-nav { margin-left: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--gold);
  background: var(--gold-pale);
}
.main-nav > ul > li > a i { font-size: .6rem; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
  padding: 8px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: .85rem;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--gold-pale); color: var(--navy); }
.dropdown li a i { width: 18px; color: var(--gold); font-size: .85rem; }

.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: .85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 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); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,.5);
  z-index: 850;
}

/* ── Page Banner ─────────────────────────────────────────── */
.page-banner {
  background: var(--navy);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid) 100%);
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(184,150,106,.15);
}
.page-banner .container { position: relative; }
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem,4vw,3rem);
  margin-bottom: 12px;
}
.page-banner p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 500px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .8rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.5); }
.breadcrumb i { color: rgba(255,255,255,.4); font-size: .65rem; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-h) - var(--topbar-h));
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,150,106,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,46,68,.8) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.012) 40px,
    rgba(255,255,255,.012) 41px
  );
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(184,150,106,.4);
  border-radius: 100px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag i { font-size: .7rem; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem,4.5vw,3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { 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,.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(184,150,106,.15), transparent);
  pointer-events: none;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
}
.hero-card-title { color: var(--white); font-size: 1rem; font-weight: 600; }
.hero-card-sub { color: rgba(255,255,255,.5); font-size: .75rem; }
.hero-service-list { display: flex; flex-direction: column; gap: 10px; }
.hero-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.07);
}
.hero-service-name { color: rgba(255,255,255,.8); font-size: .85rem; }
.hero-service-tag {
  font-size: .7rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(184,150,106,.2);
  color: var(--gold);
  font-weight: 600;
}
.hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .9rem;
}
.hero-badge-text { font-size: .75rem; color: var(--gray-600); }
.hero-badge-text strong { display: block; color: var(--navy); font-size: .9rem; }

/* ── Services Grid ───────────────────────────────────────── */
.services-section { padding: 100px 0; background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  group: true;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-section { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.3);
  font-size: 4rem;
}
.why-img-placeholder p {
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-display);
}
.why-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.why-badge-lbl { font-size: .75rem; color: var(--navy); font-weight: 600; margin-top: 4px; }

.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-feature:hover { background: var(--cream); border-color: var(--gray-200); }
.why-feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.why-feature h4 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.why-feature p { color: var(--gray-600); font-size: .88rem; }

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-lbl {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Team Grid ───────────────────────────────────────────── */
.team-section { padding: 100px 0; background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3.5rem;
  font-family: var(--font-display);
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(255,255,255,.3);
}
.team-info { padding: 20px; }
.team-info h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.team-designation { color: var(--gold); font-size: .8rem; font-weight: 600; margin-bottom: 6px; }
.team-qualification { color: var(--gray-400); font-size: .78rem; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.team-social a { width: 32px; height: 32px; border: 1px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: .75rem; transition: var(--transition); }
.team-social a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { padding: 100px 0; }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold-pale);
  line-height: .6;
  position: absolute;
  top: 20px;
  right: 24px;
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: .85rem; letter-spacing: 2px; }
.testimonial-text { color: var(--gray-600); font-size: .92rem; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--navy); font-size: .9rem; }
.testimonial-co { color: var(--gray-400); font-size: .78rem; }

/* ── Blog Section ─────────────────────────────────────────── */
.blog-section { padding: 100px 0; background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-body { padding: 24px; }
.blog-meta { font-size: .75rem; color: var(--gray-400); margin-bottom: 12px; display: flex; gap: 14px; }
.blog-meta i { color: var(--gold); }
.blog-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a { transition: var(--transition); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--gray-600); font-size: .88rem; line-height: 1.7; margin-bottom: 16px; }
.read-more { color: var(--gold); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.read-more:hover { gap: 10px; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(184,150,106,.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.contact-info-card .icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-card h4 { color: var(--navy); font-size: .9rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--gray-600); font-size: .88rem; }
.contact-info-card a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray-600); margin-bottom: 32px; font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--gray-800); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,106,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message { padding: 12px 16px; border-radius: var(--radius-sm); font-size: .9rem; margin-top: 8px; display: none; }
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; display: block; }

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 300px; }
.faq-answer p { color: var(--gray-600); font-size: .9rem; line-height: 1.75; }

/* ── Map Section ─────────────────────────────────────────── */
.map-section { padding: 0; }
.map-wrap {
  height: 400px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.4);
}
.map-placeholder i { font-size: 3rem; color: var(--gold); }
.map-placeholder p { font-size: 1.1rem; }

/* ── About Page ──────────────────────────────────────────── */
.about-intro { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-values { padding: 80px 0; background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.4rem;
}
.value-card h4 { color: var(--navy); margin-bottom: 12px; }
.value-card p { color: var(--gray-600); font-size: .88rem; line-height: 1.7; }

/* ── Careers ─────────────────────────────────────────────── */
.careers-section { padding: 80px 0; }
.job-cards { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.job-title { color: var(--navy); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.job-tag.type { background: var(--gold-pale); color: var(--gold); }
.job-tag.dept { background: var(--gray-100); color: var(--gray-600); }
.job-tag.exp { background: #e8f5e9; color: #2e7d32; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-top { padding: 80px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-badges span {
  font-size: .72rem;
  padding: 5px 12px;
  border: 1px solid rgba(184,150,106,.3);
  border-radius: 100px;
  color: var(--gold);
  display: flex; align-items: center; gap: 5px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a i { color: var(--gold); font-size: .65rem; }

.contact-list { gap: 16px !important; }
.contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .85rem !important;
}
.contact-list li i { color: var(--gold); margin-top: 3px; width: 14px; }
.contact-list li a { color: rgba(255,255,255,.5); }
.contact-list li a:hover { color: var(--gold); }

.footer-newsletter { margin-top: 24px; }
.footer-newsletter h5 { color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form button {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .9rem;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
#newsletterMsg { font-size: .78rem; margin-top: 8px; }
#newsletterMsg.success { color: var(--green); }
#newsletterMsg.error { color: #ff6b6b; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .78rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: .78rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Back to Top ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 800;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-4px) !important; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-in { animation: fadeInUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }
.animate-delay-4 { animation-delay: .4s; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utilities ───────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .why-badge { right: 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; --topbar-h: 0px; }
  .top-bar { display: none; }

  .main-nav, .nav-cta {
    display: none;
  }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 80px 24px 40px;
    overflow-y: auto;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    z-index: 950;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 8px; font-size: 1rem; border-bottom: 1px solid var(--gray-200); border-radius: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--gray-100); padding: 8px; margin-top: 4px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .nav-overlay { display: block; opacity: 0; visibility: hidden; transition: var(--transition); }
  .nav-overlay.show { opacity: 1; visibility: visible; }

  .hero { padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group.full { grid-column: 1; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
}
