/* ============================================================
   griavisa.css — PT. Gria Visa Solusi
   Full custom CSS | Bootstrap 5.3 base
   Replaces: style.css + default.css
   Font: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ===== CSS Variables ===== */
:root {
  --primary:        #0B1F4A;
  --primary-mid:    #163576;
  --primary-light:  #1E4DB7;
  --gold:           #C4973A;
  --gold-light:     #EFC96A;
  --gold-pale:      #FBF4E4;
  --cream:          #F7F5F0;
  --white:          #FFFFFF;
  --dark:           #07101F;
  --text-dark:      #0D1830;
  --text-body:      #3D4A63;
  --text-muted:     #7A8AA0;
  --border:         #E4E9F0;
  --border-gold:    rgba(196,151,58,0.30);
  --shadow-sm:      0 2px 12px rgba(11,31,74,0.07);
  --shadow-md:      0 8px 32px rgba(11,31,74,0.10);
  --shadow-lg:      0 20px 64px rgba(11,31,74,0.14);
  --shadow-gold:    0 8px 32px rgba(196,151,58,0.28);
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      22px;
  --radius-xl:      32px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.2;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== Typography Utilities ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  display: block;
  flex-shrink: 0;
}
.section-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}
.gold-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 28px;
}
.gold-line.centered { margin-left: auto; margin-right: auto; }

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.preloader img {
  height: 52px;
  filter: brightness(0) invert(1);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-track {
  width: 100px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloaderBar 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse { 0%,100%{opacity:1;} 50%{opacity:0.45;} }
@keyframes preloaderBar { 0%{width:0%;margin-left:0;} 50%{width:80%;} 100%{width:0%;margin-left:100%;} }

/* ===== Navbar ===== */
.navbar-area {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: all 0.4s var(--ease);
}
.navbar-area .navbar {
  padding: 20px 0;
  transition: padding 0.35s;
}
.navbar-area.sticky {
  background: rgba(7,16,31,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(196,151,58,0.18), 0 6px 32px rgba(0,0,0,0.38);
}
.navbar-area.sticky .navbar { padding: 11px 0; }
.navbar-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  transition: height 0.3s;
}
.navbar-area.sticky .navbar-brand img { height: 36px; }

.nav-link-gv {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.4px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.82) !important;
  padding: 8px 13px !important;
  border-radius: var(--radius-sm) !important;
  transition: all 0.22s !important;
  position: relative !important;
}
.nav-link-gv::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 13px; right: 13px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  transform-origin: left;
}
.nav-link-gv:hover, .nav-link-gv.active-link {
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
}
.nav-link-gv:hover::after, .nav-link-gv.active-link::after { transform: scaleX(1); }

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: var(--radius-sm) !important;
  padding: 7px 9px !important;
  background: rgba(255,255,255,0.06) !important;
}
.toggler-icon {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.lang-btn-gv {
  background: rgba(196,151,58,0.12) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--gold-light) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  border-radius: var(--radius-sm) !important;
  padding: 6px 14px !important;
  transition: 0.22s !important;
}
.lang-btn-gv:hover, .lang-btn-gv:focus {
  background: rgba(196,151,58,0.22) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* ===== Hero ===== */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 128px 0 90px;
  background: var(--dark);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/griavisa2.png') center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.5);
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 55% 35%, rgba(11,31,74,0.72) 0%, transparent 65%),
    linear-gradient(155deg, rgba(7,16,31,0.96) 25%, rgba(11,31,74,0.72) 60%, rgba(7,16,31,0.92) 100%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,151,58,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,151,58,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,151,58,0.06) 0%, transparent 60%);
  right: -200px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,151,58,0.10);
  border: 1px solid rgba(196,151,58,0.32);
  color: var(--gold-light);
  padding: 7px 18px 7px 14px;
  border-radius: 50px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotBlink { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.35;transform:scale(0.65);} }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5.5vw, 3.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.10;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-title .italic-gold {
  color: var(--gold-light);
  font-style: italic;
}
.hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.68);
  line-height: 1.88;
  margin-bottom: 38px;
  max-width: 530px;
}
.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 54px;
}
.btn-gv-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease-bounce);
  border: 2px solid transparent;
}
.btn-gv-gold:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-gv-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: all 0.28s var(--ease);
}
.btn-gv-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}

.hero-stats-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin-bottom: 28px;
}
.hero-stats-row { display: flex; flex-wrap: wrap; gap: 28px 40px; }
.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.4px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: scrollFade 2.8s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
}
@keyframes scrollFade { 0%,100%{opacity:0.3;transform:translateX(-50%) translateY(0);} 50%{opacity:0.8;transform:translateX(-50%) translateY(-5px);} }

/* ===== Section Padding ===== */
.section-py { padding: 108px 0; }
.section-py-sm { padding: 64px 0; }

/* ===== About ===== */
.bg-white-section { background: var(--white); }
.about-media {
  position: relative;
  padding-bottom: 24px;
  padding-right: 24px;
}
.about-media::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  background: var(--gold-pale);
  border-radius: var(--radius-xl);
  z-index: 0;
}
.about-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.about-badge-card {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-bottom: 4px solid var(--gold);
  min-width: 130px;
}
.about-badge-card .bc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.about-badge-card .bc-txt {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}
.about-feat {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.about-feat:last-child { border-bottom: none; }
.af-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
  transition: 0.3s;
}
.about-feat:hover .af-icon {
  background: var(--primary);
  color: #fff;
}
.af-text h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14.5px;
  margin-bottom: 2px;
}
.af-text p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ===== Services ===== */
.bg-cream-section {
  background: var(--cream);
  position: relative;
}
.bg-cream-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,151,58,0.035) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 26px 28px;
  height: 100%;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, rgba(11,31,74,0.05), rgba(196,151,58,0.06));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--primary);
  transition: all 0.35s var(--ease-bounce);
}
.service-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}
.svc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 9px;
}
.svc-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.svc-more i { font-size: 11px; transition: transform 0.2s; }
.service-card:hover .svc-more i { transform: translateX(4px); }

/* ===== Team ===== */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.32s var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-photo-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--cream);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease);
}
.team-card:hover .team-photo-wrap img { transform: scale(1.06); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,74,0.55) 0%, transparent 55%);
}
.team-body { padding: 22px 22px 24px; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.team-role {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
  display: block;
}
.team-bio { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ===== Visi Misi ===== */
.vm-section {
  padding: 108px 0;
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-mid) 48%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.vm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,151,58,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,151,58,0.028) 1px, transparent 1px);
  background-size: 48px 48px;
}
.vm-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,151,58,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.vm-blob.b1 { width: 500px; height: 500px; top: -180px; left: -120px; }
.vm-blob.b2 { width: 400px; height: 400px; bottom: -120px; right: -80px; }
.vm-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
}
.vm-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 22px;
}
.vm-panel h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.65rem;
  margin-bottom: 18px;
}
.vm-quote {
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 0;
}
.misi-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.misi-row:last-child { margin-bottom: 0; }
.misi-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.misi-text { color: rgba(255,255,255,0.80); font-size: 14.5px; line-height: 1.75; margin: 0; }

/* ===== Testimonials ===== */
.bg-cream-section.testi { }
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 14px; right: 20px;
  user-select: none;
}
.testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 12px; }
.testi-body {
  font-size: 13.5px;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.82;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 13.5px; color: var(--text-dark); }
.testi-origin { font-size: 12px; color: var(--text-muted); }

/* ===== Clients ===== */
.clients-section {
  background: var(--primary);
  padding: 68px 0;
  position: relative;
  overflow: hidden;
}
.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.clients-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  text-align: center;
}
.clients-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 44px;
}
.client-logo {
  height: 42px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.35);
  transition: filter 0.3s, transform 0.3s;
}
.client-logo:hover {
  filter: brightness(0) invert(1) opacity(0.88);
  transform: scale(1.07);
}

/* ===== Legalitas ===== */
.legal-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.legal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}
.legal-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}
.legal-row:last-child { border-bottom: none; }
.legal-row i { color: var(--gold); font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.legal-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.legal-val { font-weight: 700; color: var(--text-dark); font-size: 14px; }
.legal-stamp {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.legal-stamp img {
  height: 72px;
  width: auto;
  margin: 0 auto 18px;
}
.legal-stamp h5 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 4px;
}
.legal-stamp p { font-size: 12.5px; color: var(--text-muted); }

/* ===== Contact ===== */
.contact-info-card {
  background: linear-gradient(150deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: var(--radius-xl);
  padding: 46px 38px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(196,151,58,0.12) 0%, transparent 65%);
}
.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 6px;
}
.contact-info-card .c-sub {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 36px;
}
.c-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.c-ico {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.c-lbl {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.c-val { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.65; }
.c-val a { color: rgba(255,255,255,0.82); }
.c-val a:hover { color: var(--gold-light); }
.wa-quick-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.28);
  color: #5dffaa;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  transition: all 0.22s;
}
.wa-quick-btn:hover {
  background: rgba(37,211,102,0.22);
  color: #fff;
  transform: translateX(4px);
}

.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 46px 38px;
  box-shadow: var(--shadow-md);
}
.form-card .form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-card .form-control,
.form-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: all 0.22s;
  font-family: 'DM Sans', sans-serif;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,31,74,0.07);
  outline: none;
}
.form-card textarea { resize: vertical; min-height: 120px; }
.btn-send-gv {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14.5px;
  width: 100%;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.5px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-send-gv:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary-light) 100%);
}
.btn-send-gv:disabled { opacity: 0.65; transform: none; cursor: not-allowed; }
#contact-alert { display: none; margin-top: 16px; border-radius: var(--radius-sm); font-size: 14px; }

/* ===== Modal ===== */
.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 20px 28px;
  border-radius: 12px 12px 0 0 !important;
  border: none;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  color: #fff !important;
  font-size: 1.2rem !important;
}
.btn-close { filter: brightness(0) invert(1) !important; opacity: 0.75 !important; }
.modal-body {
  padding: 26px 28px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.82;
}
.modal-body b { color: var(--primary); }
.modal-footer { padding: 16px 28px; border-top: 1px solid var(--border); }
.modal-content { border-radius: var(--radius) !important; overflow: hidden; }

/* ===== Footer ===== */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-brand-img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
  max-width: 260px;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: all 0.22s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.footer-links a::before {
  content: '';
  width: 10px; height: 1px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: all 0.2s;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links a:hover::before { width: 16px; background: var(--gold); }
.footer-info-row {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-info-row i { color: var(--gold); flex-shrink: 0; font-size: 14px; margin-top: 1px; }
.footer-info-row a { color: rgba(255,255,255,0.50); }
.footer-info-row a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== WA Float ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s var(--ease-bounce);
}
.wa-float i { color: #fff; font-size: 27px; position: relative; z-index: 1; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0; border-radius: 50%;
  background: #25d366;
  opacity: 0.45;
  animation: waPing 2.2s ease-out infinite;
}
@keyframes waPing { 0%{transform:scale(1);opacity:0.45;} 100%{transform:scale(1.75);opacity:0;} }
.wa-float:hover { transform: scale(1.12); }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 31px;
  z-index: 998;
  width: 40px; height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.back-to-top.active-btt { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-mid); color: #fff; transform: translateY(-3px); }

/* ===== WOW ===== */
.wow { visibility: hidden; }

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(7,16,31,0.97);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .lang-dropdown-wrap { margin-top: 10px; }
  .about-media { margin-bottom: 48px; }
  .about-media img { height: 380px; }
  .about-badge-card { right: 8px; }
  .vm-panel { margin-bottom: 24px; }
  .contact-info-card { margin-bottom: 24px; }
}
@media (max-width: 767.98px) {
  .section-py { padding: 72px 0; }
  .hero-stats-row { gap: 18px 28px; }
  .hstat-num { font-size: 1.6rem; }
  .legal-card, .form-card, .contact-info-card { padding: 28px 22px; }
  .about-media img { height: 300px; }
  .vm-panel { padding: 32px 24px; }
}
@media (max-width: 575.98px) {
  #home { padding: 100px 0 70px; }
  .hero-title { font-size: 2rem; }
  .hero-cta-wrap { flex-direction: column; }
  .btn-gv-gold, .btn-gv-outline { justify-content: center; }
  .legal-card { padding: 24px 18px; }
}
