/* ============================================
   CSS CUSTOM PROPERTIES — DESIGN SYSTEM
   ============================================ */
:root {
  --bg: #0B0B0B;
  --surface-1: #131313;
  --surface-2: #1A1A1A;
  --surface-3: #242424;
  --gold: #D4A84B;
  --gold-light: #E8C97A;
  --gold-dark: #A67C2E;
  --gold-pale: #F5E6BA;
  --text: #D4C5A0;
  --text-muted: #8A7A5A;
  --text-light: #B8A88A;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Plus Jakarta Sans', sans-serif;
  --container-max: 1200px;
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY — Shared Section Patterns
   ============================================ */
.section-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.section-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
}

section {
  padding: 80px 0;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
}
.preloader-logo small {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}
.preloader-bar-track {
  width: 200px;
  height: 3px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
}
.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 4px;
  animation: preloaderFill 1.8s ease-in-out forwards;
}
@keyframes preloaderFill {
  0% { width: 0%; }
  40% { width: 45%; }
  70% { width: 75%; }
  100% { width: 100%; }
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--surface-1);
  padding: 8px 0;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(212, 168, 75, 0.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.topbar-item i {
  color: var(--gold);
  font-size: 0.65rem;
}
.topbar-sep {
  color: var(--gold-dark);
  opacity: 0.5;
  font-size: 0.6rem;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-social {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition);
}
.topbar-social:hover {
  color: var(--gold);
}
.topbar-social.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}
.topbar-social svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 75, 0.06);
  transition: padding var(--transition), background var(--transition);
  padding: 12px 0;
}
.header-shrunk {
  padding: 6px 0;
  background: rgba(11, 11, 11, 0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}
.logo span {
  color: var(--gold);
}
.logo small {
  display: block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-btn {
  margin-left: 4px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 168, 75, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: rgba(212, 168, 75, 0.1);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--surface-1);
  z-index: 9999;
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(212, 168, 75, 0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .nav-link {
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mobile-menu .btn-primary {
  justify-content: center;
  margin-top: 8px;
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 75, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 75, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(212, 168, 75, 0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(212, 168, 75, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-tag {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 580px;
  animation: fadeUp 0.8s 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s both;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.8s both;
}
.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

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

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  background: var(--surface-1);
  border-top: 2px solid var(--gold-dark);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 20px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
}
.about-feature i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.about-feature strong {
  color: var(--white);
  font-weight: 600;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-2);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.about-sig-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 75, 0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.about-sig-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.about-sig-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* About Image */
.about-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-image-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(212, 168, 75, 0.1);
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-image-gold-bar {
  width: 100%;
  max-width: 400px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -4px;
  position: relative;
  z-index: 2;
}
.about-image-frame svg {
  width: 100%;
  height: 100%;
}
.about-exp {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 32px rgba(212, 168, 75, 0.25);
}
.about-exp-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--bg);
  line-height: 1;
}
.about-exp-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--surface-1);
}
.services-header {
  text-align: center;
  margin-bottom: 48px;
}
.services-header .section-body {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface-2);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 168, 75, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 75, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  background: rgba(212, 168, 75, 0.05);
}
.service-card h3 {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   PLANS
   ============================================ */
.plans-header {
  text-align: center;
  margin-bottom: 48px;
}
.plans-header .section-body {
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.plan-card {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid rgba(212, 168, 75, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}
.plan-card:hover {
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  background: linear-gradient(180deg, var(--surface-2) 0%, rgba(212, 168, 75, 0.04) 100%);
  box-shadow: 0 0 40px rgba(212, 168, 75, 0.08);
}
.plan-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.plan-badge {
  display: inline-block;
  align-self: center;
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  text-transform: uppercase;
}
.plan-badge.promo {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.plan-name {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.2;
}
.price-amount .price-currency {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}
.price-period {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.plan-divider {
  width: 40px;
  height: 2px;
  background: var(--gold-dark);
  margin: 4px auto;
  border-radius: 2px;
}
.plan-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.plan-features li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.btn-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-top: auto;
}
.btn-plan-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-plan-outline:hover {
  background: rgba(212, 168, 75, 0.1);
  transform: translateY(-2px);
}
.btn-plan-filled {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg);
  border: none;
}
.btn-plan-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 168, 75, 0.3);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--surface-1);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.carousel-wrapper {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: var(--surface-2);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 168, 75, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.carousel-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.carousel-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.carousel-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.carousel-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212, 168, 75, 0.08);
  flex-shrink: 0;
}
.carousel-author-name {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.carousel-author-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dark);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.carousel-btn:hover {
  background: rgba(212, 168, 75, 0.1);
  border-color: var(--gold);
}
.carousel-btn i {
  font-size: 0.85rem;
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface-3);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 28px;
}
.contact-card {
  background: var(--surface-2);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 168, 75, 0.06);
  transition: border-color var(--transition);
}
.contact-card:hover {
  border-color: rgba(212, 168, 75, 0.15);
}
.contact-card-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-card-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-card-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 75, 0.08);
  margin-top: 16px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 200px;
  display: block;
  filter: grayscale(0.8) invert(0.9) brightness(0.7);
}

.contact-form-wrap {
  background: var(--surface-2);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 168, 75, 0.06);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  justify-content: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
.cta-section .section-body {
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta-section .btn-primary {
  font-size: 0.9rem;
  padding: 14px 36px;
}
.cta-section .btn-primary i {
  font-size: 1rem;
}
.cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cta-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-tag i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* QR Code */
.cta-qr-wrapper {
  text-align: center;
}
.cta-qr-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cta-qr-box {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: #111111;
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.cta-qr-image-wrap {
  position: relative;
  width: 150px;
  height: 150px;
}
.cta-qr-image {
  display: block;
  width: 150px;
  height: 150px;
}
.cta-qr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.cta-qr-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111111;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 1.5px solid var(--gold);
}
.cta-qr-icon i {
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface-1);
  border-top: 1px solid rgba(212, 168, 75, 0.06);
  padding-top: 60px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo {
  margin-bottom: 12px;
  display: inline-block;
}
.footer-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-social a.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}
.footer-social a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-title {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-bottom strong {
  color: var(--text-light);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
  box-shadow: 0 4px 20px rgba(212, 168, 75, 0.25);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(212, 168, 75, 0.35);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-card.featured {
    transform: scale(1);
  }
  .plan-card.featured:hover {
    transform: translateY(-4px);
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .plan-card.featured {
    transform: scale(1);
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .carousel-card {
    flex: 0 0 calc(100% - 40px);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 80vh;
    padding: 100px 0 80px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .topbar-left {
    font-size: 0.65rem;
    gap: 6px;
  }
  .topbar-right {
    gap: 6px;
  }
  .stats-grid {
    gap: 16px;
  }
  .stat-num {
    font-size: 2rem;
  }
  .stat-suffix {
    font-size: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
  .cta-contact {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
