/* === Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: #F5F2E9; color: #3a2018; overflow-x: hidden; }

/* === Custom Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #e8dcc4; }
::-webkit-scrollbar-thumb { background: #9a5838; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #6a4020; }

/* === Primary CTA Button (warm brown gradient) === */
.btn-gold-gradient {
  background: linear-gradient(135deg, #9a5838 0%, #b89040 25%, #9a5838 50%, #6a4020 75%, #9a5838 100%);
  background-size: 300% 300%;
  animation: warmShimmer 4s ease infinite;
  color: #F5F2E9;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.btn-gold-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(154,88,56,0.35);
}
@keyframes warmShimmer {
  0%   { background-position: 0% 50%; }
  50%   { background-position: 100% 50%; }
  100%   { background-position: 0% 50%; }
}

/* === Outline Button === */
.btn-gold-outline {
  border: 1.5px solid #9a5838;
  color: #9a5838;
  background: transparent;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.btn-gold-outline:hover {
  background: #9a5838;
  color: #F5F2E9;
  box-shadow: 0 8px 32px rgba(154,88,56,0.25);
}

/* === Card === */
.glass-card {
  background: #ffffff;
  border: 1px solid rgba(154,88,56,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-card:hover {
  border-color: rgba(184,144,64,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1), 0 0 32px rgba(184,144,64,0.1);
}

/* === Framed Images === */
.gold-frame { transition: box-shadow 0.4s ease; }
.gold-frame:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

/* === Divider === */
.gold-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.gold-divider::before, .gold-divider::after {
  content: ''; height: 1px; width: 80px;
  background: linear-gradient(90deg, transparent, #b89040, transparent);
}

/* === Scroll Animations === */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* === Form Inputs === */
.form-input {
  background: #ffffff;
  border: 1.5px solid rgba(154,88,56,0.25);
  color: #3a2018;
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: #9a5838;
  box-shadow: 0 0 0 3px rgba(154,88,56,0.12);
}
.form-input::placeholder { color: #b8a080; }

/* === Star Rating === */
.stars { color: #b89040; letter-spacing: 2px; }

/* === Google Translate — hide all branding === */
body > .skiptranslate { display: none !important; }
body { top: 0 !important; }

/* === Custom Language Selector === */
.lang-selector .lang-option.active { background: #e8dcc4; }
#lang-dropdown { animation: langFadeIn 0.15s ease-out; }
@keyframes langFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
#lang-dropdown::-webkit-scrollbar { width: 4px; }
#lang-dropdown::-webkit-scrollbar-thumb { background: #e8dcc4; border-radius: 2px; }

/* === Nav Links === */
.nav-link {
  position: relative; color: #b8a080; transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: #b89040; transition: width 0.3s ease;
}
.nav-link:hover { color: #F5F2E9; }
.nav-link:hover::after { width: 100%; }
.nav-link.active-link { color: #F5F2E9; }
.nav-link.active-link::after { width: 100%; }
.nav-link.active { color: #F5F2E9; font-weight: 500; }

/* === Mobile Menu === */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { transform: translateX(0); }

/* === Counter === */
.stat-number { font-variant-numeric: tabular-nums; }

/* === Hero Overlay === */
.hero-overlay {
  background: linear-gradient(135deg,
    rgba(245,242,233,0.88) 0%,
    rgba(245,242,233,0.85) 40%,
    rgba(245,242,233,0.80) 100%);
}

/* === Quote Marks === */
.gold-quote {
  font-family: 'Cormorant Garamond', serif;
  color: #b89040; opacity: 0.5; line-height: 1;
}

/* === Glow Text === */
.text-gold-glow { text-shadow: 0 0 40px rgba(184,144,64,0.25); }

/* === Section Padding === */
.section-padding { padding: 100px 0; }

/* === Spinner === */
.spinner {
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  width: 20px; height: 20px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === Stagger Children === */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }

/* === Tilt Card === */
.tilt-card { transform-style: preserve-3d; will-change: transform; }
.tilt-card:hover { transform: none; }

/* === Offering Cards === */
.offering-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(154,88,56,0.15), 0 8px 24px rgba(0,0,0,0.08);
}

/* === Sticky Contact Button === */
#sticky-contact-btn {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 400; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px;
  background: linear-gradient(180deg, #9a5838 0%, #b89040 50%, #9a5838 100%);
  background-size: 100% 300%; animation: warmShimmer 4s ease infinite;
  color: #fff; border: none; border-radius: 10px 0 0 10px;
  cursor: pointer; box-shadow: -2px 0 12px rgba(154,88,56,0.3);
  transition: box-shadow 0.3s ease, padding-right 0.3s ease;
}
#sticky-contact-btn:hover {
  box-shadow: -4px 0 20px rgba(154,88,56,0.5);
  padding-right: 11px;
}
#sticky-contact-btn i { font-size: 15px; }
#sticky-contact-btn span {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed;
}

/* === Modal === */
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
#contact-modal-overlay { display: none; }
#contact-modal-overlay.open { display: flex; }
#contact-modal::-webkit-scrollbar { width: 6px; }
#contact-modal::-webkit-scrollbar-track { background: #F5F2E9; border-radius: 0 20px 20px 0; }
#contact-modal::-webkit-scrollbar-thumb { background: #9a5838; border-radius: 3px; }

/* === Google Translate — hide default toolbar === */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

/* === Page Header (inner pages) === */
.page-header {
  background: linear-gradient(135deg, #6a4020 0%, #9a5838 50%, #b89040 100%);
  padding-top: 8rem; padding-bottom: 4rem;
}

.prose strong { color: #3a2018; }

.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a2018;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3a2018;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.prose ul {
  margin-bottom: 1rem;
}
.prose ul li {
  padding: 0.25rem 0;
}
.prose hr {
  border-color: rgba(154,88,56,0.2);
  margin: 1.5rem 0;
}

/* === Services Page Cards === */
.svc-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 18px;
  border-top: 3px solid transparent;
  transition: box-shadow 0.3s ease;
}
.svc-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
