@import url('../fonts/font.css');

/* ==========================================================================
   SREE SIBNATH - ASTROLOGER IN KOLKATA
   Pixel-Perfect Full-Width Responsive Styling & Modern Micro-Animations
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --font-serif: 'Inria Serif Bold', 'Inria Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-quote: 'Inria Serif', Georgia, serif;

  /* Color System */
  --color-primary-dark: #061524;
  --color-midnight: #091e32;
  --color-midnight-card: #0d253d;
  --color-bg-light: #faf8f5;
  --color-bg-warm: #f6f1e8;
  --color-card-light: #ffffff;
  --color-card-border: #ede6d8;

  /* Gold Accents & Gradients */
  --gold-primary: #A97107;
  --gold-light: #f5d58c;
  --gold-dark: #805404;
  --gold-gradient: linear-gradient(135deg, #c5860d 0%, #f4d084 45%, #A97107 100%);
  --gold-gradient-hover: linear-gradient(135deg, #d39213 0%, #f7d685 50%, #A97107 100%);
  --gold-border: rgba(169, 113, 7, 0.28);
  --gold-glow: rgba(169, 113, 7, 0.2);

  /* WhatsApp Green */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #1ea952;
  --whatsapp-gradient: linear-gradient(135deg, #25D366 0%, #1ea952 100%);

  /* Typography Colors */
  --text-dark: #19222c;
  --text-body: #4a5563;
  --text-muted: #738090;
  --text-white: #ffffff;
  --text-cream: #f4ecdf;
  --text-cream-muted: #c7d2de;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 8px 24px rgba(169, 113, 7, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout: 100% Full Width */
  --max-width: 100%;
  --header-height: 76px;
}

/* --- 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 {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
}

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

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

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

ul {
  list-style: none;
}

/* --- Full-Width Fluid Container --- */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 64px);
}

/* --- Typography Utilities --- */
.text-center {
  text-align: center;
}

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

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

.text-gold-dark {
  color: #A97107;
}

.text-white {
  color: #ffffff;
}

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

.text-gradient-gold {
  background: linear-gradient(135deg, #f7d685 0%, #d89617 50%, #A97107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  z-index: 1;
}

/* Shimmer Light Reflection on Hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-24deg);
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 2;
}

.btn:hover::after {
  left: 170%;
}

.btn:active {
  transform: translateY(-1px) scale(0.985);
  transition: transform 0.1s ease;
}

.btn-gold {
  background: linear-gradient(135deg, #c48b1d 0%, #a97107 50%, #885703 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(169, 113, 7, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d89e2b 0%, #bc7f0a 50%, #996204 100%);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 10px 25px -3px rgba(169, 113, 7, 0.58), 0 0 18px rgba(218, 165, 32, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2fe571 0%, #25d366 50%, #1da851 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.32), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #3cf07f 0%, #29dc6c 50%, #1fae54 100%);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 10px 24px -3px rgba(37, 211, 102, 0.58), 0 0 16px rgba(37, 211, 102, 0.38), inset 0 1px 2px rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.btn-arrow, .btn-arrow-small {
  width: 17px;
  height: 17px;
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover .btn-arrow,
.btn:hover .btn-arrow-small {
  transform: translateX(5px) scale(1.1);
}

.whatsapp-icon, .whatsapp-icon-sm, .phone-icon, .phone-icon-sm {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-icon-sm {
  width: 18px;
  height: 18px;
}

.btn:hover .phone-icon,
.btn:hover .phone-icon-sm {
  transform: rotate(-14deg) scale(1.14);
}

.btn:hover .whatsapp-icon,
.btn:hover .whatsapp-icon-sm {
  transform: scale(1.15) rotate(6deg);
}

.btn-full {
  width: 100%;
}

.btn-pulse {
  animation: subtlePulse 3s infinite ease-in-out;
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(169, 113, 7, 0.35);
  }
  50% {
    box-shadow: 0 4px 24px rgba(169, 113, 7, 0.6);
  }
}

/* ==========================================================================
   HEADER NAVIGATION (Full-Width)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #efe9dc;
  height: var(--header-height);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
  width: 100%;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.site-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: brightness(1.15) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
}

.footer-logo-img:hover {
  transform: scale(1.03);
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #A97107;
  text-transform: uppercase;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3b4653;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

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

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

.header-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-cta {
  padding: 9px 18px;
  font-size: 0.88rem;
  gap: 7px;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: #1a222c;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ==========================================================================
   1. HERO SECTION (Dark Celestial Full-Width)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #061524;
  background-image: 
    linear-gradient(90deg, rgba(6, 21, 36, 0.85) 0%, rgba(6, 21, 36, 0.55) 42%, rgba(6, 21, 36, 0.15) 70%, rgba(6, 21, 36, 0.4) 100%),
    url('../img/banner-bg.webp');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-white);
  padding: 60px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 113, 7, 0.2);
  width: 100%;
}

.hero-stars-bg {
  display: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 810px;
  padding-bottom: 45px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c5860d;
  margin-bottom: 14px;
  display: inline-block;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.3vw, 4.3rem);
  font-weight: 700;
  line-height: 1.14;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  word-wrap: break-word;
}

.hero-lead {
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  color: #b8c8d8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #d8e2ed;
}

.badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(169, 113, 7, 0.18);
  border: 1px solid rgba(169, 113, 7, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3ce81;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 13px;
  height: 13px;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 480px;
}

.hero-visual-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(169, 113, 7, 0.38) 0%, rgba(6, 21, 36, 0) 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-zodiac-ring {
  display: none;
}

.hero-portrait-frame {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

.hero-main-img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-slow);
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.hero-main-img:hover {
  transform: translateY(-4px) scale(1.015);
}

.hero-quote-card {
  position: absolute;
  top: 12%;
  right: -2%;
  z-index: 4;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: 220px;
  box-shadow: none;
  backdrop-filter: none;
  animation: subtleFloat 4s ease-in-out infinite alternate;
}

@keyframes subtleFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

.hero-quote-card p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #f5d58c;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.hero-quote-card cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 600;
  color: #c5860d;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   2. WHEN LIFE FEELS UNCERTAIN / ABOUT SECTION (Full-Width)
   ========================================================================== */
.section {
  padding: 65px 0;
  width: 100%;
}

.section-light {
  background-color: var(--color-bg-light);
}

.section-dark {
  background-color: var(--color-primary-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr minmax(180px, 240px);
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.about-card-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e0d0;
  transition: transform var(--transition-normal);
}

.about-card-frame:hover {
  transform: translateY(-4px);
}

.about-img {
  width: 100%;
  display: block;
}

.about-text-col .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.25;
  color: #17212c;
  margin-bottom: 18px;
  word-wrap: break-word;
}

.about-text-col p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.72;
  margin-bottom: 16px;
}

.about-temple-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.temple-sketch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.temple-sketch-img {
  width: 160px;
  mix-blend-mode: multiply;
  margin-bottom: 10px;
}

.temple-caption .city-name {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: #9c6c24;
  display: block;
  line-height: 1.2;
}

.temple-caption .city-tag {
  font-size: 0.82rem;
  color: #727e8a;
  line-height: 1.45;
  margin-top: 4px;
  max-width: 180px;
}

/* ==========================================================================
   TRUST HIGHLIGHTS STRIP SECTION (Before About Section)
   ========================================================================== */
.trust-strip-section {
  background: #ffffff;
  padding: 42px 0 38px;
  border-bottom: 1px solid #ede1cf;
  width: 100%;
}

.trust-strip-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1060px;
  margin: 0 auto;
}

.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal);
}

.trust-strip-item:hover {
  transform: translateY(-4px);
}

.trust-strip-icon-box {
  width: 110px;
  height: 110px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-strip-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-normal);
}

.trust-strip-item:hover .trust-strip-icon-box img {
  transform: scale(1.06);
}

.trust-strip-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #17212c;
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   3. MINI GET IN TOUCH BANNER (Full-Width)
   ========================================================================== */
.mini-touch-banner {
  background: #fdfbf7;
  border: 1px solid #eddcc4;
  border-radius: 14px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 130px 1fr 240px;
  align-items: center;
  gap: 36px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.banner-mandala {
  display: flex;
  justify-content: center;
}

.banner-mandala img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: spinSlow 60s linear infinite;
}

.banner-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #17212c;
  margin-bottom: 12px;
}

.banner-text p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 10px;
}

.banner-cta-box {
  background: #fcf9f2;
  border: 1px solid #ecd9bf;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cta-box-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a222c;
  line-height: 1.1;
}

.cta-box-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: #A97107;
  margin-bottom: 4px;
}

.banner-cta-box .btn {
  padding: 10px 16px;
  font-size: 0.86rem;
}

/* ==========================================================================
   4. SERVICES SECTION (Dark Celestial Full-Width)
   ========================================================================== */
.services-section {
  background: radial-gradient(circle at 50% 10%, #0d2740 0%, #061524 70%);
  border-top: 1px solid rgba(169, 113, 7, 0.2);
  border-bottom: 1px solid rgba(169, 113, 7, 0.2);
  position: relative;
  width: 100%;
}

.section-header {
  margin-bottom: 42px;
}

.section-header.text-center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.95rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  word-wrap: break-word;
}

.section-subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
}

.services-section .section-title {
  color: #d4a742;
  background: linear-gradient(135deg, #fce5b5 0%, #d4a742 50%, #aa7a1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: #fdfbf8;
  border: 1px solid #ebdcc8;
  border-radius: 12px;
  padding: 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  gap: 14px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3.5px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(169, 113, 7, 0.22);
  border-color: #dcb875;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fffbf2 0%, #f6e2be 55%, #dfb76c 100%);
  border: 1.5px solid #cca25d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b2316;
  margin-bottom: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), 0 3px 8px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.service-card:hover .service-icon-circle {
  transform: scale(1.08);
}

.service-icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: #2b2316;
  display: block;
}

.service-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #17212c;
  line-height: 1.25;
  margin-bottom: 4px;
  min-height: auto;
  display: block;
  text-align: left;
}

.service-desc {
  font-size: 0.82rem;
  color: #5c6875;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

/* ==========================================================================
   5. WHY CONSULT SREE SIBNATH (Full-Width)
   ========================================================================== */
.why-section {
  background-color: var(--color-bg-light);
  padding: 55px 0;
  width: 100%;
}

.why-section .section-subtitle {
  max-width: 820px;
  margin: 0 auto 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #ebdcc9;
  border-radius: 12px;
  padding: 16px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #d4a75a;
  box-shadow: 0 8px 20px rgba(169, 113, 7, 0.16);
}

.why-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fffbf2 0%, #f6e2be 55%, #dfb76c 100%);
  border: 1.5px solid #cca25d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b2316;
  margin-bottom: 10px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-fast);
}

.why-card:hover .why-icon-wrap {
  transform: scale(1.08);
}

.why-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: #2b2316;
  display: block;
}

.why-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #17212c;
  line-height: 1.28;
}

.why-summary-box {
  width: 100%;
  margin: 26px 0 0;
  padding: 16px 24px;
  background: rgba(218, 165, 32, 0.08);
  border-radius: 8px;
  border: 1px dashed #dcb875;
}

.why-summary-box p {
  color: #43331b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   6. VISIT US NEAR YOU IN KOLKATA (Full-Width)
   ========================================================================== */
.visit-section {
  padding: 35px 0 50px;
  background-color: var(--color-bg-light);
  width: 100%;
}

.visit-grid-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.visit-left-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.visit-temple-photo {
  width: 220px;
  min-width: 200px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid #ebdcc8;
  flex-shrink: 0;
}

.visit-temple-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.visit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #17212c;
  line-height: 1.25;
  margin-bottom: 8px;
}

.visit-content p {
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 14px;
}

.visit-content p + p {
  margin-top: 10px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #e5c37d 0%, #c99c4c 100%);
  color: #261c0c;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(201, 156, 76, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-directions::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-24deg);
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-directions:hover::after {
  left: 170%;
}

.btn-directions:hover {
  background: linear-gradient(180deg, #f2d79a 0%, #d8aa5a 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(201, 156, 76, 0.52), 0 0 14px rgba(229, 195, 125, 0.4);
  color: #1a1205;
}

.btn-directions:hover .btn-arrow {
  transform: translateX(5px) scale(1.1);
}

.visit-right-card {
  background: #ffffff;
  border: 1px solid #ebdcc8;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 16px;
}

.visit-map-side {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebdcc8;
  display: flex;
  height: 235px;
  min-height: 220px;
}

.visit-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

.visit-info-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 4px 6px;
}

.visit-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visit-info-item .info-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fffbf2 0%, #f6e2be 55%, #dfb76c 100%);
  border: 1px solid #cca25d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b2316;
  flex-shrink: 0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(0, 0, 0, 0.08);
}

.visit-info-item .info-icon svg {
  width: 16px;
  height: 16px;
  stroke: #2b2316;
}

.visit-info-item .info-text {
  display: flex;
  flex-direction: column;
}

.visit-info-item .info-text strong {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #17212c;
  line-height: 1.25;
}

.visit-info-item .info-text span {
  font-size: 0.76rem;
  color: #666666;
  margin-top: 2px;
}

/* ==========================================================================
   7. TANTRIK ASTROLOGER BANNER (Dark Full-Width)
   ========================================================================== */
.tantrik-banner {
  background: #061320 url('../img/guidance-bg.webp') no-repeat right center / cover;
  border-top: 1px solid rgba(169, 113, 7, 0.35);
  border-bottom: 1px solid rgba(169, 113, 7, 0.35);
  padding: 55px 0 60px;
  min-height: 195px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.tantrik-inner {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
}

.tantrik-text {
  max-width: 1050px;
}

.tantrik-title {
  font-family: var(--font-serif);
  font-size: clamp(1.95rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #edd398;
  background: linear-gradient(180deg, #fff4dc 0%, #ecd49b 50%, #cca55c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  word-wrap: break-word;
}

.tantrik-desc {
  font-size: 0.98rem;
  line-height: 1.68;
  color: #edf3f8;
  margin: 0;
  max-width: 900px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.tantrik-desc + .tantrik-desc {
  margin-top: 12px;
}

/* ==========================================================================
   8. ONLINE ASTROLOGER: CONSULT FROM ANYWHERE (Full-Width)
   ========================================================================== */
.online-section {
  padding: 50px 0 60px;
  background-color: var(--color-bg-light);
  width: 100%;
}

.online-convenience-block {
  max-width: 960px;
  margin: 0 auto 36px;
  text-align: center;
}

.online-convenience-title {
  font-weight: 600;
  color: #17212c;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.online-reasons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.reason-pill {
  background: #ffffff;
  border: 1px solid #dcb875;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.88rem;
  color: #2b2316;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.online-convenience-note {
  color: #63707e;
  font-size: 0.92rem;
  margin-top: 16px;
  font-style: italic;
}

.online-booking-note {
  margin-top: 32px;
  padding: 14px 20px;
  background: rgba(218, 165, 32, 0.08);
  border-radius: 8px;
  border: 1px dashed #cca25d;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.online-booking-note p {
  color: #43331b;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.process-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 38px;
}

.step-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  position: relative;
}

.step-item:not(:first-child) {
  border-left: 1px solid #e7dcce;
}

.step-item:not(:first-child)::before {
  content: '→';
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #cba25a;
  background: var(--color-bg-light);
  line-height: 1;
  padding: 2px 0;
  font-weight: 600;
}

.step-badge {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #dcae5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #b8821d;
  box-shadow: 0 2px 8px rgba(184, 130, 29, 0.12);
  flex-shrink: 0;
}

.step-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.step-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #fdf3e2 35%, #f2d29b 75%, #cf9b43 100%);
  border: 1.5px solid #cca25d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2b2316;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(184, 130, 29, 0.22), inset 0 1.5px 2px rgba(255, 255, 255, 0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item:hover .step-icon-wrap {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 14px rgba(184, 130, 29, 0.32), inset 0 1.5px 2px #ffffff;
}

.step-icon-wrap svg {
  width: 25px;
  height: 25px;
  display: block;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #17212c;
  line-height: 1.25;
  margin-bottom: 5px;
}

.step-desc {
  font-size: 0.82rem;
  color: #5c6875;
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   9. HOW TO CHOOSE A GENUINE ASTROLOGER (Dark Full-Width)
   ========================================================================== */
.choose-section {
  background: radial-gradient(ellipse 80% 50% at 50% 20%, #173d63 0%, #0a1e31 60%, #05101b 100%);
  padding: 55px 0 65px;
  border-top: 1px solid rgba(169, 113, 7, 0.2);
  border-bottom: 1px solid rgba(169, 113, 7, 0.2);
  width: 100%;
}

.choose-section .section-header {
  margin-bottom: 32px;
  text-align: center;
}

.choose-section .section-subtitle {
  max-width: 840px;
  margin: 12px auto 0;
}

.choose-section .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 2.15rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.01em;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .choose-section .section-title {
    white-space: nowrap;
  }
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.choose-card {
  background: #fdfbf7;
  border-radius: 10px;
  padding: 22px 18px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(230, 220, 205, 0.7);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  border-color: #cca25d;
}

.choose-icon-wrap {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffefb 0%, #faebd3 50%, #e5be79 100%);
  border: 1.2px solid #cca25d;
  box-shadow: 0 2px 6px rgba(184, 130, 29, 0.18), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform var(--transition-fast);
}

.choose-card:hover .choose-icon-wrap {
  transform: scale(1.08);
}

.choose-card.warn-card .choose-icon-wrap {
  background: radial-gradient(circle at 35% 35%, #fffdf8 0%, #fee5d5 45%, #f1a97d 85%, #d96d38 100%);
  border-color: #d9703d;
  box-shadow: 0 2px 6px rgba(217, 109, 56, 0.25), inset 0 1px 2px #fff;
}

.choose-icon-wrap svg {
  width: 21px;
  height: 21px;
  display: block;
}

.choose-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #17212c;
  line-height: 1.25;
  margin-bottom: 8px;
}

.choose-desc {
  font-family: var(--font-sans);
  font-size: 0.81rem;
  color: #555d66;
  line-height: 1.45;
}

/* ==========================================================================
   10. AFFORDABLE ASTROLOGY CONSULTATION BANNER (Full-Width)
   ========================================================================== */
.affordable-section {
  padding: 45px 0;
  background-color: var(--color-bg-light);
  width: 100%;
}

.affordable-banner {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr auto;
  align-items: center;
  gap: 32px;
  box-shadow: none;
}

.affordable-img-col {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.affordable-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.affordable-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #17212c;
  line-height: 1.25;
  margin-bottom: 6px;
}

.affordable-subtitle {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 8px;
}

.affordable-desc {
  font-size: 0.9rem;
  color: #555d66;
  line-height: 1.55;
  margin: 0 0 8px;
}

.affordable-note {
  font-size: 0.85rem;
  color: #8a6417;
  font-weight: 600;
  margin: 0;
}

.affordable-cta-col {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   11. WHAT CAN YOU ASK AN ASTROLOGER? (Full-Width)
   ========================================================================== */
.ask-section {
  padding: 55px 0 65px;
  background-color: var(--color-bg-light);
  border-top: 1px solid #eee5d6;
  width: 100%;
}

.ask-section .section-subtitle {
  max-width: 840px;
  margin: 0 auto;
}

.ask-grid {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 10px;
  width: 100%;
}

.ask-card {
  background: #ffffff;
  border: 1px solid #e7dcce;
  border-radius: 8px;
  padding: 14px 4px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  min-height: 104px;
}

.ask-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(184, 130, 29, 0.18);
  border-color: #cca25d;
}

.ask-icon-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffdfa 0%, #faedd7 50%, #e2b96d 100%);
  border: 1.2px solid #cca25d;
  box-shadow: 0 2px 5px rgba(184, 130, 29, 0.15), inset 0 1px 2px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.25s ease;
}

.ask-card:hover .ask-icon-wrap {
  transform: scale(1.08);
}

.ask-icon-wrap svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ask-name {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  color: #17212c;
  line-height: 1.25;
  margin: 0;
}

.ask-closing {
  text-align: center;
  margin-top: 24px;
}

.ask-closing p {
  font-size: 0.92rem;
  color: #666666;
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   12. OUR ASTROLOGY CONSULTATION PROCESS (Full-Width)
   ========================================================================== */
.process-section {
  padding: 55px 0 65px;
  background-color: var(--color-bg-light);
  width: 100%;
}

.process-six-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.process-box {
  background: #fdfbf7;
  border: 1px solid rgba(230, 220, 205, 0.75);
  border-radius: 10px;
  padding: 28px 18px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-box:hover {
  transform: translateY(-4px);
  border-color: #cca25d;
  box-shadow: 0 10px 24px rgba(184, 130, 29, 0.15);
}

.process-num {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffefb 0%, #f6ebd6 55%, #dfb76c 100%);
  border: 1.5px solid #cfa45d;
  box-shadow: 0 2px 6px rgba(184, 130, 29, 0.2), inset 0 1px 2px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #9c6c16;
}

.process-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #17212c;
  margin-bottom: 8px;
  line-height: 1.25;
  min-height: 2.4em;
  text-align: left;
  display: flex;
  align-items: center;
}

.process-detail {
  font-family: var(--font-sans);
  font-size: 0.81rem;
  color: #555d66;
  line-height: 1.45;
  text-align: left;
  margin: 0;
}

/* ==========================================================================
   13. WHAT OUR CLIENTS SAY (Reviews Full-Width)
   ========================================================================== */
.reviews-section {
  padding: 60px 0;
  background-color: #fbf9f4;
  border-top: 1px solid #ede3d2;
  width: 100%;
}

.section-header {
  margin-bottom: 35px;
}

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

.section-header-left {
  text-align: center;
  margin-bottom: 35px;
}

.reviews-container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(180px, 230px);
  gap: 20px;
  align-items: stretch;
}

.review-quote-card {
  background: #ffffff;
  border: 1px solid #ebdcc8;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.review-quote-card:hover {
  transform: translateY(-4px);
  border-color: #dfbb76;
  box-shadow: 0 10px 24px rgba(169, 113, 7, 0.15);
}

.quote-text {
  font-size: 0.92rem;
  font-style: italic;
  color: #3b4653;
  line-height: 1.65;
  margin-bottom: 18px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #dfbb76;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #17212c;
  line-height: 1.2;
}

.rating-stars {
  color: #f59e0b;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

/* Google Reviews Card */
.google-official-box {
  background: #ffffff;
  border: 1px solid #ebdcc8;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.google-official-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.google-brand-header {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.google-label-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3b4653;
  margin-bottom: 8px;
}

.gold-star-icons {
  color: #f59e0b;
  font-size: 0.84rem;
}

.google-score-num {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a222c;
  line-height: 1.1;
  margin-bottom: 2px;
}

.google-based-text {
  font-size: 0.75rem;
  color: #697684;
}

/* ==========================================================================
   14. FAQ SECTION (Dark Celestial Full-Width)
   ========================================================================== */
.faq-section {
  background: radial-gradient(circle at 50% 20%, #0d2740 0%, #061524 70%);
  padding: 65px 0;
  border-top: 1px solid rgba(169, 113, 7, 0.2);
  border-bottom: 1px solid rgba(169, 113, 7, 0.2);
  width: 100%;
}

.faq-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-single-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .faq-grid-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.reason-pill {
  transition: all var(--transition-fast);
}

.reason-pill:hover {
  border-color: #b8821d !important;
  background: #fdfaf3 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(184, 130, 29, 0.15) !important;
}

.faq-accordion-item {
  background: rgba(14, 37, 60, 0.65);
  border: 1px solid rgba(169, 113, 7, 0.22);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-accordion-item:hover {
  border-color: rgba(169, 113, 7, 0.45);
}

.faq-accordion-item.active {
  background: rgba(14, 37, 60, 0.92);
  border-color: #dfbb76;
}

.faq-accordion-btn {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  color: #f4ecdf;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-accordion-btn:hover {
  color: #f7d68d;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: #dfbb76;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

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

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 20px;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 250px;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
  padding-bottom: 18px;
}

.faq-accordion-body p {
  color: #bed0e2;
  font-size: 0.88rem;
  line-height: 1.65;
  border-top: 1px solid rgba(169, 113, 7, 0.15);
  padding-top: 12px;
}

/* ==========================================================================
   15. BOTTOM CALL TO ACTION BANNER (Full-Width)
   ========================================================================== */
.final-cta-section {
  padding: 64px 0;
  background: #fbf5ea url('../img/guidance-kolkata.webp') no-repeat center right / cover;
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(169, 113, 7, 0.35);
  border-bottom: 1px solid rgba(169, 113, 7, 0.35);
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(255 252 245 / 0%) 0%, rgb(255 250 240 / 50%) 25%, rgb(255 250 240) 58%, rgb(255 248 235 / 36%) 75%, rgb(255 248 235 / 0%) 100%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-container {
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: auto;
  position: relative;
  z-index: 2;
  box-shadow: none;
}

.final-cta-content {
  max-width: 600px;
  z-index: 2;
  margin-left: clamp(280px, 24vw, 480px);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  font-weight: 800;
  color: #061424;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.final-cta-lead {
  font-size: 1.02rem;
  color: #7a5005;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 14px;
}

.final-cta-body {
  color: #2b3442;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 500;
}

.final-cta-body strong {
  color: #061424;
  font-weight: 700;
}

.final-cta-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-large {
  padding: 12px 28px;
  font-size: 0.94rem;
}

.guidance-quote {
  text-align: right;
  align-self: center;
  padding-left: 20px;
  z-index: 2;
  flex-shrink: 0;
}

.guidance-quote-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 800;
  color: #fed97e;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 14px rgba(0, 0, 0, 0.7);
  line-height: 1.15;
}

.guidance-quote-desc {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95);
  line-height: 1.35;
  margin-top: 3px;
}

/* ==========================================================================
   15.5 FIND US SECTION (Above Footer)
   ========================================================================== */
.find-us-section {
  background-color: #f8f1e4;
  padding: 38px 0 42px;
  border-top: 1px solid rgba(169, 113, 7, 0.22);
  border-bottom: 1px solid rgba(169, 113, 7, 0.28);
  width: 100%;
}

.find-us-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.find-us-line {
  width: 90px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(183, 137, 51, 0.25) 0%, #b78933 50%, rgba(183, 137, 51, 0.25) 100%);
  border-radius: 2px;
}

.find-us-title {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #b78933;
  text-transform: uppercase;
}

.find-us-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 84px);
  flex-wrap: wrap;
}

.find-us-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.find-us-item:hover {
  transform: translateY(-3px);
}

.find-us-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-normal);
}

.find-us-item:hover .find-us-logo {
  transform: scale(1.05);
}

/* ==========================================================================
   16. SITE FOOTER (Full-Width)
   ========================================================================== */
.site-footer {
  background-color: #040e18;
  border-top: 1px solid rgba(169, 113, 7, 0.3);
  color: #cbd5e1;
  padding: 55px 0 26px;
  width: 100%;
}

.footer-grid-row {
  display: grid;
  grid-template-columns: 1.25fr 1.35fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 40px;
  align-items: flex-start;
}

.footer-col-brand .footer-logo-img {
  margin-bottom: 16px;
  max-width: 190px;
  height: auto;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #a3b5c7;
  max-width: 380px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #dfbb76;
  margin-bottom: 6px;
}

.footer-title-line {
  width: 44px;
  height: 2px;
  background: #c5860d;
  border-radius: 2px;
  margin-bottom: 18px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: #dfbb76;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #cbd5e1;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: #f7d68d;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(223, 187, 118, 0.65);
  background: rgba(169, 113, 7, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dfbb76;
  transition: all var(--transition-normal);
}

.footer-social-circle:hover {
  background: #a97107;
  color: #ffffff;
  border-color: #a97107;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(169, 113, 7, 0.4);
}

.footer-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #2fe571 0%, #25d366 50%, #1da851 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-chat-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-24deg);
  transition: left 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.footer-chat-btn:hover::after {
  left: 170%;
}

.footer-chat-btn:hover {
  background: linear-gradient(135deg, #3cf07f 0%, #29dc6c 50%, #1fae54 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55), 0 0 14px rgba(37, 211, 102, 0.35);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(169, 113, 7, 0.35);
  padding-top: 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright a {
  color: #cbd5e1;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.footer-copyright a:hover {
  color: #dfbb76;
}

.designer-link {
  color: #dfbb76;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.designer-link:hover {
  color: #f7d68d;
}

/* ==========================================================================
   17. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 12px;
  z-index: 999;
	.btn-gold{
		width: 56px;
        height: 56px;
        border-radius: 50%;
        margin-bottom: 10px;
	}
}

.float-btn-wa {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.float-btn-wa:hover {
  transform: scale(1.14) rotate(5deg);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.68), 0 0 20px rgba(37, 211, 102, 0.4);
}

.float-btn-wa svg, .float-btn-wa img {
  width: 32px;
  height: 32px;
  display: block;
}
.float-tooltip {
  position: absolute;
  right: 66px;
  background: #111b21;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

/* --- Large Desktops (max-width: 1400px) --- */
@media (max-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .hero-quote-card {
    top: -6%;
    right: -11%;
}
}

@media (max-width: 1360px) {
  .ask-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
}

/* --- Laptop & Medium Screens (max-width: 1200px) --- */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-six-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .step-item {
    padding: 12px 16px;
  }

  .step-item:not(:first-child) {
    border-left: none;
  }

  .step-item:not(:first-child)::before {
    display: none;
  }
}

/* --- Laptop & Small Desktop (max-width: 1100px) --- */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 240px 1fr 180px;
    gap: 28px;
  }

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

  .google-official-box {
    grid-column: span 2;
  }
}

/* --- Tablet Landscape (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .ask-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .visit-grid-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visit-left-block {
    flex-direction: row;
    text-align: left;
  }

  .visit-right-card {
    grid-template-columns: 1.15fr 1fr;
  }

  .final-cta-content {
    margin-left: clamp(80px, 12vw, 160px);
  }
}

/* --- Tablet Portrait Screens (max-width: 900px) --- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-col {
    display: flex;
    justify-content: center;
  }

  .about-card-frame {
    max-width: 320px;
  }

  .about-temple-col {
    margin-top: 10px;
  }

  .trust-strip-section {
    padding: 34px 0 30px;
  }

  .trust-strip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 26px;
  }

  .trust-strip-item {
    width: calc(33.333% - 18px);
    min-width: 135px;
  }

  .trust-strip-icon-box {
    width: 95px;
    height: 95px;
    margin-bottom: 10px;
  }

  .trust-strip-label {
    font-size: 0.88rem;
  }

  .mini-touch-banner {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }

  .banner-cta-box {
    grid-column: span 2;
  }

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

  .visit-left-block {
    flex-direction: column;
    text-align: center;
  }

  .visit-temple-photo {
    width: 280px;
    height: 210px;
    max-width: 100%;
    margin: 0 auto;
  }

  .visit-content {
    align-items: center;
  }

  .visit-right-card {
    grid-template-columns: 1fr;
  }

  .final-cta-content {
    margin-left: 0;
  }

  .guidance-quote {
    display: none;
  }
}

/* --- Mobile Landscape & Small Tablets (max-width: 768px) --- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  html, body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  /* Header & Navigation */
  .brand-logo {
    max-width: calc(100% - 50px);
  }

  .site-logo-img {
    height: 38px;
    max-width: 150px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 24px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: transform var(--transition-normal);
    gap: 20px;
    z-index: 1000;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
  }

  .header-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-header-cta {
    width: 100%;
  }

  /* Hero Section */
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }
.footer-chat-wrapper {
    margin-bottom: 15px;
    text-align: center;
}
  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.22;
    word-break: break-word;
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
	  display:none;
  }
.hero-section {
    position: relative;
    background-color: #061524;
    background-image: linear-gradient(90deg, rgb(6 21 36) 0%, rgb(6 21 36 / 76%) 42%, rgb(6 21 36 / 89%) 70%, rgb(6 21 36 / 40%) 100%), url(../img/banner-bg.webp);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--text-white);
    padding: 60px 0 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(169, 113, 7, 0.2);
    width: 100%;
}
  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
    justify-content: center;
    text-align: left;
  }

  .trust-badge {
    font-size: 0.74rem;
  }

  .hero-visual-wrapper {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    min-height: auto;
  }

  .hero-zodiac-ring {
    width: 320px;
    height: 320px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.55;
  }

  .hero-main-img {
    max-width: 330px;
    margin: 0 auto;
  }

  .hero-quote-card {
    position: relative;
    top: auto;
    right: auto;
    margin: 16px auto 0;
    max-width: 280px;
    text-align: center;
  }

  /* Trust Strip Row */
  .trust-strip-section {
    padding: 28px 0 24px;
  }

  .trust-strip-row {
    gap: 16px 12px;
  }

  .trust-strip-item {
    width: calc(50% - 10px);
    min-width: 125px;
  }

  .trust-strip-icon-box {
    width: 82px;
    height: 82px;
    margin-bottom: 8px;
  }

  .trust-strip-label {
    font-size: 0.82rem;
  }

  /* Mini Touch Banner */
  .mini-touch-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .banner-cta-box {
    grid-column: span 1;
  }

  /* Tantrik Banner */
  .tantrik-banner {
    background: linear-gradient(to right, rgba(6, 19, 32, 0.94) 0%, rgba(6, 19, 32, 0.8) 100%), url('../img/guidance-bg.webp') no-repeat right center / cover;
    padding: 42px 0;
    min-height: auto;
  }

  /* Process steps */
  .process-steps-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-item:not(:first-child) {
    border-left: none;
  }

  .step-item:not(:first-child)::before {
    display: none;
  }

  /* Why Grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-summary-box {
    padding: 14px 16px;
  }

  .why-summary-box p {
    font-size: 0.88rem;
  }

  /* Choose grid */
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Affordable Banner */
  .affordable-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0px;
  }

  .affordable-img-col {
    max-width: 240px;
    margin: 0 auto;
  }

  /* What Can You Ask grid */
  .ask-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .ask-card {
    padding: 10px 4px;
    min-height: auto;
  }

  .ask-name {
    font-size: 0.72rem;
  }

  /* Process grid */
  .process-six-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews grid */
  .reviews-container-grid {
    grid-template-columns: 1fr;
  }

  .google-official-box {
    grid-column: span 1;
  }

  /* FAQ */
  .faq-single-column {
    max-width: 100%;
  }

  .faq-accordion-btn {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-accordion-body p {
    font-size: 0.85rem;
    padding-top: 10px;
  }

  /* Final CTA */
  .final-cta-section {
    padding: 42px 0;
    background-position: center;
  }

  .final-cta-section::before {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.96) 0%, rgba(255, 250, 240, 0.92) 100%);
  }

  .final-cta-container {
    flex-direction: column;
    text-align: center;
    padding: 0 10px;
    gap: 20px;
  }

  .final-cta-content {
    max-width: 100%;
    margin-left: 0;
  }

  .final-cta-btn-group {
    justify-content: center;
  }

  .guidance-quote {
    display: none;
  }

  /* Find Us Section */
  .find-us-section {
    padding: 28px 0 32px;
  }

  .find-us-header {
    gap: 12px;
    margin-bottom: 20px;
  }

  .find-us-line {
    width: 50px;
  }

  .find-us-title {
    font-size: 0.82rem;
  }

  .find-us-row {
    gap: 20px 28px;
  }

  .find-us-logo {
    height: 48px;
    max-width: 150px;
  }

  /* Footer */
  .site-footer {
    padding-bottom: 80px;
  }

  .footer-grid-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* --- Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem;
  }

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

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

  .ask-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .process-six-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .visit-temple-photo {
    width: 100%;
    height: auto;
  }

  .visit-map-side {
    height: 200px;
    min-height: 180px;
  }

  .final-cta-title {
    font-size: 1.45rem;
  }

  .final-cta-lead {
    font-size: 0.92rem;
  }

  .final-cta-btn-group .btn {
    width: 100%;
  }

  .footer-social-row {
    justify-content: center;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-subtitle {
    font-size: 0.5rem;
  }

  /* Trust Strip Mobile */
  .trust-strip-icon-box {
    width: 76px;
    height: 76px;
    margin-bottom: 6px;
  }

  .trust-strip-label {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  /* Find Us Mobile */
  .find-us-section {
    padding: 24px 0 28px;
  }

  .find-us-row {
    gap: 16px 20px;
  }

  .find-us-logo {
    height: 42px;
    max-width: 135px;
  }
}

/* --- Compact Mobile Screens (max-width: 360px) --- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .btn {
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  /* Trust Strip & Find Us Compact */
  .trust-strip-item {
    width: calc(50% - 6px);
    min-width: 115px;
  }

  .trust-strip-icon-box {
    width: 68px;
    height: 68px;
  }

  .trust-strip-label {
    font-size: 0.74rem;
  }

  .find-us-line {
    width: 35px;
  }

  .find-us-title {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .find-us-logo {
    height: 36px;
    max-width: 115px;
  }
}
