/* =====================================================
   Kodaikanal Call Girls - Dark Sapphire Blue + Gold Theme
   ===================================================== */

/* --- CSS Variables --- */
:root {
  --body-bg: #060E1A;
  --primary: #0F3D6B;
  --alt-container: #0B2640;
  --footer-bg: #040A12;
  --gold: #D4A843;
  --light-gold: #E8C96A;
  --heading-color: #D4A843;
  --body-text: #C8D6E5;
  --bold-color: #E8C96A;
  --link-color: #D4A843;
  --muted: #7B8FA3;
  --card-bg: #0F3D6B;
  --card-border: rgba(212,168,67,0.3);
  --card-hover-border: #D4A843;
  --btn-primary-bg: #D4A843;
  --btn-primary-text: #060E1A;
  --btn-primary-hover: #E8C96A;
  --input-bg: #0B2640;
  --input-focus-border: #D4A843;
  --whatsapp-bg: #25D366;
  --scrollbar-track: #060E1A;
  --scrollbar-thumb: #0F3D6B;
  --scrollbar-hover: #D4A843;
  --selection-bg: #D4A843;
  --selection-text: #060E1A;
  --popup-bg: #0F3D6B;
  --popup-border: #D4A843;
  --popup-overlay: rgba(6,14,26,0.95);
  --hero-gradient-start: #060E1A;
  --hero-gradient-mid: #0F3D6B;
  --hero-gradient-end: #0A2A4A;
  --location-btn-bg: #0B2640;
  --dropdown-bg: #0B2640;
  --dropdown-hover: #0F3D6B;
}

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

::selection { background: var(--selection-bg); color: var(--selection-text); }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--body-bg);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--scrollbar-track); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-thumb); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-hover); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Times New Roman', Georgia, serif;
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--light-gold); }

strong, b { color: var(--bold-color); }

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

/* --- Gold Separator Line --- */
.gold-separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem 0;
  border: none;
}

/* --- 18+ Age Verification Popup --- */
.age-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--popup-overlay);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.age-popup {
  background: var(--popup-bg);
  border: 2px solid var(--popup-border);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: scaleIn 0.3s ease;
}
.age-popup h2 { color: var(--gold); margin-bottom: 1rem; font-size: 1.8rem; }
.age-popup p { color: var(--body-text); margin-bottom: 1.5rem; }
.age-popup .btn-group { display: flex; gap: 1rem; justify-content: center; }
.age-popup .btn-yes {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}
.age-popup .btn-yes:hover { background: var(--btn-primary-hover); box-shadow: 0 0 15px rgba(212,168,67,0.5); }
.age-popup .btn-no {
  background: transparent;
  color: var(--muted);
  padding: 0.75rem 2rem;
  border: 1px solid var(--muted);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}
.age-popup .btn-no:hover { border-color: #ff4444; color: #ff4444; }

/* --- Navbar --- */
.main-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(6,14,26,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}
.main-navbar.scrolled {
  padding: 0.35rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.navbar-brand-text {
  font-family: 'Times New Roman', serif;
  color: var(--gold) !important;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: font-size 0.3s;
}
.main-navbar.scrolled .navbar-brand-text { font-size: 1.2rem; }

.nav-link-custom {
  color: var(--body-text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold) !important;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 80%;
}

/* Location Dropdown */
.dropdown-menu-custom {
  background: var(--dropdown-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
}
.dropdown-item-custom {
  color: var(--body-text);
  padding: 0.5rem 1.25rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dropdown-item-custom:hover {
  background: var(--dropdown-hover);
  color: var(--gold);
}

/* Hamburger */
.navbar-toggler-custom {
  border: 1px solid var(--gold);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler-custom .fa-bars { color: var(--gold); font-size: 1.2rem; }

/* Mobile nav slide */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0; right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--body-bg);
    border-left: 1px solid var(--card-border);
    padding: 5rem 1.5rem 2rem;
    transition: right 0.35s ease;
    z-index: 9998;
    overflow-y: auto;
  }
  .navbar-collapse.show { right: 0; }
  .nav-close-btn {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none; border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
  }
  .nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9997;
    display: none;
  }
  .nav-overlay.show { display: block; }
}

/* --- Hero Section --- */
.hero-section {
  background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-mid), var(--hero-gradient-end));
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(15,61,107,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-title {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(212,168,67,0.3);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--body-text);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-section { min-height: 70vh; }
}

/* --- Buttons --- */
.btn-gold {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--btn-primary-hover);
  color: var(--btn-primary-text);
  box-shadow: 0 0 20px rgba(212,168,67,0.4);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--btn-primary-text);
  box-shadow: 0 0 20px rgba(212,168,67,0.4);
  transform: translateY(-2px);
}

.btn-call {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-call:hover {
  background: var(--btn-primary-hover);
  box-shadow: 0 0 15px rgba(212,168,67,0.5);
  transform: translateY(-2px);
  color: var(--btn-primary-text);
}

.btn-whatsapp {
  background: var(--whatsapp-bg);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 0 15px rgba(37,211,102,0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* --- Section Styles --- */
.section-padding {
  padding: 5rem 0;
}
.section-alt {
  background: var(--alt-container);
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* --- Feature Cards --- */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: 0 0 25px rgba(212,168,67,0.2);
  transform: translateY(-5px);
}
.feature-card .icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.feature-card p {
  color: var(--body-text);
  font-size: 0.95rem;
}

/* --- Profile Cards --- */
.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.profile-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: 0 0 30px rgba(212,168,67,0.3);
  transform: scale(1.03);
}
.profile-card .profile-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 120%;
}
.profile-card .profile-img-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.profile-card:hover .profile-img-wrapper img { transform: scale(1.08); }
.profile-card .profile-info {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.profile-card .profile-name {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: 'Times New Roman', serif;
}
.profile-card .profile-tag {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.profile-card .btn-book {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
}
.profile-card .btn-book:hover {
  background: var(--btn-primary-hover);
  box-shadow: 0 0 15px rgba(212,168,67,0.5);
}

/* --- Testimonial Carousel --- */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 2rem;
}
.testimonial-inner {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}
.testimonial-inner .stars {
  color: var(--gold);
  margin-bottom: 1rem;
}
.testimonial-inner .quote {
  font-style: italic;
  color: var(--body-text);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.testimonial-inner .author {
  color: var(--gold);
  font-weight: 700;
}
.testimonial-inner .author-loc {
  color: var(--muted);
  font-size: 0.9rem;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--gold);
  width: 45px; height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--btn-primary-text);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--card-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* --- Location Buttons --- */
.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--location-btn-bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.location-btn:hover {
  background: var(--gold);
  color: var(--btn-primary-text);
  box-shadow: 0 0 15px rgba(212,168,67,0.3);
  transform: translateY(-3px);
}
.location-btn i { font-size: 1.2rem; }

/* --- Breadcrumbs --- */
.breadcrumb-section {
  background: var(--alt-container);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--card-border);
  margin-top: 70px;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.breadcrumb-list li {
  color: var(--muted);
  font-size: 0.9rem;
}
.breadcrumb-list li a {
  color: var(--muted);
  transition: color 0.3s;
}
.breadcrumb-list li a:hover { color: var(--gold); }
.breadcrumb-list li.active { color: var(--gold); }
.breadcrumb-list .sep { color: var(--muted); margin: 0 0.25rem; }

/* --- Content Images --- */
.content-image {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  margin: 1.5rem 0;
  transition: all 0.3s;
}
.content-image:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,168,67,0.15);
}

/* --- Stat Counter Section --- */
.stat-section {
  background: linear-gradient(135deg, var(--hero-gradient-start), var(--primary));
  padding: 3rem 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
}
.stat-number {
  font-family: 'Times New Roman', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  color: var(--body-text);
  font-size: 1rem;
  margin-top: 0.25rem;
}

/* --- Related Pages --- */
.related-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,168,67,0.2);
  transform: translateY(-3px);
}
.related-card h4 { color: var(--gold); margin-bottom: 0.5rem; }
.related-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.related-card .read-more {
  color: var(--gold);
  font-weight: 600;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}
.related-card:hover .read-more { gap: 0.6rem; }

/* --- Footer --- */
.main-footer {
  background: var(--footer-bg);
  padding: 4rem 0 0;
  border-top: 1px solid var(--card-border);
}
.footer-heading {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: 'Times New Roman', serif;
}
.footer-link {
  color: var(--muted);
  display: block;
  padding: 0.3rem 0;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.footer-link:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* --- Fixed Bottom Contact Bar --- */
.bottom-contact-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: rgba(4,10,18,0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--card-border);
  padding: 0.75rem 0;
  z-index: 9990;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.bottom-contact-bar .btn-call,
.bottom-contact-bar .btn-whatsapp {
  flex: 1;
  max-width: 250px;
  justify-content: center;
}

/* Body padding for bottom bar */
body { padding-bottom: 70px; }

/* --- Scroll to Top --- */
.scroll-top-btn {
  position: fixed;
  bottom: 85px; right: 25px;
  width: 45px; height: 45px;
  background: var(--gold);
  color: var(--btn-primary-text);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 9980;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background: var(--light-gold);
  box-shadow: 0 0 20px rgba(212,168,67,0.5);
  transform: translateY(-3px);
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Contact Page --- */
.contact-form .form-control {
  background: var(--input-bg);
  border: 1px solid var(--card-border);
  color: var(--body-text);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s;
}
.contact-form .form-control:focus {
  border-color: var(--input-focus-border);
  box-shadow: 0 0 0 0.2rem rgba(212,168,67,0.15);
  background: var(--input-bg);
  color: var(--body-text);
}
.contact-form .form-control::placeholder { color: var(--muted); }

/* --- FAQ --- */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.25rem 1.5rem;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover { background: var(--alt-container); }
.faq-question .icon { transition: transform 0.3s; }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: var(--body-text);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212,168,67,0.2);
  transform: translateY(-5px);
}
.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,168,67,0.2);
}
.pricing-card.popular::before {
  content: 'Popular';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--gold);
  color: var(--btn-primary-text);
  padding: 0.25rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.85rem;
  font-weight: 700;
}
.pricing-card .duration {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Times New Roman', serif;
}
.pricing-card .price {
  color: var(--light-gold);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pricing-card .price span { font-size: 1rem; color: var(--muted); }

/* --- Service Category Cards --- */
.service-cat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  height: 100%;
}
.service-cat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212,168,67,0.2);
  transform: translateY(-5px);
}
.service-cat-card .icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-cat-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-cat-card p {
  color: var(--body-text);
  font-size: 0.95rem;
}

/* --- How It Works --- */
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-number {
  width: 50px; height: 50px;
  background: var(--gold);
  color: var(--btn-primary-text);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-card h4 { color: var(--gold); margin-bottom: 0.5rem; }
.step-card p { color: var(--body-text); font-size: 0.95rem; }

/* --- About Page --- */
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,168,67,0.2);
  transform: translateY(-3px);
}
.team-card .role { color: var(--gold); font-size: 0.9rem; font-weight: 600; }

/* --- External Links --- */
.external-link {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s;
}
.external-link:hover { color: var(--light-gold); }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--hero-gradient-start), var(--primary));
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--gold); margin-bottom: 1rem; }
.cta-section p { color: var(--body-text); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Utility --- */
.text-gold { color: var(--gold) !important; }
.text-muted-custom { color: var(--muted) !important; }
.bg-alt { background: var(--alt-container); }
.gap-1 { gap: 1rem; }
.mt-2rem { margin-top: 2rem; }
.mb-2rem { margin-bottom: 2rem; }

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(212,168,67,0); }
}

/* Pulse on CTA buttons */
.pulse-gold { animation: pulse 2s infinite; }

/* --- Map Placeholder --- */
.map-placeholder {
  background: var(--alt-container);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.1rem;
}

/* --- Lazy loading placeholder --- */
.lazy-img {
  opacity: 0;
  transition: opacity 0.5s;
}
.lazy-img.loaded {
  opacity: 1;
}

/* --- Business Hours --- */
.hours-list {
  list-style: none;
  padding: 0;
}
.hours-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--body-text); }
.hours-list .time { color: var(--gold); font-weight: 600; }

/* --- Responsive Adjustments --- */
@media (max-width: 576px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  .section-padding { padding: 3rem 0; }
  .hero-title { font-size: 1.6rem; }
  .stat-number { font-size: 2rem; }
  .bottom-contact-bar { gap: 0.5rem; padding: 0.5rem; }
  .bottom-contact-bar .btn-call,
  .bottom-contact-bar .btn-whatsapp { padding: 0.5rem 0.75rem; font-size: 0.85rem; }
}
