/*!
 * Satya Photography V4 — Custom Elementor Widget Styles
 * Version: 4.0.0
 * Mobile-first responsive CSS for all custom Elementor widgets
 *
 * Design Palette:
 *   Cream:         #F6F1E6
 *   Crimson:       #dc143c
 *   Crimson Dark:  #b01030
 *   Navy:          #2c3e50
 *   Navy Dark:     #1a252f
 *   Warm Gray:     #7f8c8d
 *   WhatsApp Green:#25D366
 *
 * Fonts:
 *   Headings — Playfair Display
 *   Body     — Inter
 *
 * Breakpoints (mobile-first):
 *   Default:  mobile  (375px+)
 *   640px:    sm      (small tablet)
 *   768px:    md      (tablet)
 *   1024px:   lg      (desktop)
 *   1280px:   xl      (large desktop)
 */

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Colors */
  --satya-cream: #F6F1E6;
  --satya-crimson: #dc143c;
  --satya-crimson-dark: #b01030;
  --satya-navy: #2c3e50;
  --satya-navy-dark: #1a252f;
  --satya-warm-gray: #7f8c8d;
  --satya-whatsapp: #25D366;

  /* Derived colors */
  --satya-crimson-10: rgba(220, 20, 60, 0.1);
  --satya-crimson-20: rgba(220, 20, 60, 0.2);
  --satya-crimson-80: rgba(220, 20, 60, 0.8);
  --satya-white-60: rgba(255, 255, 255, 0.6);
  --satya-white-70: rgba(255, 255, 255, 0.7);
  --satya-white-80: rgba(255, 255, 255, 0.8);

  /* Fonts */
  --satya-font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --satya-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --satya-section-py: 4rem;
  --satya-section-px: 1.25rem;
  --satya-gap: 1.5rem;
  --satya-radius: 0.75rem;
  --satya-radius-full: 9999px;

  /* Transitions */
  --satya-transition-fast: 0.2s ease;
  --satya-transition-base: 0.3s ease;
  --satya-transition-slow: 0.5s ease;

  /* Shadows */
  --satya-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --satya-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --satya-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   1. COMMON COMPONENTS — Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-base);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--satya-crimson);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--satya-crimson);
  color: #fff;
  border-color: var(--satya-crimson);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--satya-crimson-dark);
  border-color: var(--satya-crimson-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--satya-shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: #fff;
  color: var(--satya-navy);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-outline--crimson {
  color: var(--satya-crimson);
  border-color: var(--satya-crimson);
}

.btn-outline--crimson:hover,
.btn-outline--crimson:focus {
  background-color: var(--satya-crimson);
  color: #fff;
}

.btn-whatsapp {
  background-color: var(--satya-whatsapp);
  color: #fff;
  border-color: var(--satya-whatsapp);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1fb855;
  border-color: #1fb855;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--satya-shadow-md);
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

/* ==========================================================================
   2. SECTION HEADER (.satya-section-header)
   ========================================================================== */

.satya-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.satya-section-header__tagline {
  color: var(--satya-crimson);
  font-family: var(--satya-font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.satya-section-header__heading {
  font-family: var(--satya-font-heading);
  color: var(--satya-navy);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.satya-section-header__divider {
  width: 3.5rem;
  height: 3px;
  background-color: var(--satya-crimson);
  border: none;
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.satya-section-header__description {
  color: var(--satya-warm-gray);
  font-family: var(--satya-font-body);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.satya-section-header__description p {
  margin-bottom: 1rem;
}

.satya-section-header__description p:last-child {
  margin-bottom: 0;
}

.satya-section-header__cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.875rem 2rem;
  background-color: var(--satya-crimson);
  color: #fff;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-height: 44px;
  line-height: 1.4;
}

.satya-section-header__cta-btn:hover,
.satya-section-header__cta-btn:focus {
  background-color: var(--satya-crimson-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   3. HERO SLIDESHOW (.satya-hero-slideshow)
   ========================================================================== */

.satya-hero-slideshow {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  background-color: var(--satya-navy-dark);
}

.satya-hero-slideshow__slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.satya-hero-slideshow__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.satya-hero-slideshow__slide.active {
  opacity: 1;
  z-index: 1;
}

.satya-hero-slideshow__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 37, 47, 0.4) 0%,
    rgba(26, 37, 47, 0.6) 50%,
    rgba(26, 37, 47, 0.85) 100%
  );
  z-index: 2;
}

.satya-hero-slideshow__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 6rem 1.25rem 5rem;
}

.satya-hero-slideshow__tagline {
  color: var(--satya-white-70);
  font-family: var(--satya-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.satya-hero-slideshow__heading {
  font-family: var(--satya-font-heading);
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.satya-hero-slideshow__highlight {
  color: var(--satya-crimson);
}

.satya-hero-slideshow__description {
  color: var(--satya-white-70);
  font-family: var(--satya-font-body);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.satya-hero-slideshow__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.satya-hero-slideshow__cta--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: var(--satya-crimson);
  color: #fff;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--satya-crimson);
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-base);
}

.satya-hero-slideshow__cta--primary:hover,
.satya-hero-slideshow__cta--primary:focus {
  background-color: var(--satya-crimson-dark);
  border-color: var(--satya-crimson-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--satya-shadow-md);
}

.satya-hero-slideshow__cta--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: transparent;
  color: #fff;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-base);
}

.satya-hero-slideshow__cta--secondary:hover,
.satya-hero-slideshow__cta--secondary:focus {
  background-color: #fff;
  color: var(--satya-navy);
  border-color: #fff;
  transform: translateY(-2px);
}

.satya-hero-slideshow__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.satya-hero-slideshow__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all var(--satya-transition-base);
  padding: 0;
}

.satya-hero-slideshow__indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.satya-hero-slideshow__indicator.active {
  background-color: var(--satya-crimson);
  border: 2px solid #fff;
  width: 12px;
  height: 12px;
}

.satya-hero-slideshow__scroll-indicator {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--satya-font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: satya-bounce 2s infinite;
}

.satya-hero-slideshow__scroll-indicator svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes satya-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Hero — Tablet+ */
@media (min-width: 640px) {
  .satya-hero-slideshow__cta-group {
    flex-direction: row;
    gap: 1rem;
  }

  .satya-hero-slideshow__description {
    font-size: 1.125rem;
  }
}

/* Hero — Desktop */
@media (min-width: 1024px) {
  .satya-hero-slideshow__content {
    padding: 6rem 3rem 5rem;
  }

  .satya-hero-slideshow__tagline {
    font-size: 0.875rem;
  }

  .satya-hero-slideshow__cta--primary,
  .satya-hero-slideshow__cta--secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

/* ==========================================================================
   4. STATS COUNTER (.satya-stats-counter)
   ========================================================================== */

.satya-stats-counter {
  background-color: var(--satya-navy);
  padding: 3rem var(--satya-section-px);
}

.satya-stats-counter__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.satya-stats-counter__item {
  text-align: center;
}

.satya-stats-counter__number {
  font-family: var(--satya-font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--satya-crimson);
  line-height: 1.1;
}

.satya-stats-counter__suffix {
  font-family: var(--satya-font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--satya-crimson);
  line-height: 1.1;
}

.satya-stats-counter__label {
  color: var(--satya-white-60);
  font-family: var(--satya-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

/* Stats — Desktop */
@media (min-width: 768px) {
  .satya-stats-counter {
    padding: 4rem var(--satya-section-px);
  }

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

/* ==========================================================================
   5. FEATURED STORIES (.satya-featured-stories)
   ========================================================================== */

.satya-featured-stories {
  background-color: var(--satya-cream);
  padding: var(--satya-section-py) var(--satya-section-px);
}

.satya-featured-stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--satya-gap);
  max-width: 1200px;
  margin: 0 auto;
}

.satya-featured-stories__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--satya-radius);
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform var(--satya-transition-base), box-shadow var(--satya-transition-base);
}

.satya-featured-stories__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--satya-shadow-lg);
}

.satya-featured-stories__card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.satya-featured-stories__card-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.satya-featured-stories__card-heart svg {
  width: 100%;
  height: 100%;
  fill: var(--satya-crimson);
}

.satya-featured-stories__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.satya-featured-stories__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 3;
}

.satya-featured-stories__card-type {
  color: var(--satya-crimson);
  font-family: var(--satya-font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.satya-featured-stories__card-title {
  color: #fff;
  font-family: var(--satya-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.satya-featured-stories__card-location {
  color: var(--satya-white-60);
  font-family: var(--satya-font-body);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.satya-featured-stories__card-location svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

.satya-featured-stories__card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--satya-crimson);
  border-radius: 50%;
  opacity: 0;
  transform: translate(8px, -8px);
  transition: all var(--satya-transition-base);
}

.satya-featured-stories__card-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.satya-featured-stories__card:hover .satya-featured-stories__card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.satya-featured-stories__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--satya-transition-slow);
}

.satya-featured-stories__card:hover img {
  transform: scale(1.05);
}

.satya-featured-stories__view-all {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.satya-featured-stories__view-all a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--satya-crimson);
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--satya-transition-fast);
}

.satya-featured-stories__view-all a:hover {
  color: var(--satya-crimson-dark);
}

/* Featured Stories — Tablet */
@media (min-width: 640px) {
  .satya-featured-stories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Featured Stories — Desktop */
@media (min-width: 1024px) {
  .satya-featured-stories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .satya-featured-stories__card-title {
    font-size: 1.5rem;
  }

  .satya-featured-stories__card-content {
    padding: 2rem;
  }
}

/* ==========================================================================
   6. FILMS PREVIEW (.satya-films-preview)
   ========================================================================== */

.satya-films-preview {
  padding: var(--satya-section-py) var(--satya-section-px);
  background-color: var(--satya-navy-dark);
}

.satya-films-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--satya-gap);
  max-width: 1200px;
  margin: 0 auto;
}

.satya-films-preview__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--satya-radius);
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: transform var(--satya-transition-base);
}

.satya-films-preview__card:hover {
  transform: translateY(-4px);
}

.satya-films-preview__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--satya-transition-slow);
}

.satya-films-preview__card:hover img {
  transform: scale(1.05);
}

.satya-films-preview__card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.satya-films-preview__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--satya-crimson);
  border-radius: 50%;
  transition: all var(--satya-transition-base);
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
}

.satya-films-preview__play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px; /* optical centering for play icon */
}

.satya-films-preview__card:hover .satya-films-preview__play-btn {
  background-color: var(--satya-crimson-dark);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 28px rgba(220, 20, 60, 0.5);
}

.satya-films-preview__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 3;
}

.satya-films-preview__card-content h3 {
  color: #fff;
  font-family: var(--satya-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.25rem;
}

.satya-films-preview__card-content p {
  color: var(--satya-white-60);
  font-family: var(--satya-font-body);
  font-size: 0.875rem;
  margin: 0;
}

.satya-films-preview__view-all {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.satya-films-preview__view-all a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--satya-crimson);
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--satya-transition-fast);
}

.satya-films-preview__view-all a:hover {
  color: #fff;
}

/* Films Preview — Desktop */
@media (min-width: 768px) {
  .satya-films-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .satya-films-preview__play-btn {
    width: 80px;
    height: 80px;
  }

  .satya-films-preview__play-btn svg {
    width: 30px;
    height: 30px;
  }
}

/* ==========================================================================
   7. WHY CHOOSE US (.satya-why-choose-us)
   ========================================================================== */

.satya-why-choose-us {
  background-color: var(--satya-cream);
  padding: var(--satya-section-py) var(--satya-section-px);
}

.satya-why-choose-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--satya-gap);
  max-width: 1200px;
  margin: 0 auto;
}

.satya-why-choose-us__card {
  background-color: #fff;
  border-radius: var(--satya-radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all var(--satya-transition-base);
}

.satya-why-choose-us__card:hover {
  border-color: var(--satya-crimson);
  box-shadow: var(--satya-shadow-md);
  transform: translateY(-4px);
}

.satya-why-choose-us__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background-color: var(--satya-crimson-10);
  border-radius: 50%;
  transition: background-color var(--satya-transition-base);
}

.satya-why-choose-us__card:hover .satya-why-choose-us__card-icon {
  background-color: var(--satya-crimson-20);
}

.satya-why-choose-us__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--satya-crimson);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.satya-why-choose-us__card-title {
  font-family: var(--satya-font-heading);
  color: var(--satya-navy);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.satya-why-choose-us__card-desc {
  color: var(--satya-warm-gray);
  font-family: var(--satya-font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us — Small Tablet */
@media (min-width: 640px) {
  .satya-why-choose-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Why Choose Us — Desktop */
@media (min-width: 1024px) {
  .satya-why-choose-us__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   8. HOW IT WORKS (.satya-how-it-works)
   ========================================================================== */

.satya-how-it-works {
  padding: var(--satya-section-py) var(--satya-section-px);
  background-color: #fff;
}

.satya-how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.satya-how-it-works__step {
  text-align: center;
}

.satya-how-it-works__step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background-color: var(--satya-crimson-10);
  border-radius: 50%;
  transition: all var(--satya-transition-base);
}

.satya-how-it-works__step:hover .satya-how-it-works__step-icon {
  background-color: var(--satya-crimson);
}

.satya-how-it-works__step:hover .satya-how-it-works__step-icon svg {
  stroke: #fff;
}

.satya-how-it-works__step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--satya-crimson);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--satya-transition-base);
}

.satya-how-it-works__step-number {
  color: var(--satya-crimson);
  font-family: var(--satya-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.satya-how-it-works__step-title {
  font-family: var(--satya-font-heading);
  color: var(--satya-navy);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.satya-how-it-works__step-desc {
  color: var(--satya-warm-gray);
  font-family: var(--satya-font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* How It Works — Small Tablet */
@media (min-width: 640px) {
  .satya-how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* How It Works — Desktop */
@media (min-width: 1024px) {
  .satya-how-it-works__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   9. FAQ (.satya-faq)
   ========================================================================== */

.satya-faq {
  background-color: var(--satya-cream);
  padding: var(--satya-section-py) var(--satya-section-px);
}

.satya-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.satya-faq__item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--satya-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--satya-transition-fast);
}

.satya-faq__item:hover {
  border-color: rgba(220, 20, 60, 0.2);
}

.satya-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--satya-navy);
  line-height: 1.5;
  transition: color var(--satya-transition-fast);
  gap: 1rem;
}

.satya-faq__question:hover {
  color: var(--satya-crimson);
}

.satya-faq__question-text {
  flex: 1;
}

.satya-faq__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--satya-crimson);
  flex-shrink: 0;
  transition: transform var(--satya-transition-base);
}

.satya-faq__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.satya-faq__item.open .satya-faq__icon {
  transform: rotate(180deg);
}

.satya-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.satya-faq__answer.open {
  max-height: 500px;
}

.satya-faq__answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--satya-warm-gray);
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* FAQ — Tablet */
@media (min-width: 768px) {
  .satya-faq__question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .satya-faq__answer-inner {
    padding: 0 1.5rem 1.5rem;
  }
}

/* ==========================================================================
   10. CTA (.satya-cta)
   ========================================================================== */

.satya-cta {
  background-color: var(--satya-navy);
  color: #fff;
  text-align: center;
  padding: 3.5rem var(--satya-section-px);
}

.satya-cta__heading {
  font-family: var(--satya-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.satya-cta__description {
  color: var(--satya-white-60);
  font-family: var(--satya-font-body);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.satya-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.satya-cta__btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background-color: var(--satya-crimson);
  color: #fff;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--satya-crimson);
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-base);
}

.satya-cta__btn--primary:hover,
.satya-cta__btn--primary:focus {
  background-color: var(--satya-crimson-dark);
  border-color: var(--satya-crimson-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--satya-shadow-md);
}

.satya-cta__btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background-color: var(--satya-whatsapp);
  color: #fff;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--satya-whatsapp);
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-base);
}

.satya-cta__btn--secondary:hover,
.satya-cta__btn--secondary:focus {
  background-color: #1fb855;
  border-color: #1fb855;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--satya-shadow-md);
}

/* CTA — Tablet */
@media (min-width: 640px) {
  .satya-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .satya-cta {
    padding: 5rem var(--satya-section-px);
  }
}

/* ==========================================================================
   11. GALLERY (.satya-gallery)
   ========================================================================== */

.satya-gallery {
  background-color: var(--satya-cream);
  padding: var(--satya-section-py) var(--satya-section-px);
}

.satya-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.satya-gallery__filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-family: var(--satya-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--satya-navy);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-fast);
  white-space: nowrap;
}

.satya-gallery__filter-btn:hover {
  border-color: var(--satya-crimson);
  color: var(--satya-crimson);
}

.satya-gallery__filter-btn.active {
  background-color: var(--satya-crimson);
  color: #fff;
  border-color: var(--satya-crimson);
}

.satya-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--satya-gap);
  max-width: 1400px;
  margin: 0 auto;
}

.satya-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--satya-radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.satya-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--satya-transition-slow);
}

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

.satya-gallery__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 20, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--satya-transition-base);
  z-index: 2;
}

.satya-gallery__item:hover .satya-gallery__item-overlay {
  opacity: 1;
}

.satya-gallery__item-overlay svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(0.5);
  opacity: 0;
  transition: all var(--satya-transition-base);
}

.satya-gallery__item:hover .satya-gallery__item-overlay svg {
  transform: scale(1);
  opacity: 1;
}

.satya-gallery__item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #fff;
  font-family: var(--satya-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--satya-transition-base);
}

.satya-gallery__item:hover .satya-gallery__item-title {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery — Small Tablet */
@media (min-width: 640px) {
  .satya-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Gallery — Tablet */
@media (min-width: 768px) {
  .satya-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery — Desktop */
@media (min-width: 1024px) {
  .satya-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   12. FILMS GRID (.satya-films-grid)
   ========================================================================== */

.satya-films-grid {
  padding: var(--satya-section-py) var(--satya-section-px);
  background-color: var(--satya-navy-dark);
}

.satya-films-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--satya-gap);
  max-width: 1200px;
  margin: 0 auto;
}

.satya-films-grid__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--satya-radius);
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition: transform var(--satya-transition-base);
}

.satya-films-grid__card:hover {
  transform: translateY(-4px);
}

.satya-films-grid__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--satya-transition-slow);
}

.satya-films-grid__card:hover img {
  transform: scale(1.05);
}

.satya-films-grid__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.satya-films-grid__card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--satya-crimson);
  border-radius: 50%;
  transition: all var(--satya-transition-base);
  box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
}

.satya-films-grid__card-play svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-left: 2px;
}

.satya-films-grid__card:hover .satya-films-grid__card-play {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--satya-crimson-dark);
}

.satya-films-grid__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
}

.satya-films-grid__card-info h3 {
  color: #fff;
  font-family: var(--satya-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.satya-films-grid__card-info p {
  color: var(--satya-white-60);
  font-family: var(--satya-font-body);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

.satya-films-grid__quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  color: var(--satya-crimson);
  font-family: var(--satya-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--satya-transition-fast);
}

.satya-films-grid__quote-btn:hover {
  color: #fff;
}

.satya-films-grid__quote-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Films Grid — Tablet */
@media (min-width: 768px) {
  .satya-films-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .satya-films-grid__card-play {
    width: 72px;
    height: 72px;
  }

  .satya-films-grid__card-play svg {
    width: 26px;
    height: 26px;
  }

  .satya-films-grid__card-info h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .satya-films-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   13. STORY (.satya-story)
   ========================================================================== */

.satya-story {
  padding: var(--satya-section-py) var(--satya-section-px);
  background-color: #fff;
}

.satya-story__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.satya-story__image {
  width: 100%;
  border-radius: var(--satya-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.satya-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.satya-story__content {
  font-family: var(--satya-font-body);
}

.satya-story__content h2 {
  font-family: var(--satya-font-heading);
  color: var(--satya-navy);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.satya-story__content p {
  color: var(--satya-warm-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.satya-story__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.satya-story__stat-number {
  font-family: var(--satya-font-heading);
  color: var(--satya-crimson);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.satya-story__stat-label {
  color: var(--satya-warm-gray);
  font-family: var(--satya-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Story — Desktop */
@media (min-width: 768px) {
  .satya-story__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

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

/* ==========================================================================
   14. QUOTE BUILDER (.satya-quote-builder)
   ========================================================================== */

.satya-quote-builder {
  background-color: var(--satya-cream);
  padding: var(--satya-section-py) var(--satya-section-px);
}

.satya-quote-builder__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.satya-quote-builder__progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.satya-quote-builder__progress-dot {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--satya-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #fff;
  color: var(--satya-warm-gray);
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: all var(--satya-transition-base);
}

.satya-quote-builder__progress-step.active .satya-quote-builder__progress-dot,
.satya-quote-builder__progress-step.completed .satya-quote-builder__progress-dot {
  background-color: var(--satya-crimson);
  border-color: var(--satya-crimson);
  color: #fff;
}

.satya-quote-builder__progress-line {
  width: 2rem;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.satya-quote-builder__progress-step.completed + .satya-quote-builder__progress-line {
  background-color: var(--satya-crimson);
}

.satya-quote-builder__step {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.satya-quote-builder__step.active {
  display: block;
  animation: satya-fadeIn 0.3s ease;
}

@keyframes satya-fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.satya-quote-builder__step-title {
  font-family: var(--satya-font-heading);
  color: var(--satya-navy);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.satya-quote-builder__option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.satya-quote-builder__option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--satya-radius);
  cursor: pointer;
  transition: all var(--satya-transition-fast);
}

.satya-quote-builder__option:hover {
  border-color: var(--satya-crimson-80);
}

.satya-quote-builder__option.selected {
  border-color: var(--satya-crimson);
  background-color: var(--satya-crimson-10);
}

.satya-quote-builder__option-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--satya-crimson-10);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.satya-quote-builder__option-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--satya-crimson);
  fill: none;
  stroke-width: 2;
}

.satya-quote-builder__option-text {
  flex: 1;
  font-family: var(--satya-font-body);
}

.satya-quote-builder__option-text strong {
  display: block;
  color: var(--satya-navy);
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.satya-quote-builder__option-text span {
  color: var(--satya-warm-gray);
  font-size: 0.8125rem;
}

.satya-quote-builder__option-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: all var(--satya-transition-fast);
}

.satya-quote-builder__option.selected .satya-quote-builder__option-check {
  background-color: var(--satya-crimson);
  border-color: var(--satya-crimson);
}

.satya-quote-builder__option.selected .satya-quote-builder__option-check svg {
  stroke: #fff;
}

.satya-quote-builder__option-check svg {
  width: 14px;
  height: 14px;
  stroke: transparent;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.satya-quote-builder__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.satya-quote-builder__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-base);
  text-decoration: none;
}

.satya-quote-builder__nav-btn--prev {
  background: #fff;
  color: var(--satya-navy);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.satya-quote-builder__nav-btn--prev:hover {
  border-color: var(--satya-crimson);
  color: var(--satya-crimson);
}

.satya-quote-builder__nav-btn--next {
  background-color: var(--satya-crimson);
  color: #fff;
  border: 2px solid var(--satya-crimson);
}

.satya-quote-builder__nav-btn--next:hover {
  background-color: var(--satya-crimson-dark);
  border-color: var(--satya-crimson-dark);
}

.satya-quote-builder__summary {
  max-width: 700px;
  margin: 0 auto;
}

.satya-quote-builder__summary-items {
  background-color: #fff;
  border-radius: var(--satya-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.satya-quote-builder__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
}

.satya-quote-builder__summary-row:last-child {
  border-bottom: none;
}

.satya-quote-builder__summary-row span:first-child {
  color: var(--satya-warm-gray);
}

.satya-quote-builder__summary-row span:last-child {
  color: var(--satya-navy);
  font-weight: 600;
}

/* Quote Builder — Small Tablet */
@media (min-width: 640px) {
  .satya-quote-builder__option-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Quote Builder — Desktop */
@media (min-width: 1024px) {
  .satya-quote-builder__option-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   15. CONTACT FORM (.satya-contact-form)
   ========================================================================== */

.satya-contact-form {
  padding: var(--satya-section-py) var(--satya-section-px);
  background-color: #fff;
}

.satya-contact-form__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.satya-contact-form__form {
  width: 100%;
}

.satya-contact-form__field {
  margin-bottom: 1.25rem;
}

.satya-contact-form__field label {
  display: block;
  font-family: var(--satya-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--satya-navy);
  margin-bottom: 0.5rem;
}

.satya-contact-form__field label .required {
  color: var(--satya-crimson);
  margin-left: 0.125rem;
}

.satya-contact-form__input,
.satya-contact-form__textarea,
.satya-contact-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  color: var(--satya-navy);
  background-color: var(--satya-cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color var(--satya-transition-fast), box-shadow var(--satya-transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.satya-contact-form__input:focus,
.satya-contact-form__textarea:focus,
.satya-contact-form__select:focus {
  border-color: var(--satya-crimson);
  box-shadow: 0 0 0 3px var(--satya-crimson-10);
}

.satya-contact-form__input::placeholder,
.satya-contact-form__textarea::placeholder {
  color: var(--satya-warm-gray);
  opacity: 0.7;
}

.satya-contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.satya-contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237f8c8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.satya-contact-form__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.satya-contact-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--satya-font-body);
  font-size: 0.875rem;
  color: var(--satya-navy);
  cursor: pointer;
}

.satya-contact-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--satya-crimson);
  cursor: pointer;
}

.satya-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background-color: var(--satya-crimson);
  color: #fff;
  font-family: var(--satya-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid var(--satya-crimson);
  border-radius: var(--satya-radius-full);
  cursor: pointer;
  transition: all var(--satya-transition-base);
  margin-top: 0.5rem;
}

.satya-contact-form__submit:hover,
.satya-contact-form__submit:focus {
  background-color: var(--satya-crimson-dark);
  border-color: var(--satya-crimson-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--satya-shadow-md);
}

.satya-contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.satya-contact-form__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.satya-contact-form__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--satya-cream);
  border-radius: var(--satya-radius);
}

.satya-contact-form__info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--satya-crimson-10);
  border-radius: 50%;
  flex-shrink: 0;
}

.satya-contact-form__info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--satya-crimson);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.satya-contact-form__info-text {
  font-family: var(--satya-font-body);
}

.satya-contact-form__info-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--satya-navy);
  margin-bottom: 0.125rem;
}

.satya-contact-form__info-text span,
.satya-contact-form__info-text a {
  font-size: 0.8125rem;
  color: var(--satya-warm-gray);
  text-decoration: none;
  line-height: 1.5;
}

.satya-contact-form__info-text a:hover {
  color: var(--satya-crimson);
}

.satya-contact-form__status {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--satya-radius);
  font-family: var(--satya-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.satya-contact-form__status--success {
  background-color: rgba(37, 211, 102, 0.1);
  color: #1a7f37;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.satya-contact-form__status--error {
  background-color: rgba(220, 20, 60, 0.1);
  color: var(--satya-crimson-dark);
  border: 1px solid rgba(220, 20, 60, 0.2);
}

/* Contact Form — Desktop */
@media (min-width: 768px) {
  .satya-contact-form__layout {
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }
}

/* ==========================================================================
   16. ANIMATIONS — Reveal & Stagger
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children delays */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }
.stagger > *:nth-child(7) { transition-delay: 600ms; }
.stagger > *:nth-child(8) { transition-delay: 700ms; }

/* Counter animation */
@keyframes satya-countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.satya-stats-counter__number {
  animation: satya-countUp 0.6s ease-out;
}

/* Pulse animation for play buttons */
@keyframes satya-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(220, 20, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 20, 60, 0);
  }
}

.satya-films-preview__card:hover .satya-films-preview__play-btn,
.satya-films-grid__card:hover .satya-films-grid__card-play {
  animation: satya-pulse 1.5s infinite;
}

/* ==========================================================================
   17. ELEMENTOR COMPATIBILITY
   ========================================================================== */

/* Ensure custom widgets take full width in Elementor */
.elementor-widget-satya-hero-slideshow,
.elementor-widget-satya-stats-counter,
.elementor-widget-satya-featured-stories,
.elementor-widget-satya-films-preview,
.elementor-widget-satya-why-choose-us,
.elementor-widget-satya-how-it-works,
.elementor-widget-satya-faq,
.elementor-widget-satya-cta,
.elementor-widget-satya-gallery,
.elementor-widget-satya-films-grid,
.elementor-widget-satya-story,
.elementor-widget-satya-quote-builder,
.elementor-widget-satya-contact-form,
.elementor-widget-satya-section-header {
  width: 100%;
  max-width: 100%;
}

/* Fix stretched sections */
.elementor-section-stretched .satya-hero-slideshow,
.elementor-section-stretched .satya-stats-counter,
.elementor-section-stretched .satya-featured-stories,
.elementor-section-stretched .satya-films-preview,
.elementor-section-stretched .satya-why-choose-us,
.elementor-section-stretched .satya-how-it-works,
.elementor-section-stretched .satya-faq,
.elementor-section-stretched .satya-cta,
.elementor-section-stretched .satya-gallery,
.elementor-section-stretched .satya-films-grid,
.elementor-section-stretched .satya-story,
.elementor-section-stretched .satya-quote-builder,
.elementor-section-stretched .satya-contact-form {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Remove conflicting Elementor default padding on widget containers */
.elementor-widget-satya-hero-slideshow .elementor-widget-container,
.elementor-widget-satya-stats-counter .elementor-widget-container,
.elementor-widget-satya-featured-stories .elementor-widget-container,
.elementor-widget-satya-films-preview .elementor-widget-container,
.elementor-widget-satya-why-choose-us .elementor-widget-container,
.elementor-widget-satya-how-it-works .elementor-widget-container,
.elementor-widget-satya-faq .elementor-widget-container,
.elementor-widget-satya-cta .elementor-widget-container,
.elementor-widget-satya-gallery .elementor-widget-container,
.elementor-widget-satya-films-grid .elementor-widget-container,
.elementor-widget-satya-story .elementor-widget-container,
.elementor-widget-satya-quote-builder .elementor-widget-container,
.elementor-widget-satya-contact-form .elementor-widget-container,
.elementor-widget-satya-section-header .elementor-widget-container {
  padding: 0;
  margin: 0;
}

/* Override Elementor column default min-height that can break layouts */
.elementor-widget-satya-hero-slideshow,
.elementor-widget-satya-hero-slideshow .elementor-widget-container {
  min-height: 100vh;
}

/* Ensure Elementor column doesn't clip hero overflow */
.elementor-section:has(.elementor-widget-satya-hero-slideshow) {
  overflow: hidden;
}

/* Prevent Elementor from overriding our widget font families */
[class^="satya-"] h1,
[class^="satya-"] h2,
[class^="satya-"] h3,
[class^="satya-"] h4,
[class^="satya-"] h5,
[class^="satya-"] h6,
[class*="satya-"] h1,
[class*="satya-"] h2,
[class*="satya-"] h3,
[class*="satya-"] h4,
[class*="satya-"] h5,
[class*="satya-"] h6 {
  font-family: var(--satya-font-heading);
}

/* ==========================================================================
   18. UTILITY — Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .satya-hero-slideshow__slide {
    transition: none;
  }

  .satya-hero-slideshow__scroll-indicator {
    animation: none;
  }

  .satya-gallery__item img,
  .satya-featured-stories__card img,
  .satya-films-preview__card img,
  .satya-films-grid__card img {
    transition: none;
  }

  .satya-films-preview__card:hover .satya-films-preview__play-btn,
  .satya-films-grid__card:hover .satya-films-grid__card-play {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   19. UTILITY — Print Styles
   ========================================================================== */

@media print {
  .satya-hero-slideshow,
  .satya-hero-slideshow__indicators,
  .satya-hero-slideshow__scroll-indicator,
  .satya-films-preview__play-btn,
  .satya-films-grid__card-play,
  .satya-gallery__item-overlay,
  .satya-quote-builder__nav,
  .satya-contact-form__submit {
    display: none;
  }

  .satya-hero-slideshow__slide {
    opacity: 1 !important;
    position: static;
    height: auto;
  }

  .satya-stats-counter,
  .satya-cta,
  .satya-films-preview,
  .satya-films-grid {
    background-color: #fff !important;
    color: #000 !important;
  }

  .satya-stats-counter__number,
  .satya-stats-counter__suffix {
    color: var(--satya-crimson) !important;
  }
}
