:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --crimson: #8b1a1a;
  --crimson-light: #a52020;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f8f5ef;
  --cream-dark: #ede9e0;
  --white: #ffffff;
  --gray-light: #f4f4f6;
  --gray-mid: #9ca3af;
  --text-dark: #1a1a2e;
  --text-body: #3d3d4e;
  --serif: "Playfair Display", Georgia, serif;
  --serif2: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-sm: 0 4px 20px rgba(10, 22, 40, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.section-title.light {
  color: var(--white);
}
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem 0 2rem;
  border-radius: 2px;
}
.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}
.btn-primary-custom {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--crimson);
  color: var(--white);
  border: 2px solid var(--crimson);
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  outline: none;
}
.btn-primary-custom:hover {
  background: transparent;
  color: var(--crimson);
}
.btn-outline-custom {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-gold-custom {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold-custom:hover {
  background: transparent;
  color: var(--gold);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── NAVBAR ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
  background: transparent;
}
#mainNav.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding: 0 2rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: 1400px;
  margin: 0 auto;
  transition: height 0.3s;
}
#mainNav.scrolled .nav-inner {
  height: 72px;
}
.nav-logo img {
  height: 54px;

  transition: var(--transition);
}
#mainNav.scrolled .nav-logo img {
  height: 44px;
}
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 0 18px;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
}
#mainNav.scrolled .nav-menu > li > a {
  height: 72px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
  z-index: 999;
  list-style: none;
  padding: 0.5rem 0;
}
.nav-menu > li:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu-custom li a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--gold);
}
.dropdown-menu-custom li a i {
  width: 16px;
  color: var(--gold);
}
.nav-cta {
  background: var(--crimson);
  color: var(--white) !important;
  padding: 10px 22px !important;
  height: auto !important;
  border: none !important;
}
.nav-cta:hover {
  background: var(--crimson-light) !important;
  color: var(--white) !important;
  border-bottom-color: transparent !important;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  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);
}

/* ── HERO SLIDER ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.55) 60%,
    rgba(139, 26, 26, 0.3) 100%
  );
}
.slide-1 {
  background-image: url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80");
}
.slide-2 {
  background-image: url("https://images.unsplash.com/photo-1453945619913-79ec89a82c51?w=1800&q=80");
}
.slide-3 {
  background-image: url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1800&q=80");
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: var(--serif2);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.3;
  }
}
.slide-dots {
  position: absolute;
  right: 3rem;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
}
.stat-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  display: block;
}

/* ── ABOUT ── */
#about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--crimson);
  z-index: -1;
}
.about-image-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--navy);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-image-badge .num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about-image-badge .lbl {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.about-content p {
  font-family: var(--serif2);
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.value-pill i {
  color: var(--gold);
}

/* ── SERVICES ── */
#services {
  padding: 120px 0;
  background: var(--white);
}
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  padding: 0 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.service-card {
  position: relative;
  padding: 50px 40px;
  background: var(--cream);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.service-card:hover::before {
  transform: translateY(0);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--crimson);
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}
.service-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-card:hover .service-name {
  color: var(--white);
}
.service-desc {
  font-family: var(--serif2);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  transition: color 0.3s;
}
.service-card:hover .service-desc {
  color: rgba(255, 255, 255, 0.75);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1.5rem;
  transition: gap 0.3s;
}
.service-card:hover .service-link {
  gap: 12px;
}
.service-link i {
  font-size: 0.65rem;
}
.service-num {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(10, 22, 40, 0.06);
  line-height: 1;
  z-index: 0;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: rgba(255, 255, 255, 0.04);
}

/* ── WHY US ── */
#why {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 26, 26, 0.15) 0%,
    transparent 70%
  );
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}
.why-feature h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.why-feature p {
  font-family: var(--serif2);
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}
.why-image-side {
  position: relative;
}
.why-image-side img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.why-image-quote {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--crimson);
  padding: 36px 32px;
  max-width: 320px;
}
.why-image-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.6;
}
.why-image-quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  font-style: normal;
}

/* ── TEAM ── */
#team {
  padding: 120px 0;
  background: var(--cream);
}
.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  padding: 0 2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.team-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.06);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.8) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 12px;
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.team-info {
  padding: 24px;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
}
.team-divider {
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0;
}
.team-bio {
  font-family: var(--serif2);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ── ARTICLES ── */
#articles {
  padding: 120px 0;
  background: var(--white);
}
.articles-header {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: var(--transition);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.article-image {
  height: 220px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-image img {
  transform: scale(1.06);
}
.article-body {
  padding: 28px;
}
.article-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.article-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: block;
}
.article-title:hover {
  color: var(--crimson);
}
.article-excerpt {
  font-family: var(--serif2);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}
.article-meta i {
  color: var(--gold);
}

/* ── CONSULTATION BOOKING ── */
#consultation {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#consultation::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}
.consult-form {
  background: var(--white);
  padding: 50px;
}
.consult-form h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.consult-form p {
  font-family: var(--serif2);
  color: var(--text-body);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.consult-info .section-label {
  color: var(--gold);
}
.consult-info .section-title {
  color: var(--white);
}
.consult-info p {
  font-family: var(--serif2);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 1rem;
}
.consult-benefits {
  list-style: none;
  margin-top: 2.5rem;
}
.consult-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.2rem;
  font-family: var(--serif2);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.consult-benefits li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── BLOG ── */
#blog {
  padding: 120px 0;
  background: var(--cream);
}
.blog-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  padding: 0 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-featured {
  background: var(--white);
  overflow: hidden;
}
.blog-featured .feat-image {
  height: 360px;
  overflow: hidden;
}
.blog-featured .feat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-featured:hover .feat-image img {
  transform: scale(1.04);
}
.blog-featured .feat-body {
  padding: 36px;
}
.blog-featured .feat-body .article-title {
  font-size: 1.5rem;
}
.blog-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-mini {
  display: flex;
  gap: 18px;
  background: var(--white);
  overflow: hidden;
  padding: 20px;
  transition: var(--transition);
}
.blog-mini:hover {
  box-shadow: var(--shadow-sm);
}
.blog-mini-image {
  width: 100px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}
.blog-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-mini:hover .blog-mini-image img {
  transform: scale(1.1);
}
.blog-mini-content .article-title {
  font-size: 0.95rem;
  line-height: 1.35;
}
.blog-mini-content .article-meta {
  font-size: 0.6rem;
}

/* ── REVIEWS ── */
#reviews {
  padding: 120px 0;
  background: var(--white);
}
.reviews-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  padding: 0 2rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.review-card {
  background: var(--cream);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.review-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.review-quote {
  font-size: 4rem;
  font-family: var(--serif);
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--serif2);
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-initials {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}
.reviewer-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}
.google-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 0.6rem;
  color: var(--gray-mid);
}
.google-badge i {
  color: #4285f4;
}

/* ── MAP & CONTACT ── */
#contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-info {
  background: var(--navy);
  padding: 60px 50px;
}
.contact-info .section-label {
  color: var(--gold);
}
.contact-info .section-title {
  color: var(--white);
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-top: 2rem;
}
.contact-detail i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 20px;
  flex-shrink: 0;
}
.contact-detail h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.contact-detail p,
.contact-detail a {
  font-family: var(--serif2);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  line-height: 1.5;
}
.contact-detail a:hover {
  color: var(--gold);
}
.office-hours {
  margin-top: 2rem;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gold);
}
.office-hours h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif2);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}
.map-wrap {
  height: 100%;
  min-height: 500px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 2rem 60px;
}
.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}
.footer-brand p {
  font-family: var(--serif2);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: "";
  width: 6px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-col ul li a:hover::before {
  opacity: 1;
}
.footer-newsletter h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-newsletter p {
  font-family: var(--serif2);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.newsletter-input {
  display: flex;
}
.newsletter-input input {
  flex: 1;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  outline: none;
}
.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-input button {
  padding: 13px 20px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-input button:hover {
  background: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── FLOATER WIDGET ── */
.floater {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floater-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.4);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.floater-btn:hover {
  background: var(--crimson-light);
  transform: scale(1.08);
}
.floater-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.floater-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floater-action {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.floater-action-label {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 8px 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.floater-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.floater-action-icon.call {
  background: var(--navy);
}
.floater-action-icon.whatsapp {
  background: #25d366;
}
.floater-action-icon.mail {
  background: var(--gold);
  color: var(--navy);
}
.floater-action-icon.inquiry {
  background: var(--crimson);
}

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9000;
}
.chat-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  border: 2px solid var(--gold);
  transition: var(--transition);
  position: relative;
}
.chat-btn:hover {
  transform: scale(1.08);
}
.chat-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
.chat-panel {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 320px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: 420px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.chat-header {
  background: var(--navy);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.chat-agent-info h6 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}
.chat-agent-info span {
  font-size: 0.65rem;
  color: #22c55e;
  font-family: var(--sans);
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
}
.msg {
  max-width: 85%;
  padding: 10px 14px;
  font-family: var(--serif2);
  font-size: 0.88rem;
  line-height: 1.5;
}
.msg.bot {
  background: var(--cream);
  align-self: flex-start;
  border-radius: 0 8px 8px 8px;
  color: var(--text-dark);
}
.msg.user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
  border-radius: 8px 0 8px 8px;
}
.chat-input-row {
  display: flex;
  border-top: 1px solid var(--cream-dark);
}
.chat-input-row input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  outline: none;
  color: var(--text-dark);
}
.chat-send {
  padding: 14px 18px;
  background: var(--crimson);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.chat-send:hover {
  background: var(--crimson-light);
}

/* ── INQUIRY MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
.modal-overlay.open .modal-box {
  transform: scale(1);
}
.modal-header {
  background: var(--navy);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
}
.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover {
  color: var(--gold);
}
.modal-body {
  padding: 40px;
}

/* ── MOBILE ── */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .consult-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-image-wrap {
    max-height: 400px;
  }
  .about-image-wrap img {
    height: 400px;
  }
  .why-image-side img {
    height: 380px;
  }
  .map-wrap {
    min-height: 300px;
  }
  .map-wrap iframe {
    min-height: 300px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    padding: 100px 30px 40px;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .nav-menu.mobile-open {
    display: flex;
    transform: translateX(0);
  }
  .nav-menu > li > a {
    height: auto;
    padding: 14px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-top: none;
    border-left: 3px solid var(--gold);
    margin: 8px 0 8px 16px;
    display: none;
  }
  .dropdown-menu-custom.show {
    display: block;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .consult-form {
    padding: 30px 24px;
  }
  .chat-widget {
    left: 16px;
    bottom: 16px;
  }
  .floater {
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 0 5vw;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .about-image-badge {
    left: -10px;
  }
  .why-image-quote {
    left: -10px;
    bottom: -16px;
    max-width: 260px;
  }
}
