/*
Theme Name: Satya Photography
Theme URI: https://satyaphotography.in/
Author: Satya Photography
Author URI: https://satyaphotography.in/
Description: A luxury wedding photography theme for Satya Photography, Hyderabad. Built with CSS-first principles for bulletproof Themify Builder compatibility.
Version: 13.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, two-columns, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   0. THEMIFY BUILDER OVERRIDES (CRITICAL — HIGHEST PRIORITY)
   ========================================================================== */

/* Force full-width on hero inside Themify */
.themify_builder_content .satya-hero,
.themify_builder_content .satya-page-hero {
    min-height: 100vh !important;
    min-height: 100svh !important;
    width: 100% !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Reset Themify row/column padding when containing our sections */
.module_row:has(.satya-hero),
.module_column:has(.satya-hero),
.module_row:has(.satya-page-hero),
.module_column:has(.satya-page-hero),
.module_row:has(.satya-stats),
.module_column:has(.satya-stats),
.module_row:has(.satya-cta),
.module_column:has(.satya-cta),
.module_row:has(.satya-awards-bar),
.module_column:has(.satya-awards-bar) {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Force container max-width inside Themify */
.themify_builder_content .satya-container {
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* Ensure no Themify overflow clipping */
.themify_builder_content .module_row,
.themify_builder_content .module_column {
    overflow: visible !important;
}

/* Remove Themify default gutters on our sections */
.themify_builder_content .module_row:has(.satya-section) {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    --satya-cream: #F8F6F2;
    --satya-noir: #0F0F0F;
    --satya-gold: #B89C7D;
    --satya-gold-light: #D4BFA6;
    --satya-gold-dark: #9A7E5E;
    --satya-gray: #6F6F6F;
    --satya-gray-light: #A0A0A0;
    --satya-white: #FFFFFF;

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

    --satya-header-h: 80px;
    --satya-header-h-scrolled: 64px;
    --satya-container: 1240px;
    --satya-radius: 8px;
    --satya-radius-lg: 16px;
    --satya-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --satya-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --satya-shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--satya-font-body);
    font-size: 16px;
    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 {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--satya-gray);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* ==========================================================================
   3. LAYOUT & CONTAINERS
   ========================================================================== */

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

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

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

.satya-section--dark p {
    color: var(--satya-gray-light);
}

.satya-section--dark h2,
.satya-section--dark h3,
.satya-section--dark h4 {
    color: var(--satya-cream);
}

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

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

.satya-grid {
    display: grid;
    gap: 32px;
}

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

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

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

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

.satya-mb-0 { margin-bottom: 0; }
.satya-mb-1 { margin-bottom: 0.5rem; }
.satya-mb-2 { margin-bottom: 1rem; }
.satya-mb-3 { margin-bottom: 1.5rem; }
.satya-mb-4 { margin-bottom: 2rem; }
.satya-mb-6 { margin-bottom: 3rem; }
.satya-mb-8 { margin-bottom: 4rem; }

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

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

.satya-divider--left {
    margin-left: 0;
}

/* ==========================================================================
   4. PAGE LOADER
   ========================================================================== */

.satya-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--satya-noir);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.satya-loader__bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.satya-loader__bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--satya-gold);
    border-radius: 1px;
    animation: satyaLoaderSlide 1.2s ease-in-out infinite;
}

@keyframes satyaLoaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* CSS-only auto-dismiss fallback — hides loader after 3.5s even without JS */
@keyframes satyaLoaderAutoHide {
    0%, 85% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.satya-loader:not(.loaded) {
    animation: satyaLoaderAutoHide 3.5s ease forwards;
}

/* ==========================================================================
   5. CSS-ONLY ANIMATION FALLBACKS
   ========================================================================== */

/* Elements are visible by default even without JS adding .satya-visible */
.satya-animate {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.satya-animate.satya-visible {
    opacity: 1;
    transform: none;
}

.satya-animate--fade {
    opacity: 0;
    transform: translateY(20px);
}

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

.satya-animate--scale {
    opacity: 0;
    transform: scale(0.95);
}

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

/* ==========================================================================
   6. HEADER / NAVIGATION
   ========================================================================== */

.satya-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 24px;
    height: var(--satya-header-h);
    display: flex;
    align-items: center;
    transition: background-color var(--satya-transition),
                box-shadow var(--satya-transition),
                height var(--satya-transition);
    background-color: transparent;
}

.satya-header.scrolled {
    background-color: var(--satya-noir);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    height: var(--satya-header-h-scrolled);
}

.satya-header__inner {
    max-width: var(--satya-container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo — ULTRA HIGH SPECIFICITY to constrain custom logo */
.satya-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.satya-logo img,
.satya-logo .custom-logo,
.satya-logo a img,
.satya-logo a .custom-logo,
img.custom-logo {
    max-height: 52px !important;
    width: auto !important;
    max-width: 200px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.satya-header.scrolled .satya-logo img,
.satya-header.scrolled .satya-logo .custom-logo,
.satya-header.scrolled .satya-logo a img,
.satya-header.scrolled .satya-logo a .custom-logo,
.satya-header.scrolled img.custom-logo {
    max-height: 38px !important;
}

.satya-logo-text {
    font-family: var(--satya-font-heading);
    font-size: 24px;
    color: var(--satya-cream);
    letter-spacing: 2px;
    text-decoration: none;
    transition: color var(--satya-transition);
}

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

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

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

.satya-nav__menu a {
    font-family: var(--satya-font-body);
    font-size: 13px;
    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);
}

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

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

.satya-nav__menu a:hover::after,
.satya-nav__menu a:focus::after {
    width: 100%;
}

.satya-nav__menu .current-menu-item a,
.satya-nav__menu .current_page_item a {
    color: var(--satya-gold);
}

.satya-nav__menu .current-menu-item a::after,
.satya-nav__menu .current_page_item a::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.satya-hamburger {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    padding: 0;
}

.satya-hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--satya-cream);
    transition: transform var(--satya-transition), opacity var(--satya-transition);
    position: relative;
}

.satya-hamburger__line::before,
.satya-hamburger__line::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--satya-cream);
    transition: transform var(--satya-transition);
}

.satya-hamburger__line::before {
    top: -7px;
}

.satya-hamburger__line::after {
    top: 7px;
}

.satya-hamburger.active .satya-hamburger__line {
    background: transparent;
}

.satya-hamburger.active .satya-hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}

.satya-hamburger.active .satya-hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation Panel */
.satya-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--satya-noir);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform var(--satya-transition);
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    overflow-y: auto;
}

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

.satya-mobile-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--satya-transition), visibility var(--satya-transition);
}

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

.satya-mobile-nav__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.satya-mobile-nav__menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.satya-mobile-nav__menu a {
    display: block;
    padding: 16px 0;
    font-family: var(--satya-font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--satya-cream);
    text-decoration: none;
    transition: color var(--satya-transition), padding-left var(--satya-transition);
}

.satya-mobile-nav__menu a:hover {
    color: var(--satya-gold);
    padding-left: 8px;
}

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */

.satya-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--satya-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--satya-radius);
    transition: all var(--satya-transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
    line-height: 1;
}

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

.satya-btn--primary:hover,
.satya-btn--primary:focus {
    background: var(--satya-gold-dark);
    color: var(--satya-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(184, 156, 125, 0.4);
}

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

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

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

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

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

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

.satya-btn--sm {
    padding: 12px 24px;
    font-size: 12px;
}

.satya-btn--lg {
    padding: 18px 44px;
    font-size: 14px;
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.satya-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--satya-noir);
    overflow: hidden;
}

.satya-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.3) 0%,
        rgba(15, 15, 15, 0.5) 50%,
        rgba(15, 15, 15, 0.7) 100%
    );
    z-index: 1;
}

.satya-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.satya-hero__label {
    font-family: var(--satya-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--satya-gold-light);
    margin-bottom: 20px;
    display: block;
}

.satya-hero__title {
    font-family: var(--satya-font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--satya-cream);
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.satya-hero__subtitle {
    font-family: var(--satya-font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--satya-gray-light);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}

.satya-hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slideshow slides */
.satya-hero__slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.satya-hero__slide.active {
    opacity: 1;
}

/* Page Hero (smaller, for inner pages) */
.satya-page-hero {
    position: relative;
    min-height: 50vh;
    min-height: 50svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--satya-noir);
    overflow: hidden;
}

.satya-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.6);
    z-index: 1;
}

.satya-page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 60px;
}

.satya-page-hero__title {
    font-family: var(--satya-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--satya-cream);
    margin-bottom: 16px;
}

.satya-page-hero__breadcrumb {
    font-family: var(--satya-font-body);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--satya-gold-light);
}

.satya-page-hero__breadcrumb a {
    color: var(--satya-gold-light);
    text-decoration: none;
    transition: color var(--satya-transition);
}

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

/* ==========================================================================
   9. STATS BAR
   ========================================================================== */

.satya-stats {
    background: var(--satya-noir);
    padding: 48px 0;
    border-top: 1px solid rgba(184, 156, 125, 0.2);
}

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

.satya-stats__item {
    padding: 16px;
}

.satya-stats__number {
    font-family: var(--satya-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--satya-gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.satya-stats__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--satya-gray-light);
}

/* ==========================================================================
   10. FEATURES GRID
   ========================================================================== */

.satya-features {
    padding: 100px 0;
    background: var(--satya-cream);
}

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

.satya-feature {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(184, 156, 125, 0.15);
    border-radius: var(--satya-radius-lg);
    transition: all var(--satya-transition);
    background: var(--satya-white);
}

.satya-feature:hover {
    border-color: var(--satya-gold-light);
    box-shadow: var(--satya-shadow);
    transform: translateY(-4px);
}

.satya-feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--satya-gold);
    font-size: 28px;
}

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

.satya-feature__text {
    font-size: 15px;
    color: var(--satya-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   11. TESTIMONIALS
   ========================================================================== */

.satya-testimonials {
    padding: 100px 0;
    background: var(--satya-noir);
    overflow: hidden;
}

.satya-testimonials__slider {
    position: relative;
    max-width: 800px;
    margin: 48px auto 0;
    overflow: hidden;
}

.satya-testimonials__track {
    display: flex;
    transition: transform 0.5s ease;
}

.satya-testimonial {
    min-width: 100%;
    padding: 0 24px;
    text-align: center;
}

.satya-testimonial__quote {
    font-family: var(--satya-font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--satya-cream);
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
}

.satya-testimonial__quote::before {
    content: '\201C';
    font-family: var(--satya-font-heading);
    font-size: 80px;
    color: var(--satya-gold);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    line-height: 1;
}

.satya-testimonial__author {
    font-family: var(--satya-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--satya-gold);
    margin-bottom: 4px;
}

.satya-testimonial__role {
    font-size: 13px;
    color: var(--satya-gray-light);
}

.satya-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.satya-testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--satya-transition);
}

.satya-testimonials__dot.active {
    background: var(--satya-gold);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   12. PORTFOLIO GRID
   ========================================================================== */

.satya-portfolio {
    padding: 100px 0;
    background: var(--satya-cream);
}

.satya-portfolio__filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.satya-portfolio__filter-btn {
    font-family: var(--satya-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid rgba(184, 156, 125, 0.3);
    border-radius: var(--satya-radius);
    background: transparent;
    color: var(--satya-gray);
    cursor: pointer;
    transition: all var(--satya-transition);
}

.satya-portfolio__filter-btn:hover,
.satya-portfolio__filter-btn.active {
    background: var(--satya-gold);
    color: var(--satya-white);
    border-color: var(--satya-gold);
}

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

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

.satya-portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.satya-portfolio__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.8));
    opacity: 0;
    transition: opacity var(--satya-transition);
}

.satya-portfolio__item:hover .satya-portfolio__overlay {
    opacity: 1;
}

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

.satya-portfolio__overlay-cat {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--satya-gold-light);
}

/* ==========================================================================
   13. FILMS SECTION
   ========================================================================== */

.satya-films {
    padding: 100px 0;
    background: var(--satya-noir);
}

.satya-films__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.satya-film-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--satya-radius-lg);
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

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

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

.satya-film-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    display: flex;
    flex-direction: column;
    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.6);
}

.satya-film-card__play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--satya-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all var(--satya-transition);
    background: rgba(184, 156, 125, 0.2);
}

.satya-film-card:hover .satya-film-card__play {
    background: var(--satya-gold);
    border-color: var(--satya-gold);
    transform: scale(1.1);
}

.satya-film-card__play i {
    color: var(--satya-cream);
    font-size: 24px;
    margin-left: 4px;
}

.satya-film-card__title {
    font-family: var(--satya-font-heading);
    font-size: 1.3rem;
    color: var(--satya-cream);
    text-align: center;
}

.satya-film-card__meta {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--satya-gold-light);
    margin-top: 4px;
}

/* ==========================================================================
   14. PRICING CARDS
   ========================================================================== */

.satya-pricing {
    padding: 100px 0;
    background: var(--satya-cream);
}

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

.satya-price-card {
    background: var(--satya-white);
    border-radius: var(--satya-radius-lg);
    padding: 48px 36px;
    border: 1px solid rgba(184, 156, 125, 0.15);
    position: relative;
    transition: all var(--satya-transition);
    display: flex;
    flex-direction: column;
}

.satya-price-card:hover {
    border-color: var(--satya-gold-light);
    box-shadow: var(--satya-shadow-lg);
    transform: translateY(-4px);
}

.satya-price-card--featured {
    background: var(--satya-noir);
    border-color: var(--satya-gold);
    color: var(--satya-cream);
}

.satya-price-card--featured .satya-price-card__name,
.satya-price-card--featured .satya-price-card__price,
.satya-price-card--featured .satya-price-card__period,
.satya-price-card--featured .satya-price-card__desc {
    color: var(--satya-cream);
}

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

.satya-price-card--featured .satya-price-card__feature i {
    color: var(--satya-gold);
}

.satya-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--satya-gold);
    color: var(--satya-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.satya-price-card__name {
    font-family: var(--satya-font-heading);
    font-size: 1.6rem;
    color: var(--satya-noir);
    margin-bottom: 8px;
}

.satya-price-card__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-price-card__period {
    font-size: 13px;
    color: var(--satya-gray);
    margin-bottom: 8px;
}

.satya-price-card__desc {
    font-size: 14px;
    color: var(--satya-gray);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(184, 156, 125, 0.15);
}

.satya-price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.satya-price-card__feature {
    font-size: 14px;
    color: var(--satya-gray);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.satya-price-card__feature i {
    color: var(--satya-gold);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.satya-price-card .satya-btn {
    width: 100%;
}

/* FAQ */
.satya-faq {
    padding: 80px 0;
    background: var(--satya-white);
}

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

.satya-faq__item {
    border-bottom: 1px solid rgba(184, 156, 125, 0.15);
}

.satya-faq__question {
    font-family: var(--satya-font-heading);
    font-size: 1.2rem;
    color: var(--satya-noir);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    transition: color var(--satya-transition);
}

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

.satya-faq__question i {
    transition: transform var(--satya-transition);
    color: var(--satya-gold);
}

.satya-faq__question.active i {
    transform: rotate(180deg);
}

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

.satya-faq__answer.open {
    max-height: 300px;
    padding-bottom: 20px;
}

.satya-faq__answer p {
    font-size: 15px;
    color: var(--satya-gray);
    line-height: 1.7;
}

/* ==========================================================================
   15. CONTACT SECTION
   ========================================================================== */

.satya-contact {
    padding: 100px 0;
    background: var(--satya-cream);
}

.satya-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: start;
}

.satya-contact-form {
    background: var(--satya-white);
    padding: 40px;
    border-radius: var(--satya-radius-lg);
    border: 1px solid rgba(184, 156, 125, 0.15);
}

.satya-contact-form .satya-form-group {
    margin-bottom: 20px;
}

.satya-contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--satya-noir);
    margin-bottom: 8px;
}

.satya-contact-form input,
.satya-contact-form textarea,
.satya-contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(184, 156, 125, 0.3);
    border-radius: var(--satya-radius);
    font-size: 15px;
    color: var(--satya-noir);
    background: var(--satya-cream);
    transition: border-color var(--satya-transition), box-shadow var(--satya-transition);
    outline: none;
}

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

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

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

.satya-contact-form .satya-btn {
    width: 100%;
    margin-top: 8px;
}

.satya-contact-form__message {
    padding: 12px 16px;
    border-radius: var(--satya-radius);
    margin-top: 16px;
    font-size: 14px;
    display: none;
}

.satya-contact-form__message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.satya-contact-form__message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

.satya-contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.satya-contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 156, 125, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--satya-gold);
    font-size: 18px;
}

.satya-contact-info__text h4 {
    font-family: var(--satya-font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.satya-contact-info__text p {
    font-size: 15px;
    color: var(--satya-gray);
    margin-bottom: 0;
}

.satya-contact-info__text a {
    color: var(--satya-gray);
    transition: color var(--satya-transition);
}

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

.satya-contact__map {
    margin-top: 32px;
    border-radius: var(--satya-radius-lg);
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(184, 156, 125, 0.15);
}

.satya-contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   16. ABOUT SECTION
   ========================================================================== */

.satya-about-split {
    padding: 100px 0;
    background: var(--satya-cream);
}

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

.satya-about-split__image {
    position: relative;
    border-radius: var(--satya-radius-lg);
    overflow: hidden;
}

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

.satya-about-split__image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--satya-gold);
    border-radius: var(--satya-radius-lg);
    z-index: -1;
}

.satya-about-split__content {
    padding: 20px 0;
}

.satya-about-split__content h2 {
    margin-bottom: 20px;
}

.satya-about-split__content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Philosophy Section */
.satya-philosophy {
    padding: 100px 0;
    background: var(--satya-noir);
    text-align: center;
}

.satya-philosophy__quote {
    font-family: var(--satya-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--satya-cream);
    max-width: 700px;
    margin: 24px auto 32px;
    line-height: 1.6;
}

.satya-philosophy__author {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--satya-gold);
}

/* ==========================================================================
   17. TIMELINE
   ========================================================================== */

.satya-timeline {
    padding: 100px 0;
    background: var(--satya-white);
}

.satya-timeline__track {
    position: relative;
    max-width: 700px;
    margin: 48px auto 0;
    padding-left: 40px;
}

.satya-timeline__track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: rgba(184, 156, 125, 0.3);
}

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

.satya-timeline__item:last-child {
    padding-bottom: 0;
}

.satya-timeline__dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--satya-gold);
    border: 3px solid var(--satya-white);
    box-shadow: 0 0 0 2px var(--satya-gold);
}

.satya-timeline__year {
    font-family: var(--satya-font-heading);
    font-size: 1.3rem;
    color: var(--satya-gold);
    margin-bottom: 4px;
}

.satya-timeline__text {
    font-size: 15px;
    color: var(--satya-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   18. AWARDS BAR
   ========================================================================== */

.satya-awards-bar {
    padding: 60px 0;
    background: var(--satya-noir);
    border-top: 1px solid rgba(184, 156, 125, 0.15);
    border-bottom: 1px solid rgba(184, 156, 125, 0.15);
}

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

.satya-awards-bar__item {
    text-align: center;
}

.satya-awards-bar__icon {
    font-size: 32px;
    color: var(--satya-gold);
    margin-bottom: 8px;
}

.satya-awards-bar__text {
    font-family: var(--satya-font-heading);
    font-size: 1rem;
    color: var(--satya-cream);
}

.satya-awards-bar__sub {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--satya-gray-light);
}

/* ==========================================================================
   19. CTA SECTION
   ========================================================================== */

.satya-cta {
    padding: 100px 0;
    background: var(--satya-noir);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.satya-cta__content {
    position: relative;
    z-index: 1;
}

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

.satya-cta__subtitle {
    font-size: 16px;
    color: var(--satya-gray-light);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.satya-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.satya-footer {
    background: var(--satya-noir);
    color: var(--satya-gray-light);
    border-top: 1px solid rgba(184, 156, 125, 0.1);
}

.satya-footer__main {
    padding: 80px 0 40px;
}

.satya-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.satya-footer__brand {
    max-width: 300px;
}

.satya-footer__brand-name {
    font-family: var(--satya-font-heading);
    font-size: 1.6rem;
    color: var(--satya-cream);
    margin-bottom: 16px;
}

.satya-footer__brand-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.satya-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--satya-cream);
    font-size: 16px;
    transition: all var(--satya-transition);
}

.satya-footer__social a:hover {
    background: var(--satya-gold);
    border-color: var(--satya-gold);
    color: var(--satya-white);
}

.satya-footer__heading {
    font-family: var(--satya-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--satya-cream);
    margin-bottom: 20px;
}

.satya-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.satya-footer__links li {
    margin-bottom: 10px;
}

.satya-footer__links a {
    font-size: 14px;
    color: var(--satya-gray-light);
    text-decoration: none;
    transition: color var(--satya-transition), padding-left var(--satya-transition);
}

.satya-footer__links a:hover {
    color: var(--satya-gold);
    padding-left: 4px;
}

.satya-footer__contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
}

.satya-footer__contact-item i {
    color: var(--satya-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.satya-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.satya-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.satya-footer__copyright {
    font-size: 13px;
    color: var(--satya-gray);
}

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

/* ==========================================================================
   21. FLOATING SOCIAL ICONS
   ========================================================================== */

.satya-floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.satya-floating-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--satya-white);
    transition: all var(--satya-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.satya-floating-social a:hover {
    transform: scale(1.1);
}

.satya-floating-social .satya-social-whatsapp {
    background: #25D366;
}

.satya-floating-social .satya-social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.satya-floating-social .satya-social-phone {
    background: var(--satya-gold);
}

/* ==========================================================================
   22. BACK-TO-TOP
   ========================================================================== */

.satya-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--satya-gold);
    color: var(--satya-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--satya-transition);
    box-shadow: 0 4px 12px rgba(184, 156, 125, 0.4);
    cursor: pointer;
    border: none;
}

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

.satya-back-to-top:hover {
    background: var(--satya-gold-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   23. ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes satyaFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes satyaFadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes satyaFadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes satyaFadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes satyaScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes satyaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.satya-animate--fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.satya-animate--fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.satya-animate--fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.satya-animate--fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

/* Stagger animation delays */
.satya-delay-1 { transition-delay: 0.1s !important; }
.satya-delay-2 { transition-delay: 0.2s !important; }
.satya-delay-3 { transition-delay: 0.3s !important; }
.satya-delay-4 { transition-delay: 0.4s !important; }
.satya-delay-5 { transition-delay: 0.5s !important; }
.satya-delay-6 { transition-delay: 0.6s !important; }

/* ==========================================================================
   24. RESPONSIVE — 1024px
   ========================================================================== */

@media (max-width: 1024px) {
    .satya-section {
        padding: 80px 0;
    }

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

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

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

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

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

    .satya-portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .satya-contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .satya-about-split__grid {
        gap: 40px;
    }

    .satya-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .satya-floating-social {
        display: none;
    }
}

/* ==========================================================================
   25. RESPONSIVE — 768px
   ========================================================================== */

@media (max-width: 768px) {
    .satya-nav {
        display: none;
    }

    .satya-hamburger {
        display: flex;
    }

    .satya-header {
        height: 64px;
    }

    .satya-header.scrolled {
        height: 56px;
    }

    .satya-logo img,
    .satya-logo .custom-logo,
    .satya-logo a img,
    .satya-logo a .custom-logo,
    img.custom-logo {
        max-height: 40px !important;
    }

    .satya-header.scrolled .satya-logo img,
    .satya-header.scrolled .satya-logo .custom-logo,
    .satya-header.scrolled img.custom-logo {
        max-height: 32px !important;
    }

    .satya-section {
        padding: 60px 0;
    }

    .satya-hero__content {
        padding: 100px 20px 60px;
    }

    .satya-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .satya-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .satya-hero__actions .satya-btn {
        width: 100%;
        max-width: 280px;
    }

    .satya-page-hero {
        min-height: 40vh;
    }

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

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

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

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

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

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

    .satya-about-split__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .satya-about-split__image::after {
        display: none;
    }

    .satya-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .satya-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .satya-awards-bar__grid {
        gap: 24px;
    }

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

    .satya-contact-form {
        padding: 28px;
    }

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

/* ==========================================================================
   26. RESPONSIVE — 480px
   ========================================================================== */

@media (max-width: 480px) {
    .satya-section {
        padding: 48px 0;
    }

    .satya-hero__title {
        font-size: 2rem;
    }

    .satya-hero__subtitle {
        font-size: 1rem;
    }

    .satya-hero__content {
        padding: 80px 16px 48px;
    }

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

    .satya-btn {
        padding: 14px 28px;
        font-size: 12px;
    }

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

    .satya-stats__number {
        font-size: 1.8rem;
    }

    .satya-portfolio__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .satya-price-card {
        padding: 32px 24px;
    }

    .satya-contact-form {
        padding: 20px;
    }

    .satya-awards-bar__grid {
        flex-direction: column;
        gap: 20px;
    }

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

/* ==========================================================================
   WORDPRESS ALIGNMENT & UTILITY OVERRIDES
   ========================================================================== */

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

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

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

.wp-caption-text {
    font-size: 13px;
    color: var(--satya-gray);
    text-align: center;
    padding: 8px 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Post / Archive Styles */
.satya-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.satya-post__title {
    font-family: var(--satya-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.satya-post__meta {
    font-size: 13px;
    color: var(--satya-gray);
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.satya-post__content {
    line-height: 1.8;
    color: var(--satya-noir);
}

.satya-post__content p {
    color: var(--satya-noir);
    margin-bottom: 1.5rem;
}

.satya-post__content h2,
.satya-post__content h3,
.satya-post__content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.satya-post__content img {
    border-radius: var(--satya-radius);
    margin: 2rem 0;
}

.satya-archive {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

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

.satya-archive__item:last-child {
    border-bottom: none;
}

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

.satya-archive__item-title a {
    color: var(--satya-noir);
    transition: color var(--satya-transition);
}

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

.satya-archive__item-excerpt {
    font-size: 15px;
    color: var(--satya-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.satya-archive__item-meta {
    font-size: 13px;
    color: var(--satya-gray-light);
}

.satya-archive__item-meta a {
    color: var(--satya-gold);
}

/* 404 Page */
.satya-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.satya-404__title {
    font-family: var(--satya-font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--satya-gold);
    line-height: 1;
    margin-bottom: 16px;
}

.satya-404__text {
    font-size: 18px;
    color: var(--satya-gray);
    margin-bottom: 32px;
}

/* Search Form */
.satya-search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.satya-search-form input[type="search"] {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid rgba(184, 156, 125, 0.3);
    border-right: none;
    border-radius: var(--satya-radius) 0 0 var(--satya-radius);
    font-size: 15px;
    color: var(--satya-noir);
    background: var(--satya-white);
    outline: none;
}

.satya-search-form input[type="search"]:focus {
    border-color: var(--satya-gold);
}

.satya-search-form button {
    padding: 14px 24px;
    background: var(--satya-gold);
    color: var(--satya-white);
    border: 1px solid var(--satya-gold);
    border-radius: 0 var(--satya-radius) var(--satya-radius) 0;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--satya-transition);
}

.satya-search-form button:hover {
    background: var(--satya-gold-dark);
}

/* Comments */
.satya-comments {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(184, 156, 125, 0.15);
}

.satya-comments__title {
    font-family: var(--satya-font-heading);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

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

.satya-comment__author {
    font-weight: 600;
    color: var(--satya-noir);
}

.satya-comment__date {
    font-size: 13px;
    color: var(--satya-gray-light);
}

.satya-comment__content {
    margin-top: 8px;
    font-size: 15px;
    color: var(--satya-gray);
    line-height: 1.7;
}

.satya-comment__reply {
    margin-top: 8px;
}

.satya-comment__reply a {
    font-size: 13px;
    color: var(--satya-gold);
}

/* Pagination */
.satya-pagination {
    display: flex;
    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;
    border-radius: var(--satya-radius);
    border: 1px solid rgba(184, 156, 125, 0.3);
    font-size: 14px;
    text-decoration: none;
    color: var(--satya-noir);
    transition: all var(--satya-transition);
}

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

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

/* Lightbox for film */
.satya-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.satya-lightbox.open {
    display: flex;
}

.satya-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--satya-cream);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background var(--satya-transition);
}

.satya-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.satya-lightbox__video {
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: var(--satya-radius);
}
