/* ==========================================================================
   Modern Astrology & Kundli Template - Main Stylesheet
   ========================================================================== */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* 2. Custom CSS Variables */
:root {
  /* Colors */
  --primary-color: #D4AF37; /* Metallic Gold */
  --primary-glow: rgba(212, 175, 55, 0.3);
  --secondary-color: #7C3AED; /* Vibrant Violet */
  --secondary-glow: rgba(124, 58, 237, 0.25);
  --bg-dark: #020617; /* Midnight Slate Blue */
  --bg-deep: #0B0F19; /* Cosmic Deep Grey/Blue */
  --bg-card: rgba(15, 23, 42, 0.5); /* Glassmorphism card */
  --text-light: #F8FAFC; /* Crisp White */
  --text-muted: #94A3B8; /* Slate Light */
  --accent-color: #F59E0B; /* Amber Gold */
  --success-color: #22C55E; /* Emerald Green */
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-glass: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout/Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 12px;
  --border-radius-lg: 24px;
}

/* 3. Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Base Body Stars Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(27, 18, 48, 0.5) 0%, rgba(2, 6, 23, 0.95) 100%);
  z-index: -2;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* 4. Global Typography & Clamp Utilities */
h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

h2 span {
  color: var(--primary-color);
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

h2::after {
  content: '✦';
  display: block;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
  text-shadow: 0 0 8px var(--primary-color);
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--primary-color);
}

/* 5. Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gold { color: var(--primary-color); }
.text-violet { color: var(--secondary-color); }
.text-muted { color: var(--text-muted); }

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #020617;
  border: none;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* 6. Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: var(--bg-dark);
  padding: 0.5rem 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--text-light) 60%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  color: var(--primary-color);
  filter: drop-shadow(0 0 5px var(--primary-glow));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-phone:hover {
  color: var(--primary-color);
}

/* Mobile Menu Hamburger Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 1.5rem;
  z-index: 1001;
}

/* 7. Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-title {
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* 8. Quick Consultation Form Section */
.quick-booking-section {
  padding: 4rem 0;
  margin-top: -80px;
  position: relative;
  z-index: 20;
}

.quick-form-wrapper {
  padding: 2.5rem;
  border: 1px solid var(--border-gold);
  background: rgba(11, 15, 25, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 180px;
  gap: 1.5rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  color: var(--text-light);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-control::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

/* 9. About Section (Home / Main) */
.about {
  padding: 8rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.3);
  pointer-events: none;
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
  border: 2px solid var(--primary-color);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: floating 3s ease-in-out infinite alternate;
}

.experience-years {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.experience-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-tag {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
}

.about-title {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
}

.about-desc {
  color: var(--text-muted);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

/* 10. Services Section */
.services-section {
  padding: 8rem 0;
  background: var(--bg-deep);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
  color: #020617;
  transform: rotate(360deg);
  box-shadow: 0 0 15px var(--primary-color);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary-color);
  align-self: flex-start;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--text-light);
}

/* 11. Kundli Highlights Section */
.kundli-highlights {
  padding: 8rem 0;
  position: relative;
}

.kundli-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.kundli-card {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kundli-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
  z-index: -1;
}

.kundli-card h4 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.kundli-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* 12. Why Choose Us Section */
.why-choose-us {
  padding: 8rem 0;
  background: var(--bg-deep);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
}

.why-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  flex-shrink: 0;
  text-shadow: 0 0 10px var(--primary-glow);
}

.why-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

/* 13. Consultation Process Timeline */
.process-section {
  padding: 8rem 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--primary-color) 15%, var(--primary-color) 85%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-number {
  position: absolute;
  top: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  z-index: 10;
  box-shadow: 0 0 15px var(--primary-glow);
}

.timeline-item:nth-child(odd) .timeline-number {
  right: -22px;
}

.timeline-item:nth-child(even) .timeline-number {
  left: -22px;
}

.timeline-content {
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.timeline-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* 14. Gallery Grid & Lightbox Section */
.gallery-section {
  padding: 8rem 0;
  background: var(--bg-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay-icon {
  font-size: 2rem;
  color: var(--primary-color);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-overlay-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1rem;
  letter-spacing: 1.5px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon,
.gallery-item:hover .gallery-overlay-text {
  transform: translateY(0);
}

/* 15. Testimonials Section (Swiper Slider) */
.testimonials {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-card {
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 0.9rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1 !important;
  box-shadow: 0 0 8px var(--primary-color);
}

/* 16. Detailed Consultation Booking Page */
.booking-section {
  padding: 8rem 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.booking-form-wrapper {
  padding: 3.5rem;
}

.booking-headline {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.booking-subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.booking-grid-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.booking-grid-fields .form-group-full {
  grid-column: span 2;
}

.booking-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-box {
  padding: 2.5rem;
}

.info-box-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-box-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.info-box-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 0.75rem;
}

.info-box-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-box-item .day {
  font-weight: 500;
}

.info-box-item .time {
  color: var(--text-muted);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.open {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* 17. FAQ Accordion Layout */
.faq-section {
  padding: 8rem 0;
}

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

.faq-item {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-gold);
  background: rgba(15, 23, 42, 0.7);
}

.faq-trigger {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: transform 0.4s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: rgba(2, 6, 23, 0.4);
}

.faq-content p {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 18. Contact & Map Section */
.contact-section {
  padding: 8rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.contact-card-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.contact-card-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-btn:hover {
  color: var(--bg-dark);
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
  transform: translateY(-3px);
}

.contact-map-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  height: 450px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.9) invert(0.9) contrast(1.2);
}

/* 19. Footer Section */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-gold);
  padding: 6rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.footer-heading {
  font-size: 1.15rem;
  color: var(--primary-color);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* 20. Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 15px var(--primary-glow);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition-smooth);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: var(--accent-color);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

/* 21. Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* 22. Site Loader */
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 80px;
  height: 80px;
  border: 3px solid transparent;
  border-top-color: var(--primary-color);
  border-bottom-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  position: relative;
}

.loader-spinner::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  font-size: 1.5rem;
  text-shadow: 0 0 10px var(--primary-color);
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

.loader-text {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-top: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  animation: pulse-glow 1.5s ease-in-out infinite alternate;
}

/* ==========================================================================
   End of css/style.css
   ========================================================================== */
