/* ===========================
   DURGA BALAJI ASTROLOGY
   Premium Dark Royal Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07B30;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --maroon: #6B1A2A;
  --maroon-dark: #4A0F1C;
  --maroon-light: #8B2A3C;
  --black: #0A0608;
  --dark-bg: #0D0A0F;
  --dark-card: #12101A;
  --dark-card2: #1A1525;
  --dark-border: rgba(201, 168, 76, 0.2);
  --white: #FFFFFF;
  --cream: #F5F0E8;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-light: rgba(255, 255, 255, 0.85);
  --gradient-gold: linear-gradient(135deg, #C9A84C, #E8C96A, #A07B30);
  --gradient-dark: linear-gradient(135deg, #0D0A0F, #1A1525, #0D0A0F);
  --gradient-maroon: linear-gradient(135deg, #4A0F1C, #6B1A2A, #8B2A3C);
  --gradient-hero: linear-gradient(135deg, #0A0608 0%, #1A0A1A 30%, #0D1428 60%, #0A0608 100%);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.3);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* ===========================
   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: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ===========================
   PRELOADER
   =========================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 120px;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.preloader-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 20px;
  letter-spacing: 4px;
  animation: fadeIn 1s ease 0.5s both;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 1px;
  margin-top: 20px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 1px;
  animation: loading-bar 2s ease forwards;
}

@keyframes loading-bar {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.5)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.9)); transform: scale(1.05); }
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 6, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.nav-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

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

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

.btn-call-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-call-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 6, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  animation: menuSlideIn 0.3s ease;
}

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu .nav-link {
  font-size: 1.4rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before, .section-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 100px;
}

.gold-divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(200%) skewX(-15deg);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.6);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 0 var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.btn-call {
  background: var(--gradient-maroon);
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 6px 25px rgba(107, 26, 42, 0.4);
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(107, 26, 42, 0.6);
}

/* Ripple */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to { transform: scale(4); opacity: 0; }
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* ===========================
   ANIMATION CLASSES
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible, .fade-left.visible, .fade-right.visible, .zoom-in.visible {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(20, 10, 40, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(107, 26, 42, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}

/* Stars particle field */
.stars-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107, 26, 42, 0.25) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(100, 50, 200, 0.15) 0%, transparent 70%);
  top: 60%;
  right: 5%;
  animation-delay: 5s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 24px 60px;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  width: fit-content;
}

.hero-headline {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.hero-headline .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

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

.hero-divider-line {
  height: 1px;
  width: 60px;
  background: var(--gold);
}

.hero-divider-text {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag {
  padding: 5px 14px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold-light);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

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

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-zodiac-ring {
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  animation: rotate-ring 30s linear infinite;
}

.hero-zodiac-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-astrologer-img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(201, 168, 76, 0.15);
  animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-floating-card {
  position: absolute;
  background: rgba(10, 6, 8, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float-card 4s ease-in-out infinite;
}

.hero-floating-card:nth-child(3) {
  bottom: 20%;
  left: -5%;
  animation-delay: 1s;
}

.hero-floating-card:nth-child(4) {
  top: 20%;
  right: -8%;
  animation-delay: 2.5s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}

.hero-floating-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.hero-floating-value {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201, 168, 76, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.scroll-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===========================
   WHY CHOOSE US STRIP
   =========================== */
.features-strip {
  background: rgba(201, 168, 76, 0.05);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 60px 0;
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-strip-item:hover {
  background: rgba(201, 168, 76, 0.06);
}

.feature-strip-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
}

.feature-strip-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.feature-strip-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===========================
   ABOUT SECTION (HOME)
   =========================== */
.about-home {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #100B18 50%, var(--dark-bg) 100%);
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-home-image {
  position: relative;
}

.about-home-image-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-home-image-inner img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-gold);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.about-image-badge-number {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  display: block;
  line-height: 1;
}

.about-image-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-home-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-home-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.9;
}

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

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about-feature-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.about-feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0F0B15 50%, var(--dark-bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(145deg, rgba(26, 21, 37, 0.8), rgba(18, 16, 26, 0.9));
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 76, 0.12);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(201, 168, 76, 0.15);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  transform: scale(1.05);
}

.service-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
}

.service-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.btn-learn-more {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-learn-more:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.btn-wa-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-wa-small:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.services-cta {
  text-align: center;
  margin-top: 60px;
}

/* ===========================
   STATS / COUNTERS SECTION
   =========================== */
.stats-section {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, #0D0A0F 40%, var(--maroon-dark) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 168, 76, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   FEATURES CARDS SECTION
   =========================== */
.features-section {
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(26, 21, 37, 0.7), rgba(18, 16, 26, 0.8));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.1);
  transform: translateY(-5px);
}

.feature-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
  background: rgba(201, 168, 76, 0.15);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.feature-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.feature-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #100B18 100%);
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 20px;
}

.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--dark-card2), var(--dark-card));
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

.process-step:hover .process-step-number {
  background: var(--gradient-gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

.process-step-icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.process-step-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.process-step-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #100B18 100%);
  overflow: hidden;
}

.testimonials-slider {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
  background: linear-gradient(145deg, rgba(26, 21, 37, 0.8), rgba(18, 16, 26, 0.9));
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}

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

.testimonial-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  word-break: break-word;
  overflow-wrap: break-word;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

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

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(26, 21, 37, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.08);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-question {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition-fast);
}

.faq-item.open .faq-question {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-body {
  max-height: 300px;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0D0A12 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(26, 21, 37, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  display: block;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.contact-info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  height: 200px;
  background: rgba(26, 21, 37, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(26, 21, 37, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-title span {
  color: var(--gold);
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 6, 8, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.03);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

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

/* ===========================
   FLOATING BUTTONS
   =========================== */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: visible;
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  background: rgba(10, 6, 8, 0.9);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid rgba(201, 168, 76, 0.2);
  opacity: 0;
  transform: translateX(5px);
  transition: var(--transition-fast);
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

.float-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.float-call {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 5px 20px rgba(201, 168, 76, 0.4);
}

.float-book {
  background: var(--gradient-maroon);
  color: white;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 5px 20px rgba(107, 26, 42, 0.4);
}

.float-top {
  background: rgba(26, 21, 37, 0.9);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: none;
}

.float-top.visible {
  display: flex;
}

/* Mobile bottom bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 6, 8, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 10px 16px;
  gap: 10px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #070507;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-link::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  min-height: 45vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: flex-end;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.page-hero-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 5;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: rgba(201, 168, 76, 0.5);
}

.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  font-style: italic;
}

/* ===========================
   ABOUT PAGE SPECIFIC
   =========================== */
.founder-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #100B18 100%);
}

.founder-card {
  background: linear-gradient(145deg, rgba(26, 21, 37, 0.7), rgba(18, 16, 26, 0.9));
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.founder-image-frame {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: calc(var(--radius) + 8px);
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-name {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.founder-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.founder-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.founder-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
}

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

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-sm);
}

.qualification-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.qualification-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
}

.qualification-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Vision/Mission cards */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.vmv-card {
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.vmv-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
}

.vmv-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.vmv-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.vmv-list {
  list-style: none;
  text-align: left;
  width: 100%;
}

.vmv-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vmv-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

/* ===========================
   SERVICES PAGE SPECIFIC
   =========================== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, #12091A 50%, var(--maroon-dark) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-banner-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  max-width: 700px;
}

.cta-banner-title span {
  color: var(--gold);
}

.cta-banner-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 500px;
}

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

/* ===========================
   PARALLAX ELEMENTS
   =========================== */
.parallax-element {
  will-change: transform;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }

  .features-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-home-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-item:nth-child(3)::after {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-steps::before {
    display: none;
  }

  .testimonials-track {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
    padding: 24px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .vmv-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

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

  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 20px 80px;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    align-items: center;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-badge {
    margin: 0 auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-services-list {
    justify-content: center;
  }

  .features-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item::after {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 24px 18px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    justify-content: center;
  }

  .floating-btns {
    bottom: 85px;
    right: 12px;
    gap: 8px;
  }

  /* Compact floating buttons on mobile to avoid overlapping page content */
  .floating-btns .float-call,
  .floating-btns .float-wa {
    display: none !important;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  .mobile-bottom-bar .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.8rem;
  }

  .btn-call-nav, .btn-wa-nav {
    display: none;
  }

  .nav-actions .btn-call-nav {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-container {
    padding: 0 16px;
  }

  .hero-astrologer-img {
    max-height: 420px;
    object-fit: cover;
    object-position: top;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
}

/* ===========================
   UTILITY ANIMATIONS
   =========================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Glow pulse for icons */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 30px rgba(201, 168, 76, 0.6); }
}

.glow-animate {
  animation: glow-pulse 3s ease-in-out infinite;
}

/* Text shimmer */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Zodiac symbols decoration */
.zodiac-decor {
  position: absolute;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  user-select: none;
}

/* Selection color */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--white);
}

/* Smooth hover box shadow transition for all interactive cards */
.service-card, .feature-card, .testimonial-card, .faq-item, .about-feature-item, .contact-info-card {
  will-change: transform, box-shadow;
}

/* ===========================
   MOBILE POPUP & ANIMATION FIXES
   =========================== */

/* Success popup – mobile optimized */
#successPopup {
  -webkit-backdrop-filter: blur(12px);
}

#successPopup > div {
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Popup inner card responsive */
@media (max-width: 480px) {
  #successPopup > div {
    padding: 28px 20px !important;
    border-radius: 18px !important;
  }
  #successPopup h2 {
    font-size: 1.2rem !important;
  }
  #successPopup p {
    font-size: 0.85rem !important;
  }
  #popupWaBtn, #popupCloseBtn {
    font-size: 0.85rem !important;
    padding: 12px 16px !important;
    min-width: 0 !important;
    width: 100% !important;
  }
}

/* Service modal mobile */
#serviceModal > div {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#serviceModal > div::-webkit-scrollbar {
  display: none;
}

/* Mobile: reduce animation intensity */
@media (max-width: 768px) {
  /* Reduce transform distance for fade animations */
  .fade-up {
    transform: translateY(24px);
  }
  .fade-left {
    transform: translateX(-24px);
  }
  .fade-right {
    transform: translateX(24px);
  }
  .zoom-in {
    transform: scale(0.92);
  }

  /* Disable heavy ring rotation on mobile */
  .hero-zodiac-ring {
    animation: none;
    border: none;
  }
  .hero-zodiac-ring::before {
    border: none;
  }

  /* Prevent zodiac decor from causing overflow */
  .zodiac-decor {
    display: none;
  }

  /* Orbs: smaller and simpler on mobile */
  .orb-1 { width: 160px; height: 160px; }
  .orb-2 { width: 120px; height: 120px; }
  .orb-3 { width: 100px; height: 100px; }

  /* Hero floating cards: ensure no overflow */
  .hero-floating-card {
    display: none !important;
  }

  /* Touch tap sizes: minimum 44px */
  .btn, .float-btn, .slider-btn, .social-btn, .btn-wa-small {
    min-height: 44px;
    min-width: 44px;
  }

  /* Mobile bottom bar: ensure proper safe-area */
  .mobile-bottom-bar {
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  /* Floating buttons: adjust for mobile bottom bar */
  .floating-btns {
    bottom: 90px;
  }

  .testimonials-track {
    gap: 16px;
  }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 14px;
    gap: 14px;
    flex-shrink: 0;
  }
  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .contact-info-card {
    padding: 16px;
    gap: 12px;
  }

  .contact-info-value {
    font-size: 0.85rem;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  /* Services grid: single column on small mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Contact grid: full width */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Process steps: single column */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-steps::before {
    display: none;
  }

  /* FAQ: readable on mobile */
  .faq-question {
    font-size: 0.88rem;
  }

  /* Footer: single column */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Section padding reduced on mobile */
  .section {
    padding: 56px 0;
  }

  /* Stats grid: 2 columns on mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-item::after { display: none; }
  .stat-number { font-size: 2rem; }

  /* Features: 2 col on small mobile */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feature-card {
    padding: 20px 14px;
  }

  /* About badge: reposition */
  .about-image-badge {
    right: 0;
    bottom: -10px;
  }

  /* Hero headline: no overflow */
  .hero-headline {
    word-break: break-word;
    hyphens: auto;
  }

  /* Prevent any horizontal scroll */
  .hero, .stats-section, .features-strip, .cta-banner {
    overflow-x: hidden;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .hero-headline { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .btn { padding: 11px 18px; font-size: 0.82rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* iOS rubber-band scroll fix */
body {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
