/*
Theme Name:   Satya Photography
Theme URI:    https://satyaphotography.in
Description:  Premium luxury wedding photography theme for Satya Photography. Cinematic, emotional, minimal design. Fully compatible with Themify Builder for drag-and-drop page editing. All page content is stored as Themify Builder data for full customization. v7 fixes builder data migration, adds Google Maps, video embeds, hero background image, and admin rebuild tool.
Author:       Satya Photography Studio
Author URI:   https://satyaphotography.in
Version:      7.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  satya-photography
Tags:         wedding, photography, cinematic, luxury, dark, one-column, two-columns, custom-colors, custom-logo, featured-images, theme-options, threaded-comments
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 7.4
*/


/* ============================================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================================ */
:root {
  /* — Colors — */
  --satya-noir:           #0f0e0d;
  --satya-gold:           #b89a6a;
  --satya-cream:          #f9f6f1;
  --satya-warm-ash:       #7a7570;
  --satya-dark-surface:   #1a1918;
  --satya-card-bg:        #161514;
  --satya-gold-hover:     #c9a87a;
  --satya-gold-muted:     rgba(184, 154, 106, 0.15);
  --satya-gold-border:    rgba(184, 154, 106, 0.3);
  --satya-cream-muted:    #e8e2d9;
  --satya-white:          #ffffff;

  /* — Fonts — */
  --satya-font-display:   'Cormorant Garamond', 'Georgia', serif;
  --satya-font-body:      'Inter', 'Helvetica Neue', sans-serif;

  /* — Spacing — */
  --satya-section-py:     100px;
  --satya-section-px:     24px;
  --satya-container-max:  1400px;
  --satya-row-gap:        40px;
  --satya-col-gap:        24px;

  /* — Transitions — */
  --satya-ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --satya-duration:       0.4s;
  --satya-duration-slow:  0.8s;
  --satya-duration-fast:  0.25s;

  /* — Z-Index — */
  --satya-z-header:      1000;
  --satya-z-overlay:     9000;
  --satya-z-float:       9999;
  --satya-z-sticky-bar:  9998;

  /* — Borders — */
  --satya-radius:         0px;
}


/* ============================================================================
   2. GLOBAL RESET & BASE
   ============================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--satya-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--satya-cream);
  background-color: var(--satya-noir);
  overflow-x: hidden;
}

::selection {
  background-color: var(--satya-gold);
  color: var(--satya-noir);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--satya-noir); }
::-webkit-scrollbar-thumb { background: var(--satya-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--satya-gold-hover); }

html {
  scrollbar-width: thin;
  scrollbar-color: var(--satya-gold) var(--satya-noir);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--satya-gold); text-decoration: none; transition: color var(--satya-duration) var(--satya-ease); }
a:hover { color: var(--satya-gold-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }


/* ============================================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================================ */
h1, .satya-h1 {
  font-family: var(--satya-font-display);
  font-weight: 300;
  font-size: clamp(36px, 8vw, 88px);
  line-height: 1.05;
  color: var(--satya-cream);
  letter-spacing: -0.02em;
}

h2, .satya-h2 {
  font-family: var(--satya-font-display);
  font-weight: 300;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  color: var(--satya-cream);
  letter-spacing: -0.01em;
}

h3, .satya-h3 {
  font-family: var(--satya-font-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  color: var(--satya-cream);
}

h4, .satya-h4 {
  font-family: var(--satya-font-display);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  color: var(--satya-cream);
}

p, .satya-body {
  font-family: var(--satya-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--satya-cream);
}

.satya-light-section p,
.satya-light-section .satya-body {
  color: var(--satya-noir);
}

.satya-section-label {
  font-family: var(--satya-font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--satya-gold);
  margin-bottom: 16px;
  display: block;
}

strong, b { font-weight: 600; }
em, i { font-style: italic; }


/* ============================================================================
   4. LAYOUT SYSTEM
   ============================================================================ */
.satya-container, .container {
  max-width: var(--satya-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--satya-section-px);
  padding-right: var(--satya-section-px);
  width: 100%;
}

.satya-section { padding: var(--satya-section-py) 0; position: relative; }
.satya-mx-auto { margin-left: auto; margin-right: auto; }


/* ============================================================================
   5. NAVIGATION / HEADER
   ============================================================================ */
.satya-site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: var(--satya-z-header);
  padding: 20px 0;
  transition: background-color var(--satya-duration) var(--satya-ease),
              padding var(--satya-duration) var(--satya-ease),
              backdrop-filter var(--satya-duration) var(--satya-ease);
  background-color: transparent;
}

.satya-site-header.satya-header-scrolled {
  background-color: rgba(15, 14, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--satya-gold-border);
}

.satya-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--satya-container-max);
  margin: 0 auto;
  padding: 0 var(--satya-section-px);
}

.satya-logo a { display: flex; align-items: center; }
.satya-logo img { max-height: 50px; width: auto; transition: max-height var(--satya-duration) var(--satya-ease); }
.satya-header-scrolled .satya-logo img { max-height: 40px; }
.satya-logo-text {
  font-family: var(--satya-font-display);
  font-weight: 600; font-size: 1.5rem;
  letter-spacing: 0.04em; color: var(--satya-cream);
}

.satya-primary-nav .satya-nav-list {
  display: flex; align-items: center;
  gap: 36px; list-style: none; margin: 0; padding: 0;
}

.satya-primary-nav .satya-nav-list li a {
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--satya-cream); text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color var(--satya-duration) var(--satya-ease);
}

.satya-primary-nav .satya-nav-list li a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 1px;
  background-color: var(--satya-gold);
  transition: width var(--satya-duration) var(--satya-ease);
}

.satya-primary-nav .satya-nav-list li a:hover,
.satya-primary-nav .satya-nav-list li.current-menu-item a { color: var(--satya-gold); }
.satya-primary-nav .satya-nav-list li a:hover::after,
.satya-primary-nav .satya-nav-list li.current-menu-item a::after { width: 100%; }

.satya-header-cta .satya-btn-cta {
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--satya-noir); background-color: var(--satya-gold);
  padding: 12px 28px; border: 1px solid var(--satya-gold);
  text-decoration: none; display: inline-block;
  transition: all var(--satya-duration) var(--satya-ease);
  white-space: nowrap;
}

.satya-header-cta .satya-btn-cta:hover {
  background-color: var(--satya-gold-hover);
  border-color: var(--satya-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(184, 154, 106, 0.3);
  color: var(--satya-noir);
}

/* Hamburger */
.satya-hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  width: 40px; height: 40px; cursor: pointer;
  z-index: calc(var(--satya-z-overlay) + 1);
  background: none; border: none;
}

.satya-hamburger-line {
  display: block; width: 24px; height: 1px;
  background-color: var(--satya-cream);
  transition: all var(--satya-duration) var(--satya-ease);
  margin: 4px 0;
}

.satya-hamburger.satya-active .satya-hamburger-line--1 { transform: rotate(45deg) translate(4px, 4px); }
.satya-hamburger.satya-active .satya-hamburger-line--2 { opacity: 0; }
.satya-hamburger.satya-active .satya-hamburger-line--3 { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Overlay */
.satya-mobile-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--satya-noir);
  z-index: var(--satya-z-overlay);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--satya-duration-slow) var(--satya-ease),
              visibility var(--satya-duration-slow) var(--satya-ease);
}

.satya-mobile-overlay.satya-open { opacity: 1; visibility: visible; }

.satya-mobile-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; z-index: 2;
}

.satya-close-icon { font-size: 32px; color: var(--satya-cream); line-height: 1; }

.satya-mobile-nav .satya-mobile-nav-list {
  text-align: center; list-style: none; padding: 0; margin: 0;
}

.satya-mobile-nav .satya-mobile-nav-list li a {
  display: block;
  font-family: var(--satya-font-display);
  font-weight: 300; font-size: clamp(28px, 6vw, 48px);
  color: var(--satya-cream); padding: 16px 0;
  text-decoration: none;
  transition: color var(--satya-duration) var(--satya-ease),
              transform var(--satya-duration) var(--satya-ease);
}

.satya-mobile-nav .satya-mobile-nav-list li a:hover {
  color: var(--satya-gold); transform: translateX(8px);
}

.satya-mobile-cta {
  margin-top: 40px; display: flex;
  flex-direction: column; align-items: center; gap: 16px;
}

.satya-mobile-cta a {
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 14px;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 14px 28px; border: 1px solid var(--satya-gold);
  color: var(--satya-gold); text-decoration: none;
  transition: all var(--satya-duration) var(--satya-ease);
}

.satya-mobile-cta a:hover { background-color: var(--satya-gold); color: var(--satya-noir); }

body.satya-menu-open { overflow: hidden; }

.satya-skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--satya-gold); color: var(--satya-noir);
  padding: 8px 16px; z-index: 100000; font-size: 14px; font-weight: 600;
}
.satya-skip-link:focus { top: 0; }


/* ============================================================================
   6. HERO SECTIONS
   ============================================================================ */
.satya-hero {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background-color: var(--satya-noir);
}

.satya-hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(15,14,13,0.5) 0%, rgba(15,14,13,0.7) 60%, rgba(15,14,13,0.95) 100%);
  z-index: 1;
}

.satya-page-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background-color: var(--satya-noir);
}

.satya-divider {
  width: 60px; height: 1px;
  background-color: var(--satya-gold);
  margin: 40px auto; border: none;
}


/* ============================================================================
   7. BUTTONS
   ============================================================================ */
.satya-btn, .satya-btn-primary, .satya-btn-secondary, .satya-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 2.5px;
  padding: 16px 36px; border-radius: var(--satya-radius);
  cursor: pointer; text-decoration: none;
  transition: all var(--satya-duration) var(--satya-ease);
  position: relative; overflow: hidden;
  white-space: nowrap; line-height: 1;
  border: 1px solid transparent;
}

.satya-btn-primary {
  background-color: var(--satya-gold);
  color: var(--satya-noir); border-color: var(--satya-gold);
}

.satya-btn-primary:hover {
  background-color: var(--satya-gold-hover);
  border-color: var(--satya-gold-hover);
  color: var(--satya-noir); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 154, 106, 0.35);
}

.satya-btn-secondary {
  background-color: transparent;
  color: var(--satya-gold); border-color: var(--satya-gold);
}

.satya-btn-secondary:hover {
  background-color: var(--satya-gold);
  color: var(--satya-noir); border-color: var(--satya-gold);
  transform: translateY(-2px);
}

.satya-btn-ghost {
  background-color: transparent;
  color: var(--satya-cream); border-color: rgba(249, 246, 241, 0.3);
}

.satya-btn-ghost:hover {
  border-color: var(--satya-gold);
  color: var(--satya-gold); transform: translateY(-2px);
}


/* ============================================================================
   8. SECTION COMPONENTS
   ============================================================================ */
.satya-dark-section { background-color: var(--satya-noir); color: var(--satya-cream); }
.satya-light-section { background-color: var(--satya-cream); color: var(--satya-noir); }
.satya-light-section h1, .satya-light-section h2,
.satya-light-section h3, .satya-light-section h4 { color: var(--satya-noir); }
.satya-light-section .satya-section-label { color: var(--satya-gold); }
.satya-light-section a { color: var(--satya-gold); }

.satya-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--satya-ease), transform 0.8s var(--satya-ease);
}
.satya-reveal.satya-revealed { opacity: 1; transform: translateY(0); }


/* ============================================================================
   9. STATS
   ============================================================================ */
.satya-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--satya-col-gap); text-align: center;
}

.satya-stat-number {
  font-family: var(--satya-font-display);
  font-weight: 300; font-size: clamp(48px, 6vw, 72px);
  line-height: 1; color: var(--satya-gold); margin-bottom: 12px;
  display: block;
}

.satya-stat-label {
  font-family: var(--satya-font-body);
  font-weight: 300; font-size: 14px;
  color: var(--satya-cream); text-transform: uppercase; letter-spacing: 2px;
  display: block;
}

.satya-stats-row .satya-stat:not(:last-child) {
  border-right: 1px solid rgba(184,154,106,0.15);
}


/* ============================================================================
   10. TESTIMONIALS
   ============================================================================ */
.satya-testimonial-quote-mark {
  font-family: var(--satya-font-display);
  font-size: 80px; line-height: 1;
  color: var(--satya-gold); opacity: 0.3; margin-bottom: 16px;
  display: block;
}

.satya-testimonial-text {
  font-family: var(--satya-font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.5; color: var(--satya-cream); margin-bottom: 32px;
}

.satya-testimonial-dots {
  display: flex; align-items: center;
  justify-content: center; gap: 10px; margin-top: 40px;
}

.satya-testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background-color: rgba(249,246,241,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: all var(--satya-duration) var(--satya-ease);
}

.satya-testimonial-dot.satya-active {
  background-color: var(--satya-gold); transform: scale(1.2);
}


/* ============================================================================
   11. STORY CARDS
   ============================================================================ */
.satya-story-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; cursor: pointer;
  background-color: var(--satya-dark-surface);
}

.satya-story-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--satya-ease);
}

.satya-story-card:hover img { transform: scale(1.08); }

.satya-stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--satya-col-gap);
}


/* ============================================================================
   12. PRICING CARDS
   ============================================================================ */
.satya-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--satya-col-gap);
}

.satya-pricing-card {
  background-color: var(--satya-card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 32px; text-align: center;
  transition: border-color var(--satya-duration) var(--satya-ease),
              transform var(--satya-duration) var(--satya-ease);
  position: relative;
}

.satya-pricing-card:hover {
  border-color: var(--satya-gold-border); transform: translateY(-4px);
}

.satya-pricing-card.satya-featured {
  border-color: var(--satya-gold);
  background: linear-gradient(180deg, rgba(184,154,106,0.08) 0%, var(--satya-card-bg) 40%);
}

.satya-pricing-card .satya-package-name {
  font-family: var(--satya-font-display);
  font-weight: 400; font-size: 24px;
  color: var(--satya-cream); margin-bottom: 8px;
}

.satya-pricing-card .satya-package-price {
  font-family: var(--satya-font-display);
  font-weight: 300; font-size: 48px;
  color: var(--satya-gold); margin-bottom: 24px;
}

.satya-pricing-card .satya-package-features {
  list-style: none; padding: 0; margin: 0 0 32px 0; text-align: left;
}

.satya-pricing-card .satya-package-features li {
  font-family: var(--satya-font-body);
  font-weight: 300; font-size: 14px;
  color: var(--satya-cream-muted);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* ============================================================================
   13. FAQ ACCORDION
   ============================================================================ */
.satya-faq-list { max-width: 800px; margin: 0 auto; }
.satya-faq-item { border-top: 1px solid var(--satya-gold-border); }
.satya-faq-item:last-child { border-bottom: 1px solid var(--satya-gold-border); }

.satya-faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 24px 0; background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: var(--satya-font-display);
  font-weight: 400; font-size: 20px; color: var(--satya-cream);
  transition: color var(--satya-duration) var(--satya-ease);
}

.satya-faq-item.satya-open .satya-faq-question { color: var(--satya-gold); }

.satya-faq-icon {
  font-size: 24px; color: var(--satya-gold);
  transition: transform var(--satya-duration) var(--satya-ease);
  flex-shrink: 0; margin-left: 20px;
  font-family: var(--satya-font-body); font-weight: 300;
}

.satya-faq-item.satya-open .satya-faq-icon { transform: rotate(45deg); }

.satya-faq-answer {
  font-family: var(--satya-font-body);
  font-weight: 300; font-size: 15px;
  color: var(--satya-warm-ash); line-height: 1.7;
  padding-bottom: 24px; display: none;
}

.satya-faq-item.satya-open .satya-faq-answer { display: block; }


/* ============================================================================
   14. CONTACT FORM
   ============================================================================ */
.satya-contact-form { display: flex; flex-direction: column; gap: 22px; }
.satya-form-group { display: flex; flex-direction: column; gap: 6px; }

.satya-form-label {
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--satya-cream);
}

.satya-form-input {
  font-family: var(--satya-font-body);
  font-weight: 300; font-size: 15px;
  color: var(--satya-cream);
  background: var(--satya-dark-surface);
  border: 1px solid rgba(122,117,112,0.3);
  border-radius: 2px; padding: 14px 16px;
  outline: none; transition: border-color 0.3s ease; width: 100%;
}

.satya-form-input:focus { border-color: var(--satya-gold); }
.satya-form-input::placeholder { color: var(--satya-warm-ash); }
.satya-form-select { cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
.satya-form-textarea { resize: vertical; min-height: 120px; }


/* ============================================================================
   15. FILM CARDS
   ============================================================================ */
.satya-film-card {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; cursor: pointer;
  background-color: var(--satya-dark-surface);
}

.satya-film-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--satya-ease), opacity 0.6s var(--satya-ease);
}

.satya-film-card:hover img { transform: scale(1.05); opacity: 0.6; }

.satya-film-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(249,246,241,0.6);
  background: rgba(184,154,106,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease; backdrop-filter: blur(4px);
  cursor: pointer; z-index: 2;
}

.satya-film-play-btn:hover {
  background: rgba(184,154,106,0.4);
  border-color: var(--satya-gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.satya-film-play-btn svg { fill: var(--satya-cream); }

.satya-films-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--satya-col-gap);
}

/* Video iframe in film card */
.satya-film-card iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 3;
}


/* ============================================================================
   16. TIMELINE
   ============================================================================ */
.satya-timeline {
  position: relative; padding-left: 48px; max-width: 700px;
}

.satya-timeline::before {
  content: ''; position: absolute;
  top: 0; left: 15px; width: 1px; height: 100%;
  background-color: var(--satya-gold);
}

.satya-timeline-step { position: relative; padding-bottom: 40px; }

.satya-timeline-dot {
  position: absolute; left: -40px; top: 4px;
  width: 32px; height: 32px; border-radius: 50%;
  background-color: var(--satya-noir); border: 2px solid var(--satya-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 12px; color: var(--satya-gold); z-index: 2;
}


/* ============================================================================
   17. FOOTER
   ============================================================================ */
.satya-pre-footer-cta {
  background-color: var(--satya-noir); padding: 100px 0;
  text-align: center; border-top: 1px solid var(--satya-gold-border);
}

.satya-pre-footer-cta__heading {
  font-family: var(--satya-font-display);
  font-weight: 300; font-size: clamp(28px, 5vw, 48px);
  color: var(--satya-cream); margin-bottom: 32px;
}

.satya-pre-footer-cta__buttons {
  display: flex; align-items: center;
  justify-content: center; gap: 20px; flex-wrap: wrap;
}

.satya-site-footer { background-color: var(--satya-dark-surface); padding-top: 80px; }

.satya-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px; max-width: var(--satya-container-max);
  margin: 0 auto; padding: 0 var(--satya-section-px);
}

.satya-footer-heading {
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 13px;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--satya-cream); margin-bottom: 24px;
}

.satya-footer-links, .satya-footer-connect { list-style: none; padding: 0; margin: 0; }
.satya-footer-links li, .satya-footer-connect li { margin-bottom: 12px; }

.satya-footer-links a, .satya-footer-connect a {
  font-family: var(--satya-font-body);
  font-weight: 300; font-size: 14px;
  color: var(--satya-warm-ash); text-decoration: none;
  transition: color var(--satya-duration) var(--satya-ease);
}

.satya-footer-links a:hover, .satya-footer-connect a:hover { color: var(--satya-gold); }

.satya-footer-tagline {
  font-family: var(--satya-font-body);
  font-weight: 300; font-size: 14px;
  color: var(--satya-warm-ash); margin-top: 16px;
}

.satya-footer-logo img { max-height: 50px; width: auto; }

.satya-footer-social { display: flex; gap: 16px; margin-top: 16px; }

.satya-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  color: var(--satya-cream);
  transition: all var(--satya-duration) var(--satya-ease);
}

.satya-social-icon:hover { border-color: var(--satya-gold); color: var(--satya-gold); }

.satya-copyright-bar {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.satya-copyright-inner {
  max-width: var(--satya-container-max);
  margin: 0 auto; padding: 0 var(--satya-section-px);
  display: flex; align-items: center; justify-content: space-between;
}

.satya-copyright-text, .satya-copyright-crafted {
  font-family: var(--satya-font-body);
  font-weight: 300; font-size: 13px; color: var(--satya-warm-ash);
}


/* ============================================================================
   18. FLOATING BUTTON & MOBILE BAR
   ============================================================================ */
.satya-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background-color: var(--satya-gold);
  display: flex; align-items: center; justify-content: center;
  z-index: var(--satya-z-float);
  box-shadow: 0 4px 20px rgba(184,154,106,0.4);
  transition: transform var(--satya-duration) var(--satya-ease);
  text-decoration: none;
}

.satya-whatsapp-float:hover { transform: scale(1.1); }

.satya-whatsapp-float__pulse {
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background-color: var(--satya-gold);
  animation: satya-pulse 2s ease-out infinite; z-index: -1;
}

@keyframes satya-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

.satya-mobile-bar {
  display: none; position: fixed;
  bottom: 0; left: 0; width: 100%;
  background-color: var(--satya-noir);
  border-top: 1px solid var(--satya-gold-border);
  z-index: var(--satya-z-sticky-bar); padding: 8px 0;
}

.satya-mobile-bar__btn {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex: 1; padding: 10px;
  font-family: var(--satya-font-body);
  font-weight: 500; font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; color: var(--satya-cream);
  transition: color var(--satya-duration) var(--satya-ease);
}

.satya-mobile-bar__btn:hover { color: var(--satya-gold); }


/* ============================================================================
   19. PAGE CONTENT WRAPPER & THEMIFY BUILDER COMPATIBILITY
   ============================================================================ */
.satya-page-content { padding: 0; }

/* Themify Builder row layout — full-width rows should span 100% */
.satya-page-content .themify_builder_content .module_row {
  max-width: 100%;
  margin: 0;
}

/* Container within builder rows should be constrained */
.satya-page-content .themify_builder_content .module_row .row_inner {
  max-width: var(--satya-container-max);
  margin: 0 auto;
  padding-left: var(--satya-section-px);
  padding-right: var(--satya-section-px);
}

/* Fullwidth rows should NOT have the inner max-width constraint */
.satya-page-content .themify_builder_content .module_row.fullwidth_row_container .row_inner,
.satya-page-content .themify_builder_content .module_row[data-row-height="fullheight"] .row_inner {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Ensure builder text modules inherit our typography */
.satya-page-content .themify_builder_content .module-text .tb_text_wrap {
  font-family: var(--satya-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--satya-cream);
}

/* Ensure builder text doesn't add unwanted margins */
.satya-page-content .themify_builder_content .module-text {
  margin-bottom: 0;
}

/* Our custom CSS classes applied via Themify Builder rows */
.themify_builder_content .module_row.satya-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.themify_builder_content .module_row.satya-page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Light section within builder needs special handling */
.themify_builder_content .module_row.satya-light-section .tb_text_wrap {
  color: var(--satya-noir);
}

.themify_builder_content .module_row.satya-light-section .tb_text_wrap h3,
.themify_builder_content .module_row.satya-light-section .tb_text_wrap h2 {
  color: var(--satya-noir);
}


/* ============================================================================
   20. 404 PAGE
   ============================================================================ */
.satya-404 {
  min-height: 80vh; display: flex;
  align-items: center; justify-content: center; text-align: center;
}


/* ============================================================================
   21. RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .satya-stories-grid { grid-template-columns: repeat(2, 1fr); }
  .satya-films-grid { grid-template-columns: repeat(2, 1fr); }
  .satya-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .satya-primary-nav,
  .satya-header-cta { display: none; }
  .satya-hamburger { display: flex; }
  .satya-mobile-bar { display: flex; }
  .satya-whatsapp-float { bottom: 80px; }

  .satya-stories-grid { grid-template-columns: 1fr; }
  .satya-films-grid { grid-template-columns: 1fr; }
  .satya-stats-row { grid-template-columns: repeat(2, 1fr); }
  .satya-footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .satya-pricing-grid { grid-template-columns: 1fr; }

  /* Make contact grid single column on mobile */
  .satya-contact-form-section {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .satya-stats-row { grid-template-columns: 1fr; }
  .satya-stats-row .satya-stat:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(184,154,106,0.15); }
}
