/*
Theme Name: Satya Photography
Theme URI: https://satyaphotography.in/
Author: Satya Photography
Author URI: https://satyaphotography.in/
Description: A luxury wedding photography WordPress theme for Satya Photography, Hyderabad.
Version: 12.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: satya-photography
Tags: photography, wedding, one-column, custom-background, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/


/* ============================================================
   TABLE OF CONTENTS
   ============================================================
   1.  CSS Custom Properties / Design System
   2.  Reset
   3.  Layout
   4.  Page Loader
   5.  Page Transition Overlay
   6.  Header / Navigation
   7.  Buttons
   8.  Hero Section (with Slideshow)
   9.  Film Grain Overlay
   10. Intro Section
   11. Stats Section
   12. Features Section
   13. Testimonials Section
   14. Portfolio Section (with Tap Interaction)
   15. Lightbox
   16. Films Section
   17. Pricing Section
   18. Contact Section
   19. About Section
   20. Timeline Section
   21. CTA Section
   22. Awards Bar
   23. Newsletter Section
   24. Footer
   25. Floating Social Icons (Redesigned)
   26. Back-to-Top Button
   27. Animations & Keyframes
   28. Responsive — max-width: 1024px
   29. Responsive — max-width: 768px
   30. Responsive — max-width: 480px
   31. Themify Builder Overrides
   32. 404 Page
   33. Search Page
   34. Form Messages
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES / DESIGN SYSTEM
   ============================================================ */
:root {
	/* Brand Colors */
	--satya-noir: #0F0F0F;
	--satya-cream: #F8F6F2;
	--satya-gold: #B89C7D;
	--satya-gold-light: #D4BFA6;
	--satya-gold-dark: #9A7E5E;
	--satya-gray: #6F6F6F;
	--satya-gray-light: #A0A0A0;
	--satya-gray-dark: #3A3A3A;
	--satya-white: #FFFFFF;

	/* Typography */
	--satya-font-heading: 'Cormorant Garamond', Georgia, serif;
	--satya-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

	/* Layout */
	--satya-container: 1240px;

	/* Transitions */
	--satya-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--satya-transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--satya-transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	/* Shadows */
	--satya-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--satya-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
	--satya-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
	--satya-shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.22);

	/* Border Radius */
	--satya-radius-sm: 4px;
	--satya-radius-md: 8px;
	--satya-radius-lg: 16px;

	/* Z-Index Scale */
	--satya-z-base: 1;
	--satya-z-header: 100;
	--satya-z-overlay: 200;
	--satya-z-social: 300;
	--satya-z-back-top: 400;
	--satya-z-lightbox: 500;
	--satya-z-loader: 600;
	--satya-z-transition: 700;
	--satya-z-grain: 800;
}


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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 16px;
}

body {
	font-family: var(--satya-font-body);
	font-weight: 400; /* FIX #5: was 300, now 400 */
	line-height: 1.7;
	color: var(--satya-noir);
	background-color: var(--satya-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

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

a:hover,
a:focus {
	color: var(--satya-gold-dark);
}

ul,
ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--satya-font-heading);
	font-weight: 400;
	line-height: 1.2;
	color: var(--satya-noir);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h6 { font-size: 1.1rem; }

p {
	margin-bottom: 1.2em;
}

p:last-child {
	margin-bottom: 0;
}

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

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


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

.satya-section {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.satya-section--noir {
	background-color: var(--satya-noir);
	color: var(--satya-cream);
}

.satya-section--noir h1,
.satya-section--noir h2,
.satya-section--noir h3,
.satya-section--noir h4,
.satya-section--noir h5,
.satya-section--noir h6 {
	color: var(--satya-cream);
}

.satya-section--cream {
	background-color: var(--satya-cream);
}

.satya-section--white {
	background-color: var(--satya-white);
}

.satya-section-header {
	text-align: center;
	margin-bottom: 64px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

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

.satya-section-label::before,
.satya-section-label::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 40px;
	height: 1px;
	background: var(--satya-gold-light);
}

.satya-section-label::before {
	right: 100%;
}

.satya-section-label::after {
	left: 100%;
}

.satya-section-title {
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.satya-section-subtitle {
	font-size: 1.05rem;
	color: var(--satya-gray);
	line-height: 1.8;
}

.satya-section--noir .satya-section-subtitle {
	color: var(--satya-gray-light);
}

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


/* ============================================================
   4. PAGE LOADER
   ============================================================ */
.satya-loader {
	position: fixed;
	inset: 0;
	background: var(--satya-noir);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: var(--satya-z-loader);
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.satya-loader.loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.satya-loader-inner {
	text-align: center;
}

.satya-loader-logo {
	font-family: var(--satya-font-heading);
	font-size: 2rem;
	color: var(--satya-cream);
	letter-spacing: 6px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.satya-loader-bar {
	width: 120px;
	height: 2px;
	background: var(--satya-gray-dark);
	border-radius: 2px;
	overflow: hidden;
	margin: 0 auto;
}

.satya-loader-bar::after {
	content: '';
	display: block;
	width: 40%;
	height: 100%;
	background: var(--satya-gold);
	border-radius: 2px;
	animation: satya-loader-progress 1.4s ease-in-out infinite;
}

@keyframes satya-loader-progress {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(350%); }
}


/* ============================================================
   5. PAGE TRANSITION OVERLAY
   ============================================================ */
.satya-page-transition {
	position: fixed;
	inset: 0;
	background: var(--satya-noir);
	z-index: var(--satya-z-transition);
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--satya-transition);
}

.satya-page-transition.is-active {
	opacity: 1;
	pointer-events: all;
}

.satya-page-transition-inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.satya-page-transition-text {
	font-family: var(--satya-font-heading);
	font-size: 1.4rem;
	color: var(--satya-gold);
	letter-spacing: 4px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.satya-page-transition.is-active .satya-page-transition-text {
	opacity: 1;
	transform: translateY(0);
}


/* ============================================================
   6. HEADER / NAVIGATION
   ============================================================ */
.satya-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: var(--satya-z-header);
	padding: 20px 0;
	transition: background var(--satya-transition), padding var(--satya-transition), box-shadow var(--satya-transition);
}

.satya-header.scrolled {
	background: rgba(15, 15, 15, 0.95);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	padding: 12px 0;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.satya-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

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

.satya-logo-img {
	height: 44px;
	width: auto;
	transition: height var(--satya-transition);
}

.satya-header.scrolled .satya-logo-img {
	height: 36px;
}

.satya-logo-text {
	font-family: var(--satya-font-heading);
	font-size: 1.5rem;
	color: var(--satya-cream);
	letter-spacing: 3px;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color var(--satya-transition-fast);
}

.satya-logo:hover .satya-logo-text {
	color: var(--satya-gold);
}

/* Nav */
.satya-nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

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

.satya-nav-link {
	font-family: var(--satya-font-body);
	font-size: 12px; /* FIX #4: was 11px, now 12px */
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-cream);
	text-decoration: none;
	position: relative;
	padding: 4px 0;
	transition: color var(--satya-transition-fast);
}

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

.satya-nav-link:hover,
.satya-nav-link:focus {
	color: var(--satya-gold);
}

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

/* Active nav state */
.satya-nav-link.is-active,
.current-menu-item > .satya-nav-link,
.current_page_item > .satya-nav-link {
	color: var(--satya-gold);
}

.satya-nav-link.is-active::after,
.current-menu-item > .satya-nav-link::after,
.current_page_item > .satya-nav-link::after {
	width: 100%;
}

/* Mobile menu toggle */
.satya-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	gap: 6px;
}

.satya-menu-toggle span {
	display: block;
	width: 24px;
	height: 1.5px;
	background: var(--satya-cream);
	transition: transform var(--satya-transition), opacity var(--satya-transition-fast);
	transform-origin: center;
}

.satya-menu-toggle.is-active span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.satya-menu-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.satya-menu-toggle.is-active span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile navigation overlay */
.satya-mobile-nav {
	position: fixed;
	inset: 0;
	background: rgba(15, 15, 15, 0.98);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 28px;
	z-index: calc(var(--satya-z-header) - 1);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--satya-transition), visibility var(--satya-transition);
}

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

.satya-mobile-nav .satya-nav-link {
	font-size: 1.2rem;
	letter-spacing: 3px;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.4s ease, transform 0.4s ease, color var(--satya-transition-fast);
}

.satya-mobile-nav.is-open .satya-nav-link {
	opacity: 1;
	transform: translateY(0);
}

.satya-mobile-nav.is-open .satya-nav-link:nth-child(1) { transition-delay: 0.1s; }
.satya-mobile-nav.is-open .satya-nav-link:nth-child(2) { transition-delay: 0.15s; }
.satya-mobile-nav.is-open .satya-nav-link:nth-child(3) { transition-delay: 0.2s; }
.satya-mobile-nav.is-open .satya-nav-link:nth-child(4) { transition-delay: 0.25s; }
.satya-mobile-nav.is-open .satya-nav-link:nth-child(5) { transition-delay: 0.3s; }
.satya-mobile-nav.is-open .satya-nav-link:nth-child(6) { transition-delay: 0.35s; }
.satya-mobile-nav.is-open .satya-nav-link:nth-child(7) { transition-delay: 0.4s; }
.satya-mobile-nav.is-open .satya-nav-link:nth-child(8) { transition-delay: 0.45s; }


/* ============================================================
   7. BUTTONS
   ============================================================ */
.satya-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--satya-font-body);
	font-size: 12px; /* FIX #3: was 11px, now 12px */
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 16px 36px;
	border: 1px solid transparent;
	border-radius: 0;
	cursor: pointer;
	text-decoration: none;
	transition: all var(--satya-transition);
	position: relative;
	overflow: hidden;
}

.satya-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: currentColor;
	opacity: 0;
	transition: opacity var(--satya-transition);
}

.satya-btn:hover::before {
	opacity: 0.06;
}

/* Primary Button — Cream on Noir */
.satya-btn--primary {
	background: var(--satya-noir);
	color: var(--satya-cream);
	border-color: var(--satya-noir);
}

.satya-btn--primary:hover,
.satya-btn--primary:focus {
	background: var(--satya-gold-dark);
	border-color: var(--satya-gold-dark);
	color: var(--satya-cream);
}

/* Secondary Button — Gold outline */
.satya-btn--secondary {
	background: transparent;
	color: var(--satya-gold);
	border-color: var(--satya-gold);
}

.satya-btn--secondary:hover,
.satya-btn--secondary:focus {
	background: var(--satya-gold);
	color: var(--satya-noir);
}

/* Light Button — Cream outline on dark */
.satya-btn--light {
	background: transparent;
	color: var(--satya-cream);
	border-color: var(--satya-cream);
}

.satya-btn--light:hover,
.satya-btn--light:focus {
	background: var(--satya-cream);
	color: var(--satya-noir);
}

/* Gold Button — Solid gold */
.satya-btn--gold {
	background: var(--satya-gold);
	color: var(--satya-noir);
	border-color: var(--satya-gold);
}

.satya-btn--gold:hover,
.satya-btn--gold:focus {
	background: var(--satya-gold-dark);
	border-color: var(--satya-gold-dark);
	color: var(--satya-cream);
}

/* Small Button Variant */
.satya-btn--sm {
	font-size: 11px;
	padding: 12px 24px;
	letter-spacing: 2px;
}

/* Large Button Variant */
.satya-btn--lg {
	font-size: 13px;
	padding: 18px 44px;
	letter-spacing: 3px;
}

/* Button with arrow */
.satya-btn-arrow {
	display: inline-block;
	width: 16px;
	height: 1px;
	background: currentColor;
	position: relative;
	margin-left: 4px;
	transition: width var(--satya-transition);
}

.satya-btn-arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-right: 1px solid currentColor;
	border-top: 1px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.satya-btn:hover .satya-btn-arrow {
	width: 24px;
}


/* ============================================================
   8. HERO SECTION (with Slideshow)
   ============================================================ */
.satya-hero {
	position: relative;
	width: 100%;
	min-height: 100svh; /* FIX #1: use svh for mobile */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: var(--satya-noir);
}

.satya-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover; /* FIX #1: proper cover sizing */
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/* FIX #1: Mobile hero — no fixed attachment, proper cover */
@media (max-width: 768px) {
	.satya-hero-bg {
		background-attachment: scroll;
		background-size: cover;
		background-position: center top;
	}
}

.satya-hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(15, 15, 15, 0.35) 0%,
		rgba(15, 15, 15, 0.2) 40%,
		rgba(15, 15, 15, 0.45) 70%,
		rgba(15, 15, 15, 0.75) 100%
	);
}

/* Hero Slideshow */
.satya-hero-slides {
	position: absolute;
	inset: 0;
}

.satya-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.6s ease-in-out;
}

.satya-hero-slide.is-active {
	opacity: 1;
}

.satya-hero-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(15, 15, 15, 0.3) 0%,
		rgba(15, 15, 15, 0.15) 40%,
		rgba(15, 15, 15, 0.4) 70%,
		rgba(15, 15, 15, 0.7) 100%
	);
}

@media (max-width: 768px) {
	.satya-hero-slide {
		background-size: cover;
		background-position: center top;
	}
}

/* Slideshow navigation dots */
.satya-hero-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 2;
}

.satya-hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(248, 246, 242, 0.3);
	border: 1px solid rgba(248, 246, 242, 0.5);
	cursor: pointer;
	transition: all var(--satya-transition);
	padding: 0;
}

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

.satya-hero-dot:hover {
	background: var(--satya-gold-light);
	border-color: var(--satya-gold-light);
}

/* Slideshow arrows */
.satya-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 48px;
	height: 48px;
	background: rgba(15, 15, 15, 0.3);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(248, 246, 242, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--satya-transition);
	color: var(--satya-cream);
	font-size: 1rem;
}

.satya-hero-arrow:hover {
	background: rgba(184, 156, 125, 0.4);
	border-color: var(--satya-gold);
}

.satya-hero-arrow--prev {
	left: 24px;
}

.satya-hero-arrow--next {
	right: 24px;
}

/* Hero Content */
.satya-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 24px;
	max-width: 800px;
}

.satya-hero-label {
	display: inline-block;
	font-family: var(--satya-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--satya-gold);
	margin-bottom: 20px;
	position: relative;
	padding: 0 20px;
}

.satya-hero-label::before,
.satya-hero-label::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 30px;
	height: 1px;
	background: var(--satya-gold-light);
}

.satya-hero-label::before {
	right: 100%;
}

.satya-hero-label::after {
	left: 100%;
}

.satya-hero-title {
	font-family: var(--satya-font-heading);
	font-size: clamp(2.8rem, 6vw, 5.5rem);
	font-weight: 300;
	color: var(--satya-cream);
	letter-spacing: -0.01em;
	line-height: 1.08;
	margin-bottom: 24px;
}

.satya-hero-title em {
	font-style: italic;
	color: var(--satya-gold);
}

.satya-hero-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	color: var(--satya-cream);
	opacity: 0.85; /* FIX #6: was 0.75, now 0.85 */
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.satya-hero-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* Scroll indicator */
.satya-hero-scroll {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--satya-cream);
	opacity: 0.5;
	transition: opacity var(--satya-transition);
}

.satya-hero-scroll:hover {
	opacity: 0.8;
}

.satya-hero-scroll-text {
	font-size: 9px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 500;
}

.satya-hero-scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--satya-cream), transparent);
	animation: satya-scroll-pulse 2s ease-in-out infinite;
}

@keyframes satya-scroll-pulse {
	0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
	50% { opacity: 1; transform: scaleY(1); }
}


/* ============================================================
   9. FILM GRAIN OVERLAY
   ============================================================ */
.satya-grain {
	position: fixed;
	inset: 0;
	z-index: var(--satya-z-grain);
	pointer-events: none;
	opacity: 0.035;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 256px 256px;
}

.satya-grain::after {
	content: '';
	position: absolute;
	inset: -200%;
	width: 400%;
	height: 400%;
	background: inherit;
	animation: satya-grain-move 0.5s steps(2) infinite;
}

@keyframes satya-grain-move {
	0% { transform: translate(0, 0); }
	25% { transform: translate(-5%, -5%); }
	50% { transform: translate(5%, 0); }
	75% { transform: translate(0, 5%); }
	100% { transform: translate(-5%, 5%); }
}


/* ============================================================
   10. INTRO SECTION
   ============================================================ */
.satya-intro {
	background: var(--satya-cream);
}

.satya-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.satya-intro-content {
	max-width: 520px;
}

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

.satya-intro-title {
	margin-bottom: 24px;
}

.satya-intro-text {
	color: var(--satya-gray);
	line-height: 1.9;
	margin-bottom: 32px;
}

.satya-intro-image {
	position: relative;
}

.satya-intro-image img {
	width: 100%;
	height: auto;
	display: block;
}

.satya-intro-image::before {
	content: '';
	position: absolute;
	top: -16px;
	left: -16px;
	right: 16px;
	bottom: 16px;
	border: 1px solid var(--satya-gold-light);
	opacity: 0.3;
	z-index: -1;
}

.satya-intro-image-accent {
	position: absolute;
	bottom: -24px;
	right: -24px;
	width: 120px;
	height: 120px;
	border: 1px solid var(--satya-gold-light);
	opacity: 0.25;
	z-index: -1;
}

.satya-intro-signature {
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.satya-intro-signature-img {
	height: 40px;
	width: auto;
	opacity: 0.6;
}

.satya-intro-signature-text {
	font-family: var(--satya-font-heading);
	font-size: 1rem;
	font-style: italic;
	color: var(--satya-gray);
}


/* ============================================================
   11. STATS SECTION
   ============================================================ */
.satya-stats {
	background: var(--satya-noir);
	padding: 60px 0;
}

.satya-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	text-align: center;
}

.satya-stat {
	padding: 24px 16px;
	position: relative;
}

.satya-stat::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: rgba(184, 156, 125, 0.15);
}

.satya-stat:last-child::after {
	display: none;
}

/* FIX #7: Clean counter display — no "499+" fakery */
.satya-stat-number {
	font-family: var(--satya-font-heading);
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	font-weight: 300;
	color: var(--satya-gold);
	line-height: 1;
	margin-bottom: 8px;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}

.satya-stat-number-value {
	display: inline-block;
}

.satya-stat-number-suffix {
	font-size: 0.5em;
	letter-spacing: 1px;
	opacity: 0.7;
}

.satya-stat-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-gray-light);
}


/* ============================================================
   12. FEATURES SECTION (with Visual Variety)
   ============================================================ */
.satya-features {
	background: var(--satya-white);
}

/* FIX #9: Feature cards with visual variety */
.satya-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.satya-feature-card {
	padding: 48px 36px;
	text-align: center;
	position: relative;
	transition: transform var(--satya-transition), box-shadow var(--satya-transition);
	border: 1px solid rgba(184, 156, 125, 0.1);
}

.satya-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--satya-shadow-md);
}

/* Card variant 1: Standard centered */
.satya-feature-card:nth-child(1) {
	background: var(--satya-cream);
}

/* Card variant 2: Top accent bar */
.satya-feature-card:nth-child(2) {
	background: var(--satya-white);
	border-top: 2px solid var(--satya-gold);
}

/* Card variant 3: Left accent bar */
.satya-feature-card:nth-child(3) {
	background: var(--satya-noir);
	color: var(--satya-cream);
	border-left: 2px solid var(--satya-gold);
}

.satya-feature-card:nth-child(3) .satya-feature-title {
	color: var(--satya-cream);
}

.satya-feature-card:nth-child(3) .satya-feature-text {
	color: var(--satya-gray-light);
}

.satya-feature-card:nth-child(3) .satya-feature-icon {
	color: var(--satya-gold);
	border-color: var(--satya-gold-dark);
}

/* Card variant 4: Outlined */
.satya-feature-card:nth-child(4) {
	background: transparent;
	border: 1px solid var(--satya-gold-light);
}

/* Card variant 5: Gold accent background */
.satya-feature-card:nth-child(5) {
	background: linear-gradient(135deg, rgba(184, 156, 125, 0.08) 0%, rgba(184, 156, 125, 0.02) 100%);
	border-bottom: 2px solid var(--satya-gold);
}

/* Card variant 6: Dark with gold border */
.satya-feature-card:nth-child(6) {
	background: var(--satya-noir);
	color: var(--satya-cream);
	border: 1px solid var(--satya-gold-dark);
}

.satya-feature-card:nth-child(6) .satya-feature-title {
	color: var(--satya-cream);
}

.satya-feature-card:nth-child(6) .satya-feature-text {
	color: var(--satya-gray-light);
}

.satya-feature-card:nth-child(6) .satya-feature-icon {
	color: var(--satya-gold);
	border-color: var(--satya-gold-dark);
}

.satya-feature-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--satya-gold);
	border: 1px solid var(--satya-gold-light);
	border-radius: 50%;
	transition: all var(--satya-transition);
}

.satya-feature-card:hover .satya-feature-icon {
	background: var(--satya-gold);
	color: var(--satya-noir);
	border-color: var(--satya-gold);
	transform: scale(1.05);
}

.satya-feature-number {
	font-family: var(--satya-font-heading);
	font-size: 3rem;
	font-weight: 300;
	color: var(--satya-gold-light);
	opacity: 0.2;
	position: absolute;
	top: 16px;
	right: 24px;
	line-height: 1;
}

.satya-feature-title {
	font-family: var(--satya-font-heading);
	font-size: 1.5rem;
	margin-bottom: 12px;
	color: var(--satya-noir);
}

.satya-feature-text {
	font-size: 0.95rem;
	color: var(--satya-gray);
	line-height: 1.8;
}


/* ============================================================
   13. TESTIMONIALS SECTION
   ============================================================ */
.satya-testimonials {
	background: var(--satya-noir);
	color: var(--satya-cream);
}

.satya-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.satya-testimonial-card {
	padding: 40px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(184, 156, 125, 0.1);
	position: relative;
	transition: border-color var(--satya-transition);
}

.satya-testimonial-card:hover {
	border-color: rgba(184, 156, 125, 0.3);
}

.satya-testimonial-quote-mark {
	font-family: var(--satya-font-heading);
	font-size: 4rem;
	color: var(--satya-gold);
	opacity: 0.3;
	line-height: 1;
	margin-bottom: -8px;
}

.satya-testimonial-text {
	font-family: var(--satya-font-heading);
	font-size: 1.15rem;
	font-style: italic;
	line-height: 1.8;
	color: var(--satya-gray-light);
	margin-bottom: 24px;
}

.satya-testimonial-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.satya-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--satya-gold-dark);
}

.satya-testimonial-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--satya-cream);
	margin-bottom: 2px;
}

.satya-testimonial-role {
	font-size: 0.8rem;
	color: var(--satya-gray);
	letter-spacing: 1px;
}

.satya-testimonial-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 16px;
	color: var(--satya-gold);
	font-size: 0.75rem;
}


/* ============================================================
   14. PORTFOLIO SECTION (with Tap Interaction)
   ============================================================ */
.satya-portfolio {
	background: var(--satya-cream);
}

.satya-portfolio-filters {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.satya-portfolio-filter {
	font-family: var(--satya-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 10px 20px;
	background: transparent;
	border: 1px solid transparent;
	color: var(--satya-gray);
	cursor: pointer;
	transition: all var(--satya-transition);
}

.satya-portfolio-filter:hover,
.satya-portfolio-filter.is-active {
	color: var(--satya-gold);
	border-color: var(--satya-gold);
}

.satya-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.satya-portfolio-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 3 / 4;
	background: var(--satya-gray-dark);
}

.satya-portfolio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter var(--satya-transition);
}

.satya-portfolio-card:hover img {
	transform: scale(1.06);
}

/* Desktop hover overlay */
.satya-portfolio-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		rgba(15, 15, 15, 0.85) 0%,
		rgba(15, 15, 15, 0.2) 50%,
		transparent 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	opacity: 0;
	transition: opacity var(--satya-transition);
}

.satya-portfolio-card:hover .satya-portfolio-card-overlay {
	opacity: 1;
}

.satya-portfolio-card-category {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-gold);
	margin-bottom: 6px;
}

.satya-portfolio-card-title {
	font-family: var(--satya-font-heading);
	font-size: 1.3rem;
	color: var(--satya-cream);
	margin-bottom: 4px;
}

.satya-portfolio-card-desc {
	font-size: 0.85rem;
	color: var(--satya-gray-light);
}

.satya-portfolio-card-icon {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	background: rgba(184, 156, 125, 0.2);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(184, 156, 125, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--satya-cream);
	font-size: 0.8rem;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity var(--satya-transition), transform var(--satya-transition);
}

.satya-portfolio-card:hover .satya-portfolio-card-icon {
	opacity: 1;
	transform: translateY(0);
}

/* FIX #8: Mobile tap interaction overlay */
.satya-portfolio-card-tap {
	display: none;
	position: absolute;
	inset: 0;
	background: rgba(15, 15, 15, 0.7);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--satya-transition), visibility var(--satya-transition);
}

.satya-portfolio-card-tap.is-active {
	opacity: 1;
	visibility: visible;
}

.satya-portfolio-card-tap-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--satya-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--satya-gold);
	font-size: 1.2rem;
}

.satya-portfolio-card-tap-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-cream);
}

@media (max-width: 768px) {
	.satya-portfolio-card-tap {
		display: flex;
	}

	.satya-portfolio-card-overlay {
		opacity: 1;
		background: linear-gradient(
			0deg,
			rgba(15, 15, 15, 0.7) 0%,
			transparent 50%
		);
	}
}

/* Wide card variant */
.satya-portfolio-card--wide {
	grid-column: span 2;
	aspect-ratio: 16 / 9;
}

/* Tall card variant */
.satya-portfolio-card--tall {
	grid-row: span 2;
	aspect-ratio: auto;
}


/* ============================================================
   15. LIGHTBOX
   ============================================================ */
.satya-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(15, 15, 15, 0.95);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	z-index: var(--satya-z-lightbox);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--satya-transition), visibility var(--satya-transition);
}

.satya-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.satya-lightbox-content {
	max-width: 90vw;
	max-height: 85vh;
	position: relative;
	transform: scale(0.92);
	transition: transform var(--satya-transition);
}

.satya-lightbox.is-open .satya-lightbox-content {
	transform: scale(1);
}

.satya-lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	display: block;
	border: 1px solid rgba(184, 156, 125, 0.1);
}

.satya-lightbox-close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid rgba(248, 246, 242, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--satya-cream);
	font-size: 1.2rem;
	cursor: pointer;
	transition: all var(--satya-transition-fast);
}

.satya-lightbox-close:hover {
	border-color: var(--satya-gold);
	color: var(--satya-gold);
	background: rgba(184, 156, 125, 0.1);
}

.satya-lightbox-caption {
	position: absolute;
	bottom: -48px;
	left: 0;
	right: 0;
	text-align: center;
	font-family: var(--satya-font-heading);
	font-size: 1rem;
	font-style: italic;
	color: var(--satya-gray-light);
}

/* Lightbox navigation arrows */
.satya-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: rgba(15, 15, 15, 0.5);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(184, 156, 125, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--satya-cream);
	cursor: pointer;
	transition: all var(--satya-transition-fast);
	font-size: 1rem;
}

.satya-lightbox-nav:hover {
	border-color: var(--satya-gold);
	color: var(--satya-gold);
	background: rgba(184, 156, 125, 0.15);
}

.satya-lightbox-nav--prev {
	left: 24px;
}

.satya-lightbox-nav--next {
	right: 24px;
}

/* Lightbox counter */
.satya-lightbox-counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	letter-spacing: 2px;
	color: var(--satya-gray-light);
	font-weight: 500;
}


/* ============================================================
   16. FILMS SECTION
   ============================================================ */
.satya-films {
	background: var(--satya-noir);
	color: var(--satya-cream);
}

.satya-films-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.satya-film-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	cursor: pointer;
	background: var(--satya-gray-dark);
}

.satya-film-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.satya-film-card:hover img {
	transform: scale(1.04);
}

.satya-film-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 15, 15, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--satya-transition);
}

.satya-film-card:hover .satya-film-card-overlay {
	background: rgba(15, 15, 15, 0.55);
}

.satya-film-play {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 2px solid var(--satya-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--satya-transition);
	color: var(--satya-cream);
	font-size: 1.4rem;
	padding-left: 4px;
}

.satya-film-card:hover .satya-film-play {
	border-color: var(--satya-gold);
	background: rgba(184, 156, 125, 0.2);
	color: var(--satya-gold);
	transform: scale(1.08);
}

.satya-film-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	background: linear-gradient(transparent, rgba(15, 15, 15, 0.8));
}

.satya-film-card-title {
	font-family: var(--satya-font-heading);
	font-size: 1.3rem;
	color: var(--satya-cream);
	margin-bottom: 4px;
}

.satya-film-card-meta {
	font-size: 0.8rem;
	color: var(--satya-gray-light);
	letter-spacing: 1px;
}


/* ============================================================
   17. PRICING SECTION
   ============================================================ */
.satya-pricing {
	background: var(--satya-cream);
}

.satya-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-items: stretch;
}

.satya-pricing-card {
	background: var(--satya-white);
	padding: 48px 36px;
	text-align: center;
	border: 1px solid rgba(184, 156, 125, 0.1);
	position: relative;
	transition: transform var(--satya-transition), box-shadow var(--satya-transition);
	overflow: hidden; /* needed for ribbon */
}

.satya-pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--satya-shadow-lg);
}

.satya-pricing-card--featured {
	border-color: var(--satya-gold);
	background: var(--satya-noir);
	color: var(--satya-cream);
	transform: scale(1.03);
}

.satya-pricing-card--featured:hover {
	transform: scale(1.03) translateY(-6px);
}

/* FIX #15: Pricing badge ribbon — better positioning */
.satya-pricing-badge {
	position: absolute;
	top: 20px;
	right: -32px;
	background: var(--satya-gold);
	color: var(--satya-noir);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 40px;
	transform: rotate(45deg);
	z-index: 2;
	white-space: nowrap;
}

.satya-pricing-card--featured .satya-pricing-badge {
	background: var(--satya-cream);
	color: var(--satya-noir);
}

.satya-pricing-name {
	font-family: var(--satya-font-heading);
	font-size: 1.5rem;
	color: var(--satya-noir);
	margin-bottom: 8px;
}

.satya-pricing-card--featured .satya-pricing-name {
	color: var(--satya-cream);
}

.satya-pricing-desc {
	font-size: 0.85rem;
	color: var(--satya-gray);
	margin-bottom: 24px;
}

.satya-pricing-card--featured .satya-pricing-desc {
	color: var(--satya-gray-light);
}

.satya-pricing-price {
	font-family: var(--satya-font-heading);
	font-size: 2.8rem;
	font-weight: 300;
	color: var(--satya-gold);
	margin-bottom: 4px;
	line-height: 1;
}

.satya-pricing-price-note {
	font-size: 0.8rem;
	color: var(--satya-gray);
	margin-bottom: 28px;
}

.satya-pricing-card--featured .satya-pricing-price-note {
	color: var(--satya-gray-light);
}

.satya-pricing-features {
	text-align: left;
	margin-bottom: 32px;
}

.satya-pricing-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(184, 156, 125, 0.08);
	font-size: 0.9rem;
	color: var(--satya-gray);
}

.satya-pricing-card--featured .satya-pricing-feature {
	color: var(--satya-gray-light);
	border-bottom-color: rgba(255, 255, 255, 0.05);
}

.satya-pricing-feature-icon {
	color: var(--satya-gold);
	font-size: 0.85rem;
	flex-shrink: 0;
}

.satya-pricing-cta {
	margin-top: auto;
}


/* ============================================================
   18. CONTACT SECTION
   ============================================================ */
.satya-contact {
	background: var(--satya-white);
}

.satya-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.satya-contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.satya-contact-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.satya-contact-item-icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--satya-gold-light);
	border-radius: 50%;
	color: var(--satya-gold);
	font-size: 1rem;
}

.satya-contact-item-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-gold);
	margin-bottom: 6px;
}

.satya-contact-item-value {
	font-size: 1rem;
	color: var(--satya-noir);
	line-height: 1.6;
}

.satya-contact-item-value a {
	color: var(--satya-noir);
	transition: color var(--satya-transition-fast);
}

.satya-contact-item-value a:hover {
	color: var(--satya-gold);
}

/* Contact Form */
.satya-contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.satya-form-group {
	position: relative;
}

.satya-form-group label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-gray);
	margin-bottom: 8px;
}

.satya-form-input,
.satya-form-textarea,
.satya-form-select {
	width: 100%;
	padding: 14px 18px;
	background: var(--satya-cream);
	border: 1px solid rgba(184, 156, 125, 0.15);
	font-size: 0.95rem;
	color: var(--satya-noir);
	transition: border-color var(--satya-transition-fast), box-shadow var(--satya-transition-fast);
	outline: none;
	border-radius: 0;
	-webkit-appearance: none;
}

.satya-form-input:focus,
.satya-form-textarea:focus,
.satya-form-select:focus {
	border-color: var(--satya-gold);
	box-shadow: 0 0 0 3px rgba(184, 156, 125, 0.1);
}

.satya-form-input::placeholder,
.satya-form-textarea::placeholder {
	color: var(--satya-gray-light);
}

.satya-form-textarea {
	min-height: 140px;
	resize: vertical;
}

.satya-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}


/* ============================================================
   19. ABOUT SECTION
   ============================================================ */
.satya-about {
	background: var(--satya-noir);
	color: var(--satya-cream);
}

.satya-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.satya-about-image {
	position: relative;
}

.satya-about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.satya-about-image-frame {
	position: absolute;
	top: 20px;
	left: 20px;
	right: -20px;
	bottom: -20px;
	border: 1px solid var(--satya-gold-dark);
	opacity: 0.3;
	z-index: -1;
}

.satya-about-content {
	max-width: 520px;
}

.satya-about-title {
	color: var(--satya-cream);
	margin-bottom: 24px;
}

.satya-about-text {
	color: var(--satya-gray-light);
	line-height: 1.9;
	margin-bottom: 24px;
}

.satya-about-credentials {
	display: flex;
	gap: 32px;
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(184, 156, 125, 0.15);
}

.satya-about-credential {
	text-align: center;
}

.satya-about-credential-number {
	font-family: var(--satya-font-heading);
	font-size: 2rem;
	color: var(--satya-gold);
	line-height: 1;
	margin-bottom: 4px;
}

.satya-about-credential-label {
	font-size: 0.75rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--satya-gray);
}


/* ============================================================
   20. TIMELINE SECTION
   ============================================================ */
.satya-timeline {
	background: var(--satya-cream);
}

.satya-timeline-list {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.satya-timeline-list::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(184, 156, 125, 0.2);
	transform: translateX(-50%);
}

.satya-timeline-item {
	display: flex;
	margin-bottom: 60px;
	position: relative;
}

.satya-timeline-item:last-child {
	margin-bottom: 0;
}

.satya-timeline-item:nth-child(odd) {
	flex-direction: row-reverse;
	text-align: right;
}

.satya-timeline-dot {
	position: absolute;
	left: 50%;
	top: 8px;
	width: 12px;
	height: 12px;
	background: var(--satya-gold);
	border: 2px solid var(--satya-cream);
	border-radius: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.satya-timeline-content {
	width: calc(50% - 36px);
}

.satya-timeline-year {
	font-family: var(--satya-font-heading);
	font-size: 2rem;
	color: var(--satya-gold);
	margin-bottom: 8px;
}

.satya-timeline-title {
	font-family: var(--satya-font-heading);
	font-size: 1.3rem;
	margin-bottom: 8px;
}

.satya-timeline-text {
	font-size: 0.9rem;
	color: var(--satya-gray);
	line-height: 1.8;
}


/* ============================================================
   21. CTA SECTION
   ============================================================ */
.satya-cta {
	background: var(--satya-noir);
	color: var(--satya-cream);
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.satya-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		ellipse at center,
		rgba(184, 156, 125, 0.05) 0%,
		transparent 70%
	);
}

.satya-cta-content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 0 auto;
}

.satya-cta-title {
	font-family: var(--satya-font-heading);
	font-size: clamp(2rem, 4vw, 3.2rem);
	color: var(--satya-cream);
	margin-bottom: 20px;
}

.satya-cta-title em {
	font-style: italic;
	color: var(--satya-gold);
}

.satya-cta-text {
	color: var(--satya-gray-light);
	margin-bottom: 36px;
	line-height: 1.8;
}

.satya-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.satya-cta-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--satya-font-heading);
	font-size: 1.4rem;
	color: var(--satya-gold);
	margin-top: 24px;
}

.satya-cta-phone a {
	color: var(--satya-gold);
	transition: color var(--satya-transition-fast);
}

.satya-cta-phone a:hover {
	color: var(--satya-gold-light);
}


/* ============================================================
   22. AWARDS BAR
   ============================================================ */
.satya-awards-bar {
	background: var(--satya-noir);
	padding: 32px 0;
	border-top: 1px solid rgba(184, 156, 125, 0.1);
	border-bottom: 1px solid rgba(184, 156, 125, 0.1);
}

.satya-awards-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.satya-awards-bar-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--satya-gray);
	white-space: nowrap;
}

.satya-awards-bar-item {
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0.5;
	transition: opacity var(--satya-transition);
}

.satya-awards-bar-item:hover {
	opacity: 0.8;
}

.satya-awards-bar-logo {
	height: 28px;
	width: auto;
	filter: grayscale(100%) brightness(200%);
	transition: filter var(--satya-transition);
}

.satya-awards-bar-item:hover .satya-awards-bar-logo {
	filter: grayscale(0%) brightness(100%);
}

.satya-awards-bar-name {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--satya-gray-light);
}

.satya-awards-bar-divider {
	width: 1px;
	height: 24px;
	background: rgba(184, 156, 125, 0.15);
}


/* ============================================================
   23. NEWSLETTER SECTION
   ============================================================ */
.satya-newsletter {
	background: linear-gradient(135deg, var(--satya-noir) 0%, #1a1612 100%);
	padding: 60px 0;
}

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

.satya-newsletter-content {
	max-width: 440px;
}

.satya-newsletter-title {
	font-family: var(--satya-font-heading);
	font-size: 1.6rem;
	color: var(--satya-cream);
	margin-bottom: 8px;
}

.satya-newsletter-text {
	font-size: 0.9rem;
	color: var(--satya-gray-light);
	line-height: 1.7;
}

.satya-newsletter-form {
	display: flex;
	align-items: stretch;
	gap: 0;
	flex: 1;
	max-width: 480px;
}

.satya-newsletter-input {
	flex: 1;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(184, 156, 125, 0.2);
	border-right: none;
	color: var(--satya-cream);
	font-size: 0.9rem;
	outline: none;
	transition: border-color var(--satya-transition-fast);
}

.satya-newsletter-input::placeholder {
	color: var(--satya-gray);
}

.satya-newsletter-input:focus {
	border-color: var(--satya-gold);
}

.satya-newsletter-btn {
	padding: 14px 28px;
	background: var(--satya-gold);
	color: var(--satya-noir);
	border: 1px solid var(--satya-gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--satya-transition-fast);
	white-space: nowrap;
}

.satya-newsletter-btn:hover {
	background: var(--satya-gold-dark);
	border-color: var(--satya-gold-dark);
	color: var(--satya-cream);
}

.satya-newsletter-privacy {
	font-size: 0.75rem;
	color: var(--satya-gray);
	margin-top: 8px;
	text-align: right;
}

.satya-newsletter-privacy a {
	color: var(--satya-gold);
}


/* ============================================================
   24. FOOTER
   ============================================================ */
.satya-footer {
	background: var(--satya-noir);
	color: var(--satya-cream);
	padding-top: 80px;
}

.satya-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(184, 156, 125, 0.1);
}

.satya-footer-brand {
	max-width: 300px;
}

.satya-footer-logo {
	font-family: var(--satya-font-heading);
	font-size: 1.5rem;
	color: var(--satya-cream);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 16px;
	display: block;
}

.satya-footer-brand-text {
	font-size: 0.9rem;
	color: var(--satya-gray);
	line-height: 1.8;
	margin-bottom: 24px;
}

.satya-footer-social {
	display: flex;
	gap: 12px;
}

.satya-footer-social-link {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(184, 156, 125, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--satya-gray-light);
	font-size: 0.85rem;
	transition: all var(--satya-transition-fast);
}

.satya-footer-social-link:hover {
	border-color: var(--satya-gold);
	color: var(--satya-gold);
	background: rgba(184, 156, 125, 0.1);
}

.satya-footer-heading {
	font-family: var(--satya-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--satya-gold);
	margin-bottom: 24px;
}

.satya-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.satya-footer-link {
	font-size: 0.9rem;
	color: var(--satya-gray);
	transition: color var(--satya-transition-fast);
	display: flex;
	align-items: center;
	gap: 6px;
}

.satya-footer-link:hover {
	color: var(--satya-gold);
}

.satya-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.satya-footer-contact-icon {
	color: var(--satya-gold);
	font-size: 0.9rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.satya-footer-contact-text {
	font-size: 0.9rem;
	color: var(--satya-gray);
	line-height: 1.6;
}

.satya-footer-contact-text a {
	color: var(--satya-gray);
	transition: color var(--satya-transition-fast);
}

.satya-footer-contact-text a:hover {
	color: var(--satya-gold);
}

/* Footer bottom bar */
.satya-footer-bottom {
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.satya-footer-copyright {
	font-size: 0.8rem;
	color: var(--satya-gray);
}

.satya-footer-copyright a {
	color: var(--satya-gold);
	transition: color var(--satya-transition-fast);
}

.satya-footer-copyright a:hover {
	color: var(--satya-gold-light);
}

.satya-footer-bottom-links {
	display: flex;
	gap: 24px;
}

.satya-footer-bottom-link {
	font-size: 0.8rem;
	color: var(--satya-gray);
	transition: color var(--satya-transition-fast);
}

.satya-footer-bottom-link:hover {
	color: var(--satya-gold);
}


/* ============================================================
   25. FLOATING SOCIAL ICONS (REDESIGNED — Muted Gold/Dark)
   ============================================================ */

/*
 * FIX #2: Redesigned from bright Instagram gradient (#833AB4→#FD1D1D→#F77737)
 * and green WhatsApp (#25D366) to muted luxury gold/dark palette.
 * Both icons now use noir background with gold border and gold icon on hover.
 */

.satya-floating-social {
	position: fixed;
	right: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: var(--satya-z-social);
}

.satya-floating-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	text-decoration: none;
	transition: all var(--satya-transition);
	position: relative;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Instagram — noir with gold border */
.satya-social-instagram {
	background: var(--satya-noir);
	border: 1px solid var(--satya-gold-dark);
	color: var(--satya-gold);
}

.satya-social-instagram:hover {
	background: var(--satya-gold);
	border-color: var(--satya-gold);
	color: var(--satya-noir);
	box-shadow: 0 4px 20px rgba(184, 156, 125, 0.35);
	transform: translateY(-2px);
}

.satya-social-instagram:focus {
	outline: 2px solid var(--satya-gold-light);
	outline-offset: 2px;
}

/* WhatsApp — noir with gold border */
.satya-social-whatsapp {
	background: var(--satya-noir);
	border: 1px solid var(--satya-gold-dark);
	color: var(--satya-gold);
}

.satya-social-whatsapp:hover {
	background: var(--satya-gold);
	border-color: var(--satya-gold);
	color: var(--satya-noir);
	box-shadow: 0 4px 20px rgba(184, 156, 125, 0.35);
	transform: translateY(-2px);
}

.satya-social-whatsapp:focus {
	outline: 2px solid var(--satya-gold-light);
	outline-offset: 2px;
}

/* Icon sizing */
.satya-floating-social svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	transition: fill var(--satya-transition-fast);
}

/* Tooltip on hover */
.satya-floating-social a::after {
	content: attr(data-tooltip);
	position: absolute;
	right: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%);
	background: var(--satya-noir);
	color: var(--satya-cream);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 6px 14px;
	border-radius: 4px;
	border: 1px solid var(--satya-gold-dark);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--satya-transition-fast), visibility var(--satya-transition-fast);
	pointer-events: none;
}

.satya-floating-social a:hover::after {
	opacity: 1;
	visibility: visible;
}

/* Pulse animation on WhatsApp (subtle) */
.satya-social-whatsapp::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid var(--satya-gold);
	opacity: 0;
	animation: satya-social-pulse 2.5s ease-in-out infinite;
}

@keyframes satya-social-pulse {
	0%, 100% { opacity: 0; transform: scale(0.9); }
	50% { opacity: 0.4; transform: scale(1.05); }
}

/* Hide tooltip on mobile */
@media (max-width: 768px) {
	.satya-floating-social a::after {
		display: none;
	}

	.satya-floating-social a {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 480px) {
	.satya-floating-social {
		right: 16px;
		bottom: 16px;
		gap: 10px;
	}

	.satya-floating-social a {
		width: 40px;
		height: 40px;
	}
}


/* ============================================================
   26. BACK-TO-TOP BUTTON
   ============================================================ */
.satya-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 96px;
	width: 44px;
	height: 44px;
	background: var(--satya-noir);
	border: 1px solid var(--satya-gold-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: var(--satya-z-back-top);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all var(--satya-transition);
	color: var(--satya-gold);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.satya-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.satya-back-to-top:hover {
	background: var(--satya-gold);
	border-color: var(--satya-gold);
	color: var(--satya-noir);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(184, 156, 125, 0.3);
}

.satya-back-to-top svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 768px) {
	.satya-back-to-top {
		right: 16px;
		bottom: 88px;
		width: 40px;
		height: 40px;
	}
}


/* ============================================================
   27. ANIMATIONS & KEYFRAMES
   ============================================================ */

/* Fade in up */
.satya-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.satya-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.satya-animate-delay-1 { transition-delay: 0.1s; }
.satya-animate-delay-2 { transition-delay: 0.2s; }
.satya-animate-delay-3 { transition-delay: 0.3s; }
.satya-animate-delay-4 { transition-delay: 0.4s; }
.satya-animate-delay-5 { transition-delay: 0.5s; }
.satya-animate-delay-6 { transition-delay: 0.6s; }

/* Fade in */
.satya-animate-fade {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.satya-animate-fade.is-visible {
	opacity: 1;
}

/* Scale in */
.satya-animate-scale {
	opacity: 0;
	transform: scale(0.92);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.satya-animate-scale.is-visible {
	opacity: 1;
	transform: scale(1);
}

/* Slide in from left */
.satya-animate-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.satya-animate-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Slide in from right */
.satya-animate-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.satya-animate-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Parallax helper */
.satya-parallax {
	will-change: transform;
}

/* Image reveal */
.satya-image-reveal {
	position: relative;
	overflow: hidden;
}

.satya-image-reveal::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--satya-cream);
	transform-origin: left;
	transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.satya-image-reveal.is-revealed::after {
	transform: scaleX(0);
	transform-origin: right;
}

/* Gold line animation */
@keyframes satya-gold-line {
	from { width: 0; }
	to { width: 60px; }
}

/* Shimmer effect */
@keyframes satya-shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

.satya-shimmer {
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(184, 156, 125, 0.08) 50%,
		transparent 100%
	);
	background-size: 200% 100%;
	animation: satya-shimmer 3s ease-in-out infinite;
}

/* Spin */
@keyframes satya-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Float */
@keyframes satya-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}


/* ============================================================
   28. RESPONSIVE — max-width: 1024px
   ============================================================ */
@media (max-width: 1024px) {
	.satya-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.satya-intro-grid,
	.satya-about-grid,
	.satya-contact-grid {
		gap: 48px;
	}

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

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

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

	.satya-stat:nth-child(2)::after {
		display: none;
	}

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

	.satya-timeline-list::before {
		left: 24px;
	}

	.satya-timeline-item {
		flex-direction: row !important;
		text-align: left !important;
		padding-left: 56px;
	}

	.satya-timeline-item:nth-child(odd) {
		flex-direction: row !important;
		text-align: left !important;
	}

	.satya-timeline-dot {
		left: 24px;
		transform: translateX(-50%);
	}

	.satya-timeline-content {
		width: 100%;
	}

	.satya-awards-bar-inner {
		gap: 32px;
	}

	.satya-newsletter-inner {
		flex-direction: column;
		text-align: center;
	}

	.satya-newsletter-content {
		max-width: 100%;
	}

	.satya-newsletter-form {
		max-width: 500px;
		width: 100%;
	}

	.satya-hero-arrow {
		display: none;
	}
}


/* ============================================================
   29. RESPONSIVE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {
	/* Section spacing */
	.satya-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.satya-section-header {
		margin-bottom: 40px;
	}

	/* Header / Nav */
	.satya-nav-list {
		display: none;
	}

	.satya-menu-toggle {
		display: flex;
	}

	/* Hero */
	.satya-hero {
		min-height: 100svh;
	}

	.satya-hero-title {
		font-size: clamp(2.2rem, 8vw, 3.5rem);
	}

	.satya-hero-subtitle {
		font-size: 0.95rem;
	}

	.satya-hero-scroll {
		display: none;
	}

	/* Intro */
	.satya-intro-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.satya-intro-content {
		max-width: 100%;
	}

	/* Stats */
	.satya-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.satya-stat::after {
		display: none;
	}

	/* Features */
	.satya-features-grid {
		grid-template-columns: 1fr;
	}

	.satya-feature-card {
		padding: 36px 28px;
	}

	/* Testimonials */
	.satya-testimonials-grid {
		grid-template-columns: 1fr;
	}

	/* Portfolio */
	.satya-portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.satya-portfolio-card--wide {
		grid-column: span 2;
	}

	.satya-portfolio-card--tall {
		grid-row: span 1;
		aspect-ratio: 3 / 4;
	}

	/* Films */
	.satya-films-grid {
		grid-template-columns: 1fr;
	}

	/* Pricing */
	.satya-pricing-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
	}

	.satya-pricing-card--featured {
		transform: none;
	}

	.satya-pricing-card--featured:hover {
		transform: translateY(-6px);
	}

	/* Contact */
	.satya-contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

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

	/* About */
	.satya-about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.satya-about-content {
		max-width: 100%;
	}

	.satya-about-credentials {
		gap: 24px;
		flex-wrap: wrap;
	}

	/* CTA */
	.satya-cta {
		padding: 60px 0;
	}

	/* Awards Bar */
	.satya-awards-bar-inner {
		gap: 24px;
	}

	.satya-awards-bar-label {
		width: 100%;
		text-align: center;
		margin-bottom: 8px;
	}

	.satya-awards-bar-divider {
		display: none;
	}

	/* Newsletter */
	.satya-newsletter-form {
		flex-direction: column;
	}

	.satya-newsletter-input {
		border-right: 1px solid rgba(184, 156, 125, 0.2);
	}

	.satya-newsletter-btn {
		width: 100%;
		text-align: center;
	}

	/* Footer */
	.satya-footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.satya-footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	/* Timeline */
	.satya-timeline-list::before {
		left: 16px;
	}

	.satya-timeline-item {
		padding-left: 44px;
		margin-bottom: 40px;
	}

	.satya-timeline-dot {
		left: 16px;
	}

	/* Lightbox */
	.satya-lightbox-nav {
		display: none;
	}

	.satya-lightbox-close {
		top: -44px;
		width: 36px;
		height: 36px;
	}

	/* Page transition */
	.satya-page-transition-text {
		font-size: 1.1rem;
		letter-spacing: 3px;
	}
}


/* ============================================================
   30. RESPONSIVE — max-width: 480px
   ============================================================ */
@media (max-width: 480px) {
	/* Section spacing */
	.satya-section {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.satya-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	/* Hero */
	.satya-hero {
		min-height: 100svh;
	}

	.satya-hero-content {
		padding: 0 16px;
	}

	.satya-hero-title {
		font-size: clamp(1.9rem, 9vw, 2.8rem);
	}

	.satya-hero-subtitle {
		font-size: 0.9rem;
	}

	.satya-hero-cta {
		flex-direction: column;
		gap: 12px;
	}

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

	/* Buttons */
	.satya-btn {
		padding: 14px 28px;
		font-size: 11px;
		letter-spacing: 2px;
	}

	.satya-btn--lg {
		padding: 16px 32px;
	}

	/* Stats */
	.satya-stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.satya-stat-number {
		font-size: 2rem;
	}

	/* Portfolio */
	.satya-portfolio-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.satya-portfolio-card--wide {
		grid-column: span 1;
	}

	.satya-portfolio-card {
		aspect-ratio: 4 / 5;
	}

	/* Feature cards */
	.satya-feature-card {
		padding: 28px 20px;
	}

	/* Contact form */
	.satya-form-input,
	.satya-form-textarea {
		padding: 12px 14px;
		font-size: 0.9rem;
	}

	/* CTA */
	.satya-cta-buttons {
		flex-direction: column;
		gap: 12px;
	}

	.satya-cta-buttons .satya-btn {
		width: 100%;
	}

	/* Awards */
	.satya-awards-bar {
		padding: 24px 0;
	}

	.satya-awards-bar-inner {
		gap: 16px;
	}

	.satya-awards-bar-logo {
		height: 22px;
	}

	/* Newsletter */
	.satya-newsletter {
		padding: 40px 0;
	}

	.satya-newsletter-title {
		font-size: 1.3rem;
	}

	/* Floating social */
	.satya-floating-social {
		right: 12px;
		bottom: 12px;
		gap: 8px;
	}

	/* Back to top */
	.satya-back-to-top {
		right: 12px;
		bottom: 80px;
	}

	/* Pricing */
	.satya-pricing-card {
		padding: 36px 24px;
	}

	/* Testimonial */
	.satya-testimonial-card {
		padding: 28px;
	}

	/* Loader */
	.satya-loader-logo {
		font-size: 1.4rem;
		letter-spacing: 4px;
	}
}


/* ============================================================
   31. THEMIFY BUILDER OVERRIDES
   ============================================================ */

/* Reset Themify defaults that conflict with our design */
.builder-content .satya-section,
.satya-section .builder-content {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/* Override Themify row styling */
.module_row,
.module_row_inner {
	max-width: 100% !important;
}

/* Themify column resets within our sections */
.satya-section .module_column {
	padding: 0;
}

/* Override Themify text module */
.module_text {
	font-family: var(--satya-font-body);
}

.module_text h1,
.module_text h2,
.module_text h3,
.module_text h4,
.module_text h5,
.module_text h6 {
	font-family: var(--satya-font-heading);
}

/* Override Themify button styling */
.module_button .satya-btn {
	margin: 0;
}

/* Override Themify image */
.module_image img {
	border-radius: 0;
}

/* Themify gallery override */
.module_gallery .gallery-item {
	padding: 0;
}

/* Themify slider override */
.module_slider .slide {
	background-size: cover;
	background-position: center;
}

/* Ensure Themify builder respects our container */
.builder-content > .module_row > .satya-container {
	max-width: var(--satya-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

/* Override Themify animation conflicts */
.module_row.animated {
	opacity: 1 !important;
}


/* ============================================================
   32. 404 PAGE
   ============================================================ */
.satya-404 {
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--satya-noir);
	color: var(--satya-cream);
	text-align: center;
	padding: 40px 24px;
}

.satya-404-content {
	max-width: 560px;
}

.satya-404-code {
	font-family: var(--satya-font-heading);
	font-size: clamp(6rem, 15vw, 12rem);
	font-weight: 300;
	color: var(--satya-gold);
	line-height: 1;
	margin-bottom: 16px;
	opacity: 0.3;
}

.satya-404-title {
	font-family: var(--satya-font-heading);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	color: var(--satya-cream);
	margin-bottom: 16px;
}

.satya-404-text {
	font-size: 1rem;
	color: var(--satya-gray-light);
	margin-bottom: 32px;
	line-height: 1.8;
}

.satya-404-search {
	max-width: 400px;
	margin: 0 auto 32px;
	display: flex;
}

.satya-404-search-input {
	flex: 1;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(184, 156, 125, 0.2);
	border-right: none;
	color: var(--satya-cream);
	font-size: 0.9rem;
	outline: none;
}

.satya-404-search-input::placeholder {
	color: var(--satya-gray);
}

.satya-404-search-input:focus {
	border-color: var(--satya-gold);
}

.satya-404-search-btn {
	padding: 14px 20px;
	background: var(--satya-gold);
	border: 1px solid var(--satya-gold);
	color: var(--satya-noir);
	cursor: pointer;
	font-size: 0.85rem;
	transition: all var(--satya-transition-fast);
}

.satya-404-search-btn:hover {
	background: var(--satya-gold-dark);
	color: var(--satya-cream);
}

.satya-404-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.satya-404-link {
	font-size: 0.9rem;
	color: var(--satya-gold);
	transition: color var(--satya-transition-fast);
}

.satya-404-link:hover {
	color: var(--satya-gold-light);
}


/* ============================================================
   33. SEARCH PAGE
   ============================================================ */
.satya-search-header {
	background: var(--satya-noir);
	padding: 120px 0 60px;
	text-align: center;
}

.satya-search-title {
	font-family: var(--satya-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--satya-cream);
	margin-bottom: 24px;
}

.satya-search-title span {
	color: var(--satya-gold);
}

.satya-search-form {
	max-width: 560px;
	margin: 0 auto;
	display: flex;
}

.satya-search-input {
	flex: 1;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(184, 156, 125, 0.2);
	border-right: none;
	color: var(--satya-cream);
	font-size: 1rem;
	outline: none;
}

.satya-search-input:focus {
	border-color: var(--satya-gold);
}

.satya-search-submit {
	padding: 16px 28px;
	background: var(--satya-gold);
	border: 1px solid var(--satya-gold);
	color: var(--satya-noir);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--satya-transition-fast);
}

.satya-search-submit:hover {
	background: var(--satya-gold-dark);
	color: var(--satya-cream);
}

/* Search results */
.satya-search-results {
	padding: 60px 0;
}

.satya-search-result {
	padding: 32px 0;
	border-bottom: 1px solid rgba(184, 156, 125, 0.1);
}

.satya-search-result-title {
	font-family: var(--satya-font-heading);
	font-size: 1.4rem;
	margin-bottom: 8px;
}

.satya-search-result-title a {
	color: var(--satya-noir);
	transition: color var(--satya-transition-fast);
}

.satya-search-result-title a:hover {
	color: var(--satya-gold);
}

.satya-search-result-excerpt {
	font-size: 0.9rem;
	color: var(--satya-gray);
	line-height: 1.8;
	margin-bottom: 8px;
}

.satya-search-result-meta {
	font-size: 0.8rem;
	color: var(--satya-gray-light);
}

.satya-search-result-meta mark {
	background: rgba(184, 156, 125, 0.2);
	color: var(--satya-gold-dark);
	padding: 1px 3px;
}

/* No results */
.satya-search-no-results {
	text-align: center;
	padding: 80px 0;
}

.satya-search-no-results-icon {
	font-size: 3rem;
	color: var(--satya-gold-light);
	opacity: 0.3;
	margin-bottom: 24px;
}

.satya-search-no-results-text {
	font-size: 1.1rem;
	color: var(--satya-gray);
}


/* ============================================================
   34. FORM MESSAGES
   ============================================================ */

/* Success message */
.satya-form-success {
	padding: 16px 20px;
	background: rgba(184, 156, 125, 0.08);
	border: 1px solid var(--satya-gold);
	border-left: 3px solid var(--satya-gold);
	color: var(--satya-gold-dark);
	font-size: 0.9rem;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.satya-form-success-icon {
	flex-shrink: 0;
	color: var(--satya-gold);
	font-size: 1.1rem;
	margin-top: 1px;
}

/* Error message */
.satya-form-error {
	padding: 16px 20px;
	background: rgba(220, 53, 69, 0.06);
	border: 1px solid rgba(220, 53, 69, 0.3);
	border-left: 3px solid #dc3545;
	color: #a71d2a;
	font-size: 0.9rem;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.satya-form-error-icon {
	flex-shrink: 0;
	color: #dc3545;
	font-size: 1.1rem;
	margin-top: 1px;
}

/* Inline field error */
.satya-form-field-error {
	font-size: 0.8rem;
	color: #dc3545;
	margin-top: 4px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.satya-form-group.has-error .satya-form-input,
.satya-form-group.has-error .satya-form-textarea,
.satya-form-group.has-error .satya-form-select {
	border-color: #dc3545;
}

.satya-form-group.has-success .satya-form-input,
.satya-form-group.has-success .satya-form-textarea,
.satya-form-group.has-success .satya-form-select {
	border-color: var(--satya-gold);
}

/* Loading state */
.satya-form-loading {
	position: relative;
	pointer-events: none;
}

.satya-form-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(248, 246, 242, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Newsletter success */
.satya-newsletter-success {
	text-align: center;
	padding: 16px;
}

.satya-newsletter-success-icon {
	color: var(--satya-gold);
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.satya-newsletter-success-text {
	color: var(--satya-cream);
	font-size: 0.9rem;
}


/* ============================================================
   ADDITIONAL UTILITY CLASSES
   ============================================================ */

/* Screen reader only */
.satya-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Text alignment */
.satya-text-center { text-align: center; }
.satya-text-left { text-align: left; }
.satya-text-right { text-align: right; }

/* Margin utilities */
.satya-mt-0 { margin-top: 0; }
.satya-mt-1 { margin-top: 8px; }
.satya-mt-2 { margin-top: 16px; }
.satya-mt-3 { margin-top: 24px; }
.satya-mt-4 { margin-top: 32px; }
.satya-mb-0 { margin-bottom: 0; }
.satya-mb-1 { margin-bottom: 8px; }
.satya-mb-2 { margin-bottom: 16px; }
.satya-mb-3 { margin-bottom: 24px; }
.satya-mb-4 { margin-bottom: 32px; }

/* Display utilities */
.satya-hidden { display: none !important; }
.satya-block { display: block; }
.satya-flex { display: flex; }
.satya-inline-flex { display: inline-flex; }

/* Overflow */
.satya-overflow-hidden { overflow: hidden; }

/* No scrollbar */
.satya-no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.satya-no-scrollbar::-webkit-scrollbar {
	display: none;
}

/* WordPress specific overrides */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
	max-width: 100%;
	height: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 0.85rem;
	color: var(--satya-gray);
	font-style: italic;
	margin-top: 8px;
}

.alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignnone {
	margin: 16px 0;
}

/* WordPress gallery */
.gallery {
	display: grid;
	gap: 8px;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }

/* Sticky post */
.sticky .satya-post-badge {
	display: inline-block;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-gold);
	background: rgba(184, 156, 125, 0.1);
	padding: 4px 12px;
	border: 1px solid var(--satya-gold-light);
	margin-bottom: 12px;
}

/* WordPress embeds */
.wp-block-embed {
	margin: 0;
}

.mejs-container {
	max-width: 100%;
}

/* Comments */
.satya-comments {
	padding: 60px 0;
}

.satya-comment {
	padding: 24px 0;
	border-bottom: 1px solid rgba(184, 156, 125, 0.08);
}

.satya-comment-author {
	font-family: var(--satya-font-heading);
	font-size: 1.1rem;
	color: var(--satya-noir);
	margin-bottom: 4px;
}

.satya-comment-date {
	font-size: 0.8rem;
	color: var(--satya-gray);
	margin-bottom: 12px;
}

.satya-comment-content {
	font-size: 0.95rem;
	color: var(--satya-gray);
	line-height: 1.8;
}

.satya-comment-reply {
	margin-top: 12px;
}

.satya-comment-reply a {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--satya-gold);
}

/* Pagination */
.satya-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 40px 0;
}

.satya-pagination a,
.satya-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--satya-gray);
	border: 1px solid rgba(184, 156, 125, 0.15);
	transition: all var(--satya-transition-fast);
}

.satya-pagination a:hover {
	border-color: var(--satya-gold);
	color: var(--satya-gold);
}

.satya-pagination .current {
	background: var(--satya-gold);
	color: var(--satya-noir);
	border-color: var(--satya-gold);
}

/* Breadcrumbs */
.satya-breadcrumbs {
	padding: 16px 0;
	font-size: 0.8rem;
	color: var(--satya-gray);
}

.satya-breadcrumbs a {
	color: var(--satya-gray);
	transition: color var(--satya-transition-fast);
}

.satya-breadcrumbs a:hover {
	color: var(--satya-gold);
}

.satya-breadcrumbs span {
	margin: 0 8px;
	color: var(--satya-gray-light);
}

/* Page header (for inner pages) */
.satya-page-header {
	background: var(--satya-noir);
	padding: 140px 0 60px;
	text-align: center;
}

.satya-page-header-title {
	font-family: var(--satya-font-heading);
	font-size: clamp(2rem, 4vw, 3.4rem);
	color: var(--satya-cream);
	margin-bottom: 12px;
}

.satya-page-header-subtitle {
	font-size: 1rem;
	color: var(--satya-gray-light);
	max-width: 560px;
	margin: 0 auto;
}

/* Select dropdown styling */
.satya-form-select {
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23B89C7D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 44px;
}

/* Focus visible for accessibility */
:focus-visible {
	outline: 2px solid var(--satya-gold);
	outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.satya-hero-slide {
		transition: none !important;
	}

	.satya-animate,
	.satya-animate-fade,
	.satya-animate-scale,
	.satya-animate-left,
	.satya-animate-right {
		opacity: 1;
		transform: none;
	}

	.satya-grain {
		display: none;
	}
}

/* Print styles */
@media print {
	.satya-header,
	.satya-floating-social,
	.satya-back-to-top,
	.satya-grain,
	.satya-loader,
	.satya-page-transition {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
		font-size: 12pt;
	}

	.satya-section {
		padding: 20px 0;
		page-break-inside: avoid;
	}

	a {
		color: #000;
		text-decoration: underline;
	}
}
