/* ==========================================================================
   SATHYAM GLOBAL SERVICES - OFFICIAL STYLESHEET
   Brand: "Trust Beyond Borders | Built by an NRI. Created for NRIs. Trusted by Families."
   Colors: Deep Navy Blue (#0A192F), Imperial Gold (#D4AF37), Pure White (#FFFFFF)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-navy: #0A192F;
  --primary-navy-dark: #060e1b;
  --primary-navy-light: #122847;
  --primary-navy-card: #0e223d;
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #A6831E;
  --gold-gradient: linear-gradient(135deg, #ECC86A 0%, #D4AF37 50%, #B38F2C 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.04) 100%);
  --gold-border-glow: 0 0 20px rgba(212, 175, 55, 0.35);

  --bg-cream: #FDFCF9;
  --bg-slate: #F4F7FB;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  
  --shadow-sm: 0 4px 12px rgba(10, 25, 47, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 20px 45px rgba(10, 25, 47, 0.12);
  --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.28);
  
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================= Global Reset & Typography ================= */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}

h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
}

p, li, .font-body {
  font-family: var(--font-body);
}

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

/* ================= Gradient & Accent Utility Classes ================= */
.text-gold {
  color: var(--gold-primary) !important;
}

.text-navy {
  color: var(--primary-navy) !important;
}

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

.bg-navy {
  background-color: var(--primary-navy) !important;
}

.bg-navy-dark {
  background-color: var(--primary-navy-dark) !important;
}

.bg-navy-light {
  background-color: var(--primary-navy-light) !important;
}

.bg-cream {
  background-color: var(--bg-cream) !important;
}

.bg-slate {
  background-color: var(--bg-slate) !important;
}

.border-gold {
  border-color: var(--gold-primary) !important;
}

.border-gold-subtle {
  border-color: rgba(212, 175, 55, 0.3) !important;
}

.badge-gold {
  background: var(--gold-gradient);
  color: var(--primary-navy-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45em 0.9em;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.badge-navy {
  background-color: rgba(10, 25, 47, 0.08);
  color: var(--primary-navy);
  font-weight: 600;
  border: 1px solid rgba(10, 25, 47, 0.15);
  border-radius: 50px;
  padding: 0.4em 0.8em;
}

/* ================= Buttons ================= */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--primary-navy-dark);
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-gold:hover, .btn-gold:focus {
  color: var(--primary-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-primary);
  font-weight: 600;
  padding: 0.72rem 1.65rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--primary-navy-dark);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-navy {
  background: transparent;
  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
  font-weight: 600;
  padding: 0.72rem 1.65rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ================= Top Bar ================= */
.top-bar {
  background-color: var(--primary-navy-dark);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 0.82rem;
  color: #cbd5e1;
  padding: 6px 0;
  letter-spacing: 0.02em;
}

.top-bar a {
  color: #cbd5e1;
}

.top-bar a:hover {
  color: var(--gold-primary);
}

.timezone-pill {
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

/* ================= Sticky Navbar ================= */
.navbar-custom {
  background: rgba(10, 25, 47, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
  padding: 0.75rem 0;
  z-index: 1040;
}

.navbar-custom.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 0.5rem 0;
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand-logo {
  height: 54px;
  width: auto;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.navbar-brand-title {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0;
}

.navbar-brand-sub {
  font-size: 0.74rem;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-link-custom {
  color: #E2E8F0 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem !important;
  position: relative;
  transition: var(--transition-smooth);
}

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

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* ================= Hero Section ================= */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(26, 54, 93, 0.8) 0%, rgba(10, 25, 47, 0.98) 70%), url('../assets/images/gallery/44.png') center/cover no-repeat;
  color: #ffffff;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}

.hero-overlay-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.22rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-stats-card {
  background: rgba(14, 34, 61, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 4px;
}

/* ================= Reality Check / Pain Points ================= */
.pain-point-card {
  background: #ffffff;
  border: 1px solid rgba(10, 25, 47, 0.08);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.pain-point-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.pain-point-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.pain-point-card:hover::before {
  height: 100%;
}

.pain-icon-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(10, 25, 47, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
}

.pain-point-card:hover .pain-icon-wrapper {
  background: var(--primary-navy);
  color: var(--gold-primary);
}

/* ================= Premium Service Cards ================= */
.service-card-luxury {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(10, 25, 47, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(10, 25, 47, 0.16);
  border-color: rgba(212, 175, 55, 0.5);
}

.service-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-luxury:hover .service-card-img-wrapper img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.service-card-list li {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card-list li i {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-top: 2px;
}

/* ================= Audio Player Component ================= */
.audio-card {
  background: radial-gradient(circle at top right, #132b4d 0%, #0a192f 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  padding: 2rem;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

.audio-speaker-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.audio-controls-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}

.play-pause-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  color: var(--primary-navy-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.play-pause-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}

.audio-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  border-radius: 10px;
  transition: width 0.1s linear;
}

/* Sound wave equalizer animation */
.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
}

.sound-wave span {
  width: 3px;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: wave-bar 1.2s ease-in-out infinite alternate;
}

.sound-wave.paused span {
  animation-play-state: paused;
  height: 4px !important;
}

.sound-wave span:nth-child(1) { height: 8px; animation-delay: 0.1s; }
.sound-wave span:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.sound-wave span:nth-child(3) { height: 22px; animation-delay: 0.5s; }
.sound-wave span:nth-child(4) { height: 12px; animation-delay: 0.2s; }
.sound-wave span:nth-child(5) { height: 18px; animation-delay: 0.4s; }

@keyframes wave-bar {
  0% { height: 4px; }
  100% { height: 22px; }
}

/* ================= 150+ Services Directory & Search ================= */
.search-filter-box {
  background: #ffffff;
  border: 1px solid rgba(10, 25, 47, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.search-input-luxury {
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
  width: 100%;
}

.search-input-luxury:focus {
  border-color: var(--gold-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.search-icon-pos {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 1.2rem;
}

.category-tab-pill {
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 600;
  background: #F1F5F9;
  color: #475569;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.category-tab-pill:hover {
  background: #E2E8F0;
  color: var(--primary-navy);
}

.category-tab-pill.active {
  background: var(--primary-navy);
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

.service-item-row {
  background: #ffffff;
  border: 1px solid rgba(10, 25, 47, 0.08);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.service-item-row:hover {
  border-color: var(--gold-primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  background: #FCFDFE;
}

/* ================= Process Steps ================= */
.process-step-box {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(10, 25, 47, 0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.4);
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--primary-navy-dark);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* ================= Testimonials ================= */
.testimonial-card-luxury {
  background: #ffffff;
  border: 1px solid rgba(10, 25, 47, 0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 2.2rem;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 0.75rem;
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ================= WhatsApp Floating Button & Drawer ================= */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1050;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ================= Footer ================= */
.footer-custom {
  background: var(--primary-navy-dark);
  color: #94A3B8;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding: 4.5rem 0 2rem;
}

.footer-title {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-link {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: block;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background: var(--gold-gradient);
  color: var(--primary-navy-dark);
  border-color: transparent;
  transform: translateY(-3px);
}

/* ================= Modal Enhancements ================= */
.modal-luxury .modal-content {
  border-radius: 18px;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.modal-luxury .modal-header {
  background: var(--primary-navy);
  color: #ffffff;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 1.5rem 1.75rem;
}

/* ================= Responsive Adjustments ================= */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .navbar-brand-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-section {
    padding: 4.5rem 0 3.5rem;
  }
  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
