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

/* ─── Reset & Base ─────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #C9A96A transparent;
}

body {
  font-family: 'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif;
  background-color: #ffffff;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #C9A96A; border-radius: 2px; }

/* ─── Utility Classes ──────────────────────────────────────────── */

.font-display { font-family: 'Manrope', system-ui, sans-serif; }

.gold-gradient {
  background: linear-gradient(135deg, #C9A96A 0%, #DFC28E 50%, #A8833F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #C9A96A, #DFC28E);
}

.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96A;
}

/* ─── Layout ───────────────────────────────────────────────────── */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

/* ─── Animations ───────────────────────────────────────────────── */

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

.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Hero Overlay ─────────────────────────────────────────────── */

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.45) 50%,
    rgba(10, 10, 10, 0.80) 100%
  );
}

/* ─── Glass Card ───────────────────────────────────────────────── */

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 106, 0.25);
}

/* ─── Buttons ──────────────────────────────────────────────────── */

.btn-gold {
  background: linear-gradient(135deg, #C9A96A 0%, #A8833F 100%);
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #DFC28E 0%, #C9A96A 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-gold:hover::before { opacity: 1; }
.btn-gold span { position: relative; z-index: 1; }

.btn-outline-gold {
  border: 1px solid #C9A96A;
  color: #C9A96A;
  background: transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-outline-gold:hover {
  background: #C9A96A;
  color: #111111;
}

/* ─── Header ───────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 1024px) {
  .header-inner { padding: 0 32px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-main {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.logo-sub {
  color: #C9A96A;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(201,169,106,0.4);
}

.logo-location {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .logo-location { display: none; }
}

/* ─── Nav ──────────────────────────────────────────────────────── */

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 1280px) {
  .nav { display: flex; }
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-link:hover { color: #fff; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A96A;
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

/* ─── Header CTA ───────────────────────────────────────────────── */

.header-cta {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (min-width: 1024px) {
  .header-cta { display: flex; }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.header-phone:hover { color: #C9A96A; }

.header-phone-text {
  display: none;
}

@media (min-width: 1280px) {
  .header-phone-text { display: inline; }
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  background: #25D366;
  color: #fff;
  transition: all 0.3s;
}

.whatsapp-btn:hover { opacity: 0.9; }

.whatsapp-btn-text {
  display: none;
}

@media (min-width: 1280px) {
  .whatsapp-btn-text { display: inline; }
}

.header-cta .btn-gold {
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
}

/* ─── Mobile Menu Toggle ───────────────────────────────────────── */

.mobile-toggle {
  display: block;
  color: #fff;
  padding: 8px;
}

@media (min-width: 1280px) {
  .mobile-toggle { display: none; }
}

/* ─── Mobile Menu ──────────────────────────────────────────────── */

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1280px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-inner {
  background: rgba(10,10,10,0.98);
  border-top: 1px solid rgba(201,169,106,0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  padding: 4px 0;
}

.mobile-menu a:hover { color: #C9A96A; }

.mobile-menu-divider {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(201,169,106,0.2);
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
}

.mobile-menu .btn-gold {
  padding: 12px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
}

/* ─── Hero Section ─────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

.hero-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A96A, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 24px 192px;
}

@media (min-width: 1024px) {
  .hero-content { padding: 128px 32px 192px; }
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 32px;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.02em;
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .hero-desc { font-size: 20px; }
}

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

.hero-buttons .btn-gold {
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
}

.hero-buttons .btn-outline-gold {
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
}

/* ─── Hero Stats ───────────────────────────────────────────────── */

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(50%);
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .hero-stats { padding: 0 32px; }
}

.hero-stats-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 16px;
  overflow: hidden;
}

.hero-stat {
  padding: 32px;
  text-align: center;
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(201,169,106,0.2);
}

.hero-stat-value {
  font-family: 'Manrope', sans-serif;
  color: #C9A96A;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .hero-stat-value { font-size: 48px; }
}

.hero-stat-label {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .hero-stat-label { font-size: 16px; }
}

.hero-stat-sub {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-top: 2px;
}

/* ─── About Section ────────────────────────────────────────────── */

.about {
  padding: 160px 0 96px;
  background: #F6F6F6;
}

@media (min-width: 1024px) {
  .about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.04);
}

@media (min-width: 1024px) {
  .about-image { height: 620px; }
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  border-radius: 12px;
  padding: 24px;
  background: #111111;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  min-width: 160px;
}

.about-badge-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #C9A96A;
}

.about-badge-label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

.about h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .about h2 { font-size: 48px; }
}

.about p {
  color: #666;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about p.large { font-size: 18px; }

/* ─── CEO Quote ────────────────────────────────────────────────── */

.ceo-quote {
  border-left: 4px solid #C9A96A;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.ceo-quote p {
  color: #444;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 16px;
}

.ceo-quote-name {
  font-weight: 600;
  font-size: 14px;
  color: #111111;
}

.ceo-quote-role {
  font-size: 12px;
  color: #888;
}

/* ─── Core Values Grid ─────────────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #F6F6F6;
}

.value-icon { font-size: 20px; }

.value-label {
  font-weight: 600;
  font-size: 14px;
  color: #111111;
}

/* ─── Section Header ───────────────────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .section-header h2 { font-size: 48px; }
}

.section-header p {
  color: #888;
  font-size: 18px;
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-left {
  text-align: left;
  margin-bottom: 64px;
}

.section-header-left h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .section-header-left h2 { font-size: 48px; }
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-header-row h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .section-header-row h2 { font-size: 48px; }
}

.section-header-row p {
  color: #888;
  max-width: 320px;
}

/* ─── Mission Vision ───────────────────────────────────────────── */

.mission-vision {
  padding: 96px 0;
  background: #111111;
}

.mv-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
}

.mv-card {
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(201,169,106,0.25);
  background: rgba(255,255,255,0.04);
}

.mv-card.vision {
  background: rgba(201,169,106,0.06);
  border-color: #C9A96A;
}

.mv-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(201,169,106,0.12);
  color: #C9A96A;
}

.mv-card h3 {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mv-card p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ─── Principles Grid ──────────────────────────────────────────── */

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .principles-grid { grid-template-columns: repeat(4, 1fr); }
}

.principle-card {
  text-align: center;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(201,169,106,0.15);
  background: rgba(255,255,255,0.03);
}

.principle-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: #C9A96A;
}

.principle-title {
  color: #fff;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 8px;
}

.principle-desc {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.6;
}

/* ─── Why Choose Us ────────────────────────────────────────────── */

.why-choose {
  padding: 96px 0;
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #EAEAEA;
  background: #F6F6F6;
  cursor: default;
  transition: all 0.35s ease;
}

.why-card:hover {
  background: #111111 !important;
  color: white;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(201,169,106,0.1);
  color: #C9A96A;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: rgba(201,169,106,0.2) !important;
  color: #C9A96A !important;
}

.why-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: #111111;
  transition: color 0.3s ease;
}

.why-card:hover .why-title { color: white !important; }

.why-text {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.why-card:hover .why-text { color: rgba(255,255,255,0.7) !important; }

/* ─── Services ─────────────────────────────────────────────────── */

.services {
  padding: 96px 0;
  background: #F6F6F6;
}

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

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); }
}

.service-card {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #EAEAEA;
  background: #fff;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(201, 169, 106, 0.12);
  border-color: #C9A96A !important;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(201,169,106,0.1);
  color: #C9A96A;
}

.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: #111111;
}

.service-card p {
  color: #888;
  font-size: 12px;
  line-height: 1.6;
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: #C9A96A;
  font-size: 12px;
  font-weight: 600;
}

/* ─── Story / Timeline ─────────────────────────────────────────── */

.story {
  padding: 96px 0;
  background: #ffffff;
}

.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #C9A96A, #DFC28E, #C9A96A);
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 1024px) {
  .timeline-line { display: block; }
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-item {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .timeline-item { grid-template-columns: 1fr 1fr; }
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #C9A96A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.timeline-dot span {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
}

.timeline-year {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #EAEAEA;
  -webkit-text-stroke: 1px #C9A96A;
}

.timeline-card {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #EAEAEA;
  background: #F6F6F6;
}

.timeline-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  color: #111111;
}

.timeline-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

/* ─── Team ─────────────────────────────────────────────────────── */

.team {
  padding: 96px 0;
  background: #F6F6F6;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card-img {
  position: relative;
  overflow: hidden;
  background: #e5e5e5;
  height: 320px;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-card-img img {
  transform: scale(1.04);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-overlay a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #C9A96A;
  font-size: 14px;
  font-weight: 500;
}

.team-card-info {
  padding: 24px;
}

.team-card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111111;
}

.team-card-role {
  font-size: 14px;
  color: #C9A96A;
  margin-top: 4px;
}

/* ─── Achievements ─────────────────────────────────────────────── */

.achievements {
  padding: 96px 0;
  background: #111111;
}

.achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .achievements-grid { grid-template-columns: repeat(4, 1fr); }
}

.achievement-item { text-align: center; }

.achievement-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 5rem);
  color: #C9A96A;
  line-height: 1;
  margin-bottom: 8px;
}

.achievement-label {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.achievement-sub {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* ─── Certificates ─────────────────────────────────────────────── */

.certificates {
  padding: 80px 0;
  background: #F6F6F6;
}

.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .certs-grid { grid-template-columns: repeat(4, 1fr); }
}

.cert-card {
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid #EAEAEA;
  background: #fff;
  transition: all 0.3s ease;
}

.cert-card:hover {
  border-color: #C9A96A;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.cert-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: rgba(201,169,106,0.1);
  color: #C9A96A;
}

.cert-name {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
}

/* ─── References ───────────────────────────────────────────────── */

.references {
  padding: 80px 0;
  background: #ffffff;
}

.partner-scroll {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll-x 25s linear infinite;
}

.partner-item {
  flex-shrink: 0;
  border-radius: 12px;
  padding: 20px 32px;
  border: 1px solid #EAEAEA;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.partner-item span {
  font-weight: 600;
  font-size: 14px;
  color: #666;
}

/* ─── Testimonials ─────────────────────────────────────────────── */

.testimonials {
  padding: 96px 0;
  background: #F6F6F6;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  border-radius: 16px;
  padding: 32px;
  background: #fff;
  border: 1px solid #EAEAEA;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  color: #C9A96A;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #666;
  line-height: 1.75;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #EAEAEA;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e5e5;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  color: #111111;
}

.testimonial-role {
  font-size: 12px;
  color: #C9A96A;
}

/* ─── Work Process ─────────────────────────────────────────────── */

.work-process {
  padding: 96px 0;
  background: #ffffff;
}

.process-line {
  position: relative;
}

.process-line::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A96A, #DFC28E, #C9A96A, transparent);
  display: none;
}

@media (min-width: 1024px) {
  .process-line::before { display: block; }
}

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

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid #fff;
  background: #111111;
  box-shadow: 0 0 0 1px #C9A96A;
  position: relative;
  z-index: 10;
}

.process-num span {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #C9A96A;
}

.process-step h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: #111111;
}

.process-step p {
  color: #888;
  font-size: 12px;
  line-height: 1.6;
}

/* ─── FAQ ──────────────────────────────────────────────────────── */

.faq {
  padding: 96px 0;
  background: #F6F6F6;
}

.faq-inner {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid #EAEAEA;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.35s ease;
}

.faq-item.active {
  border-color: #C9A96A;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #111111;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #C9A96A;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid #EAEAEA;
  padding-top: 16px;
}

/* ─── Career ───────────────────────────────────────────────────── */

.career {
  padding: 96px 0;
  background: #111111;
}

@media (min-width: 1024px) {
  .career .career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.career h2 {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .career h2 { font-size: 48px; }
}

.career-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-size: 18px;
  margin-bottom: 32px;
}

.career-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.career-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.career-benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201,169,106,0.2);
}

.career-benefit span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.career-jobs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-job {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(201,169,106,0.2);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-job:hover {
  border-color: #C9A96A;
}

.career-job-title {
  color: #fff;
  font-weight: 600;
}

.career-job-dept {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-top: 4px;
}

.career-job-arrow {
  color: #C9A96A;
}

/* ─── CTA ──────────────────────────────────────────────────────── */

.cta {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.30;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,106,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201,169,106,0.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cta h2 {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .cta h2 { font-size: 64px; }
}

.cta p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-buttons .btn-gold {
  padding: 16px 40px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
}

.cta-buttons .whatsapp-btn {
  padding: 16px 40px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 16px;
}

/* ─── Contact ──────────────────────────────────────────────────── */

.contact {
  padding: 96px 0;
  background: #ffffff;
}

@media (min-width: 1024px) {
  .contact .contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
  }
}

.contact-info { margin-bottom: 48px; }

@media (min-width: 1024px) {
  .contact-info { margin-bottom: 0; }
}

.contact h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
  color: #111111;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: color 0.3s;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201,169,106,0.1);
  color: #C9A96A;
  transition: background 0.3s;
}

.contact-item:hover .contact-item-icon {
  background: #C9A96A;
  color: #fff;
}

.contact-item-label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}

/* ─── Social Links ─────────────────────────────────────────────── */

.social-label {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EAEAEA;
  color: #666;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: #C9A96A;
  color: #C9A96A;
}

/* ─── Map Placeholder ──────────────────────────────────────────── */

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  background: #F6F6F6;
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
}

.map-placeholder span { font-size: 14px; }
.map-placeholder small { font-size: 12px; opacity: 0.6; }

/* ─── Contact Form ─────────────────────────────────────────────── */

.contact-form-wrap {
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #EAEAEA;
  background: #F6F6F6;
}

@media (min-width: 1024px) {
  .contact-form-wrap { padding: 40px; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #EAEAEA;
  background: #fff;
  font-size: 14px;
  color: #111111;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C9A96A;
}

.form-group textarea {
  resize: none;
}

.contact-form .btn-gold {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  justify-content: center;
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

/* ─── Form Success ─────────────────────────────────────────────── */

.form-success {
  text-align: center;
  padding: 64px 0;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(201,169,106,0.15);
  color: #C9A96A;
}

.form-success h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: #111111;
}

.form-success p {
  color: #888;
}

/* ─── Footer ───────────────────────────────────────────────────── */

.footer {
  background: #0a0a0a;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 32px;
}

@media (min-width: 1024px) {
  .footer-inner { padding: 80px 32px 32px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201,169,106,0.15);
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Footer Brand */
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.footer-social:hover { color: #C9A96A; }

/* Footer Links */
.footer-links-title {
  color: #fff;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover { color: #C9A96A; }

/* Footer Newsletter */
.footer-newsletter p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,106,0.2);
  color: #fff;
}

.footer-newsletter-form button {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  background: #C9A96A;
  color: #111111;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

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

.footer-legal a {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  transition: color 0.3s;
}

.footer-legal a:hover { color: #C9A96A; }

/* ─── SVG Icons (inline) ───────────────────────────────────────── */

svg { flex-shrink: 0; }

/* ─── Min-height screen utility ────────────────────────────────── */

.min-h-screen { min-height: 100vh; }
