/* ==========================================================================
   ACHARYA S. K. JOSHI - OFFICIAL WEBSITE DESIGN SYSTEM
   Theme: Spiritual, Traditional, Premium, Kamakhya Heritage, Trustworthy
   ========================================================================== */

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

:root {
  /* Color System */
  --bg-black: #080607;
  --bg-deep: #0f090b;
  --bg-surface: #170d10;
  --bg-card: #1f1115;
  --bg-card-hover: #29161c;
  --bg-card-alt: #160c0f;

  --maroon-primary: #3d0c14;
  --maroon-light: #5e1320;
  --maroon-border: rgba(180, 40, 60, 0.3);

  --gold-300: #fae498;
  --gold-400: #f5d77f;
  --gold-500: #d4af37;
  --gold-600: #b89125;
  --gold-700: #8c6a15;
  --gold-gradient: linear-gradient(135deg, #fae498 0%, #d4af37 50%, #a27a1a 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(245, 215, 127, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);

  --text-pure: #ffffff;
  --text-cream: #faf6ee;
  --text-muted: #c4b9aa;
  --text-sub: #948879;

  --border-gold: rgba(212, 175, 55, 0.28);
  --border-gold-subtle: rgba(212, 175, 55, 0.14);
  --border-gold-hover: rgba(212, 175, 55, 0.7);
  --border-dark: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.04);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.08);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --shadow-gold-lg: 0 8px 30px rgba(212, 175, 55, 0.45);

  /* Typography Tokens */
  --font-heading: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout Tokens */
  --max-width: 1240px;
  --nav-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-black);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Global Background Ambience Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(61, 12, 20, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(140, 106, 21, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(61, 12, 20, 0.25) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-pure);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin-bottom: 0.75rem;
  color: var(--gold-400);
}

h4 {
  font-size: 1.15rem;
  color: var(--text-cream);
}

p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

p.lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--text-cream);
}

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

a:hover {
  color: var(--gold-300);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-sm {
  padding: 3.5rem 0;
}

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

.text-gold {
  color: var(--gold-500);
}

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

/* Gold Ornamental Dividers */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto 2rem auto;
}

.ornament::before,
.ornament::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.ornament-symbol {
  color: var(--gold-400);
  font-size: 1.1rem;
}

/* Section Header Shared Component */
.section-header {
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid var(--border-gold);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #1b070b 0%, #2f0a10 50%, #1b070b 100%);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  color: var(--gold-300);
  text-align: center;
}

.top-notice-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-info-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-info-left span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.top-info-right a {
  color: var(--gold-400);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-right a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(12, 8, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold-subtle);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(8, 5, 7, 0.98);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  border-bottom-color: var(--border-gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.85rem;
  z-index: 1001;
}

.brand-logo img,
.brand-logo svg {
  height: 54px;
  width: auto;
  display: block;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-cream);
  letter-spacing: 0.03em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--gold-400);
  padding: 0.5rem 0.75rem;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1001;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #120902;
  box-shadow: var(--shadow-gold);
  border-color: #f7df8f;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fae498 50%, #d4af37 100%);
  color: #0d0601;
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(61, 12, 20, 0.5);
  color: var(--text-cream);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(94, 19, 32, 0.85);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-400);
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 1.08rem;
}

.btn-pulse {
  animation: pulse-border 2.5s infinite;
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 6rem 0;
  min-height: calc(100vh - var(--nav-height) - 40px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(8, 6, 7, 0.95) 0%, rgba(8, 6, 7, 0.85) 50%, rgba(20, 8, 12, 0.6) 100%),
    radial-gradient(circle at 75% 35%, rgba(61, 12, 20, 0.4) 0%, transparent 60%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.7) contrast(1.1);
  mask-image: linear-gradient(to right, transparent, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(61, 12, 20, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.15rem;
  font-size: 0.85rem;
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-gold-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--gold-400);
  flex-shrink: 0;
}

.hero-visual-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.hero-visual-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold-subtle);
  margin-bottom: 1.25rem;
}

.consultation-quick-box {
  background: rgba(15, 9, 11, 0.85);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quick-box-info h4 {
  font-size: 0.95rem;
  color: var(--gold-400);
  margin-bottom: 0.2rem;
}

.quick-box-info p {
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-bottom: 0;
}

/* ==========================================================================
   TRUST / INTRO SECTION
   ========================================================================== */
.trust-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-intro-image-wrap {
  position: relative;
}

.trust-intro-image {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.experience-badge-float {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: linear-gradient(135deg, #2b080f 0%, #150608 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.experience-badge-float .exp-years {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.experience-badge-float .exp-text {
  font-size: 0.8rem;
  color: var(--text-cream);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold-400);
  margin-bottom: 0.6rem;
}

.pillar-card h4 {
  font-size: 1rem;
  color: var(--text-cream);
  margin-bottom: 0.4rem;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.service-card-top {
  margin-bottom: 1.5rem;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
}

/* ==========================================================================
   PROCESS TIMELINE SECTION
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   CALLOUT BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #2b080f 0%, #150608 50%, #20080f 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--text-cream);
  margin-bottom: 2rem;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.phone-display-lg {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-cream);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-400);
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--gold-400);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.6rem 1.4rem 1.6rem;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs-bar {
  background: rgba(15, 9, 11, 0.6);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 0.9rem 0;
  font-size: 0.88rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.breadcrumb-item a {
  color: var(--text-muted);
}

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

.breadcrumb-separator {
  color: var(--gold-600);
  font-size: 0.75rem;
}

.breadcrumb-item.active {
  color: var(--gold-300);
  font-weight: 600;
}

/* ==========================================================================
   SEO SERVICE PAGE SPECIFIC STYLING
   ========================================================================== */
.seo-article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.seo-article-content {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
}

.seo-article-content h2 {
  font-size: 1.65rem;
  color: var(--gold-400);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-gold-subtle);
  padding-bottom: 0.5rem;
}

.seo-article-content h2:first-of-type {
  margin-top: 0;
}

.seo-article-content h3 {
  font-size: 1.25rem;
  color: var(--text-cream);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.seo-article-content ul, 
.seo-article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.seo-article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.seo-featured-image-box {
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
}

.seo-featured-image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.seo-featured-image-box figcaption {
  background: #12090b;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-sub);
  text-align: center;
  border-top: 1px solid var(--border-dark);
}

.spiritual-quote-box {
  background: linear-gradient(135deg, rgba(61, 12, 20, 0.4) 0%, rgba(20, 9, 12, 0.6) 100%);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}

.spiritual-quote-box p {
  color: var(--text-cream);
  font-style: italic;
  margin-bottom: 0;
}

/* Sticky Sidebar */
.seo-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
}

.sidebar-card h4 {
  font-size: 1.15rem;
  color: var(--gold-400);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-gold-subtle);
  padding-bottom: 0.5rem;
}

.sidebar-service-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-service-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.sidebar-service-links a:hover {
  background: rgba(61, 12, 20, 0.4);
  border-color: var(--gold-500);
  color: var(--gold-300);
  padding-left: 1.1rem;
}

.sidebar-callout {
  background: linear-gradient(135deg, #300c14 0%, #150608 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: center;
}

.sidebar-callout h4 {
  font-size: 1.2rem;
  color: var(--gold-300);
  margin-bottom: 0.6rem;
  border: none;
  padding: 0;
}

.sidebar-callout p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   CONTACT PAGE & MAP
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.contact-channel-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 2rem 0;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

.channel-details h4 {
  font-size: 1.05rem;
  color: var(--text-cream);
  margin-bottom: 0.25rem;
}

.channel-details p,
.channel-details a {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.channel-details a:hover {
  color: var(--gold-400);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(10, 6, 8, 0.8);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-wrapper {
  margin-top: 3.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(1.1);
}

/* ==========================================================================
   DISCLAIMER & FOOTER
   ========================================================================== */
.disclaimer-banner {
  background: #11080a;
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 1.75rem 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-sub);
}

.disclaimer-banner strong {
  color: var(--gold-400);
}

.site-footer {
  background: #090506;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4.5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1.25rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-contact-item svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-sub);
}

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

.footer-legal-links a {
  color: var(--text-sub);
}

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

/* ==========================================================================
   MOBILE FLOATING QUICK ACTION BAR
   ========================================================================== */
.mobile-quick-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 6, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 0.75rem 1rem;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.7);
}

.mobile-quick-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  text-align: center;
}

.mobile-call-btn {
  background: var(--gold-gradient);
  color: #120902;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.mobile-whatsapp-btn {
  background: #1e7e34;
  color: #fff;
  border: 1px solid #28a745;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-bg-img {
    width: 100%;
    opacity: 0.25;
  }
  .trust-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .seo-article-layout {
    grid-template-columns: 1fr;
  }
  .seo-sidebar {
    position: static;
    margin-top: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* Space for sticky mobile quick bar */
  }
  
  .top-notice-bar {
    display: none; /* Keep header ultra lean on mobile */
  }

  .nav-container {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 6, 8, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 1000;
  }

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

  .nav-link {
    font-size: 1.2rem;
  }

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

  .mobile-quick-bar {
    display: block;
  }

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

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

  .trust-pillars {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .seo-article-content {
    padding: 2rem 1.25rem;
  }

  .cta-banner {
    padding: 2.5rem 1.25rem;
  }
}
