:root {
  --navy:        #0E1E38;
  --navy-mid:    #1A2F52;
  --navy-light:  #243B63;
  --gold:        #C49A45;
  --gold-light:  #D4AE63;
  --gold-dark:   #A07E30;
  --gold-muted:  rgba(196, 154, 69, 0.12);
  --body-text:   #555555;
  --light-text:  #7A8499;
  --bg-white:    #FFFFFF;
  --bg-off:      #F9F9F9;
  --bg-section:  #F4F4F0;
  --border:      #E8E8E2;
  --shadow-sm:   0 2px 12px rgba(14, 30, 56, 0.06);
  --shadow-md:   0 8px 32px rgba(14, 30, 56, 0.10);
  --shadow-lg:   0 20px 60px rgba(14, 30, 56, 0.14);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-display:'Questrial', Georgia, serif;
  --font-body:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

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

address { font-style: normal; }

/* ---- UTILITY CLASSES ---- */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy   { background: var(--navy) !important; }
.bg-gold   { background: var(--gold) !important; }

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 16px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title-bar {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-text);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 154, 69, 0.35);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ---- BRAND LOGO ---- */
.brand-logo {
  width: auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.brand-logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo — same treatment */
.brand-logo--sm {
  width: auto;
  height: 42px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.brand-logo--sm span {
  display: none;
}
.brand-logo--sm img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.btn-cta-nav {
  margin-left: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0f14;
  letter-spacing: 0.01em;
}


/* ============================================
   HEADER / NAVBAR
   ============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 24px;
  background: #ffffff;
}

#mainNav {
  background: var(--bg-white);
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  padding: 10px 24px;
  transition: box-shadow var(--transition);
}
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(14, 30, 56, 0.14);
  background: #ffffff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap;
  gap: 0;
}

.navbar-brand {
  margin-right:12px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--body-text);
  padding: 8px 14px;
  border-radius: 30px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold);
  background: var(--gold-muted);
}

.btn-cta-nav {
  background: var(--navy);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left:12px;
}
.btn-cta-nav:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.toggler-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
  background: var(--bg-white);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-bg-shape--1 {
  width: 500px; height: 500px;
  background: rgba(196, 154, 69, 0.06);
  top: -100px; right: -80px;
}
.hero-bg-shape--2 {
  width: 400px; height: 400px;
  background: rgba(14, 30, 56, 0.04);
  bottom: -50px; left: -80px;
}
.hero-bg-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(196,154,69,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 80% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 80% 40%, black 10%, transparent 70%);
}

.hero-container { position: relative; z-index: 2; }

/* Hero Label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-label-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.5); }
}

/* Hero Heading */
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.13;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-heading-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-light);
  margin-bottom: 14px;
}

.hero-body {
  font-size: 1rem;
  color: var(--body-text);
  max-width: 480px;
  margin-bottom: 32px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  width: fit-content;
}
.hero-stat { text-align: center; padding: 0 20px; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-plus { color: var(--gold); font-size: 1.3rem; }
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--light-text);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px; height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  width: 90%; height: 90%;
  top: 5%; left: 5%;
  background: radial-gradient(ellipse at 40% 40%, rgba(196,154,69,0.13) 0%, rgba(196,154,69,0.04) 60%, transparent 80%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  animation: blob-morph 8s ease-in-out infinite;
}
@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33%      { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
  66%      { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
}

.hero-ring {
  position: absolute;
  width: 85%; height: 85%;
  top: 7%; left: 7%;
  border: 1.5px dashed rgba(196,154,69,0.25);
  border-radius: 50%;
  animation: ring-spin 20s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-img-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
}
.hero-img-card {
  position: relative;
  z-index: 2;

  max-width: 440px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;

  background: #eef0f4;
  box-shadow: var(--shadow-lg);
}

/* actual image */
.hero-img-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* glow overlay */
.hero-img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(196,154,69,0.15),
    transparent 60%
  );
  pointer-events: none;
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 5;
  animation: float-card 4s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.4rem; }
.hero-float-card strong { display: block; color: var(--navy); font-size: 0.85rem; }
.hero-float-card small { color: var(--light-text); font-size: 0.72rem; }

.hero-float-card--1 {
  bottom: 20%; left: -40px;
  animation-delay: 0s;
}
.hero-float-card--2 {
  top: 18%; right: -30px;
  animation-delay: 2s;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg-white);
}

.about-image-wrap {
  position: relative;
  padding-bottom: 24px;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-svg { display: block; width: 100%; }

.about-accent-bar {
  position: absolute;
  bottom: 0; left: 24px;
  width: calc(100% - 48px); height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

.about-badge {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.badge-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.badge-number sup { font-size: 1rem; }
.badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-top: 2px;
}

/* About Content */
.about-content { padding-left: 20px; }

.content-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.content-eyebrow.gold { color: var(--gold); }

.content-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.content-body {
  color: var(--body-text);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 24px;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}
.about-feature-item i { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--bg-off);
  position: relative;
  overflow: hidden;
}

.services-bg-decoration {
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border: 60px solid rgba(196,154,69,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
  transition: height 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,154,69,0.25);
}
.service-card:hover::before { height: 100%; }

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gold-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.service-icon-wrap i {
  font-size: 1.5rem;
  color: var(--gold);
  transition: color var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--gold);
}
.service-card:hover .service-icon-wrap i { color: var(--navy); }

.service-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  background: var(--bg-off);
  padding: 4px 10px;
  border-radius: 20px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: auto;
}
.service-link:hover { color: var(--gold-dark); gap: 10px; }

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section {
  background: var(--bg-white);
}

.why-card {
  background: var(--bg-off);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.why-card:hover,
.why-card--accent {
  background: var(--bg-white);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.why-icon {
  width: 56px; height: 56px;
  background: var(--gold-muted);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon i { font-size: 1.6rem; color: var(--gold); }

.why-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  opacity: 0.15;
  margin-left: auto;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.7;
  margin: 0;
}


/* ============================================
   CORE VALUES SECTION
   ============================================ */
.core-values-section {
  background: var(--bg-section);
  position: relative;
}

.values-bg-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.value-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card-bar {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  transition: width 0.35s ease;
}
.value-card:hover .value-card-bar { width: 60%; }

.value-icon-wrap {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold-muted), rgba(196,154,69,0.06));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid rgba(196,154,69,0.2);
  transition: all var(--transition);
}
.value-icon-wrap i { font-size: 1.8rem; color: var(--gold); transition: transform var(--transition); }
.value-card:hover .value-icon-wrap { background: var(--gold); border-color: var(--gold); }
.value-card:hover .value-icon-wrap i { color: var(--navy); transform: scale(1.15); }

.value-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: var(--bg-white);
}

.team-featured-wrap {
  background: var(--bg-off);
  border-radius: var(--radius-xl);
  padding: 52px;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

/* Portrait */
.team-portrait-wrap { position: relative; display: inline-block; }

.team-portrait-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2.5px dashed rgba(196,154,69,0.35);
  animation: ring-spin 14s linear infinite;
}

.team-portrait {
  width: 280px; height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold);
  box-shadow: var(--shadow-md);
  margin: 20px auto;
  position: relative;
  z-index: 2;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-role-badge {
  position: absolute;
  bottom: 24px; right: -10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

/* Profile Content */
.team-name-block { margin-bottom: 20px; }
.team-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.team-name-bar {
  width: 44px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.team-quote {
  background: var(--bg-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  position: relative;
}
.team-quote-icon {
  position: absolute;
  top: -14px; left: 12px;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.4;
}
.team-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.6;
}
.team-quote-footer {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-muted);
  border: 1px solid rgba(196,154,69,0.25);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.credential-tag i { color: var(--gold); }

/* Team Summary */
.team-summary-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.team-summary-block::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border: 40px solid rgba(196,154,69,0.08);
  border-radius: 50%;
}

.team-summary-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
}
.team-summary-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}

.team-stat-cluster {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.team-mini-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,154,69,0.25);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  min-width: 90px;
}
.mini-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.mini-stat-num sup { font-size: 1rem; }
.mini-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg-off);
}

.faq-intro { padding-right: 20px; }
.faq-intro-body {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-top: 16px;
}
.faq-intro .section-title { font-size: clamp(22px, 3vw, 30px); }
.faq-intro .section-title-bar { margin-left: 0; margin-right: auto; }

/* Decorative elements */
.faq-decoration {
  position: relative;
  height: 120px;
  margin-top: 40px;
}
.faq-deco-ring {
  width: 80px; height: 80px;
  border: 2px dashed rgba(196,154,69,0.3);
  border-radius: 50%;
  position: absolute;
  bottom: 0; left: 20px;
  animation: ring-spin 12s linear infinite;
}
.faq-deco-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
}
.faq-deco-dot--1 { width: 10px; height: 10px; top: 20px; left: 60px; opacity: 0.5; }
.faq-deco-dot--2 { width: 6px;  height: 6px;  top: 50px; left: 110px; opacity: 0.3; }
.faq-deco-dot--3 { width: 14px; height: 14px; bottom: 20px; left: 80px; opacity: 0.2; }

/* FAQ Accordion */
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:has(.faq-question--active) {
  border-color: rgba(196,154,69,0.4);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
  min-height: 48px;
}
.faq-question:hover { background: var(--bg-off); }
.faq-question--active { background: var(--bg-off); }

.faq-q-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-chevron i {
  font-size: 1rem;
  color: var(--gold);
  transition: transform var(--transition);
  display: block;
}
.faq-question--active .faq-chevron i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer--open { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-answer-inner p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.75;
  margin: 14px 0 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.contact-bg-overlay {
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, var(--bg-off) 0%, var(--bg-section) 100%);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  pointer-events: none;
}

.contact-info-block { position: relative; z-index: 1; }
.contact-info-intro {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-detail-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  background: var(--gold-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { font-size: 1.1rem; color: var(--gold); }

.contact-detail-body strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-detail-body a,
.contact-detail-body address,
.contact-detail-body span {
  font-size: 0.9rem;
  color: var(--body-text);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-detail-body a:hover { color: var(--gold); }

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Form Inputs */
.form-group-custom { position: relative; }
.form-label-custom {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-label-custom span { color: var(--gold); }

.form-input-custom {
  width: 100%;
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input-custom::placeholder { color: var(--light-text); }
.form-input-custom:focus {
  border-color: var(--gold);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(196,154,69,0.12);
}
.form-input-custom.is-invalid { border-color: #dc3545; }
.form-error {
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 4px;
  min-height: 16px;
}

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

.form-select-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C49A45' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* reCAPTCHA placeholder */
.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  transform: scale(0.95);
  transform-origin: center;
}

/* Success Message */
.form-success-msg {
  text-align: center;
  padding: 48px 24px;
}
.form-success-msg i {
  font-size: 3rem;
  color: #28a745;
  display: block;
  margin-bottom: 14px;
}
.form-success-msg strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success-msg p { color: var(--body-text); }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--navy);
}

.footer-main {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand .brand-name { color: #fff; }
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
}
.footer-links a::before {
  content: '›';
  margin-right: 6px;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0 0 20px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.social-whatsapp:hover { border-color: #25D366; color: #25D366; }

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   FLOATING HUD
============================================ */
.floating-hud {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.hud-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: all 0.3s ease;

  position: relative;
}

.hud-btn:hover {
  transform: scale(1.08) translateY(-3px);
}

/* WhatsApp */
.hud-whatsapp {
  background: #25D366;
  color: #fff;
}

.hud-whatsapp:hover {
  background: #1da851;
}

/* Calendar */
.hud-calendar {
  background: var(--navy);
  color: #fff;
}

/* Email */
.hud-email {
  background: var(--gold);
  color: var(--navy);
}

/* Scroll top */
.hud-top {
  background: var(--gold-dark);
  color: #fff;
}

/* ============================================
   TOOLTIPS
============================================ */

.hud-btn::after {
  content: attr(data-tooltip);
  position: absolute;

  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);

  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;

  font-size: 0.75rem;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.hud-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ============================================
   MODALS
============================================ */

.custom-modal {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;

  z-index: 9999;
}

.custom-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  width: 92%;
  max-width: 560px;

  border-radius: 24px;
  padding: 30px;
  position: relative;

  max-height: 90vh;
  overflow-y: auto;
}

.modal-calendar {
  max-width: 950px;
}

.whatsapp-modal-content {
  max-width: 500px;
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;

  border: none;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}
/* ============================================
   SCROLL ANIMATION
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"] { transform: translateX(28px); }
[data-animate="fade-right"] { transform: translateX(-28px); }
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   RESPONSIVE — TABLET (< 992px)
   ============================================ */
@media (max-width: 991.98px) {
  #site-header { padding: 12px 16px; }
  #mainNav { border-radius: 16px; padding: 12px 16px; }

  .navbar-toggler { display: flex; }

  .navbar-collapse {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    border: 1px solid var(--border);
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 12px;
  }
  .navbar-nav .nav-link { width: 100%; padding: 12px 16px; border-radius: 10px; }
  .btn-cta-nav { width: 100%; text-align: center; display: block; }

  .hero-section { min-height: auto; padding: 60px 0; }
  .hero-float-card { display: none; }

  .about-content { padding-left: 0; }

  .team-featured-wrap { padding: 32px 24px; }
  .team-summary-block { padding: 36px 28px; }
  .contact-form-card { padding: 32px 24px; }
  .contact-bg-overlay { display: none; }

  .why-banner { padding: 32px 24px; }
  .why-banner-quote { font-size: 1rem; }
}

/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 767.98px) {
  .section { padding: 72px 0; }

  .hero-stats {
    width: 100%;
    justify-content: space-between;
    padding: 16px 20px;
  }
  .hero-stat { padding: 0 10px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-outline-navy { margin-left: 0 !important; }

  .about-badge { width: 80px; height: 80px; }
  .badge-number { font-size: 1.2rem; }

  .about-features { grid-template-columns: 1fr; }

  .team-featured-wrap { padding: 24px 16px; }
  .team-portrait { width: 170px; height: 170px; }

  .team-summary-block { padding: 28px 20px; }
  .team-stat-cluster { gap: 12px; }

  .contact-form-card { padding: 24px 16px; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .faq-intro { padding-right: 0; }
  .faq-decoration { display: none; }

  .why-banner { padding: 28px 20px; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  #site-header, .floating-hud, .hero-float-card { display: none !important; }
  .section { padding: 40px 0; }
  * { box-shadow: none !important; }
}

/* ============================================
   ABOUT IMAGE SLIDER (NEW)
   ============================================ */

.about-image-card {
  position: relative;
  overflow: hidden;
}

/* slider container */
.about-slider {
  position: relative;
  width: 100%;
  height: 500px; /* matches your SVG height */
}

/* images stacked */
.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* active image */
.about-slide.active {
  opacity: 1;
}

/* soft premium overlay */
.about-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(196,154,69,0.12),
    transparent 60%
  );
  pointer-events: none;
  z-index: 2;
}

.design-credit-modal {
  max-width: 420px;
  border-radius: 20px;
}