/*=============================================
  SATYA PHOTOGRAPHY - THEME STYLESHEET
  Premium Wedding Photography Theme
=============================================*/

/*---------------------------------------------
  CSS Custom Properties (Design Tokens)
---------------------------------------------*/
:root {
    /* Colors */
    --color-cream: #f4f0ed;
    --color-foreground: #4d504a;
    --color-primary: #654c36;
    --color-primary-foreground: #ffffff;
    --color-secondary: #a59f95;
    --color-muted: #eae9e7;
    --color-muted-foreground: #84847c;
    --color-accent: #654c36;
    --color-border: #c9c7c1;
    --color-ring: #654c36;
    --color-gold: #654c36;
    --color-gold-light: #8b7355;
    --color-gold-dark: #4a3828;
    --color-cream-bg: #f4f0ed;
    --color-warm-gray: #a59f95;
    --color-sage: #4d504a;
    --color-sage-light: #84847c;
    --color-coral: #EC9A96;
    --color-dark-footer: #3a3530;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-label: 'Source Sans 3', 'Arial', sans-serif;

    /* Spacing */
    --section-py: 4rem;
    --section-px: 1rem;
    --container-max: 1200px;

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

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-sage-light);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

::selection {
    background: rgba(101, 76, 54, 0.2);
    color: var(--color-sage);
}

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

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

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

/*---------------------------------------------
  Typography Classes
---------------------------------------------*/
.heading-xl {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-sage);
    line-height: 1.1;
}

.heading-lg {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--color-sage);
    line-height: 1.2;
}

.heading-md {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-sage);
    line-height: 1.3;
}

.heading-sm {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-sage);
    line-height: 1.4;
}

.body-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 27px;
    color: var(--color-sage-light);
}

.body-text-sm {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    color: var(--color-sage-light);
}

.label-text {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.3px;
    text-transform: uppercase;
    color: var(--color-sage-light);
}

/*---------------------------------------------
  Container
---------------------------------------------*/
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/*---------------------------------------------
  Section Padding
---------------------------------------------*/
.section-padding {
    padding: var(--section-py) var(--section-px);
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}

/*---------------------------------------------
  Buttons
---------------------------------------------*/
.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(101, 76, 54, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1.5px solid var(--color-gold);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #fff;
}

.btn-white {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: var(--color-gold);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-white:hover {
    background: var(--color-cream);
    color: var(--color-gold-dark);
    transform: translateY(-1px);
}

/*---------------------------------------------
  Dividers
---------------------------------------------*/
.divider-line {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    transform: rotate(45deg);
    margin: 1.5rem 0;
}

/*---------------------------------------------
  Image Hover Effects
---------------------------------------------*/
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img,
.img-hover-zoom > div {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.img-hover-zoom:hover img,
.img-hover-zoom:hover > div {
    transform: scale(1.06);
    filter: brightness(1.08);
}

.img-hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.img-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.img-gallery {
    transition: transform 0.5s ease, filter 0.5s ease;
    cursor: pointer;
}

.img-gallery:hover {
    transform: scale(1.02);
    filter: brightness(1.08);
}

/*---------------------------------------------
  Card Shadow
---------------------------------------------*/
.card-shadow {
    background: #fff;
    border-radius: 4px;
    padding: 2rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-shadow:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/*---------------------------------------------
  Form Styles
---------------------------------------------*/
.form-label {
    display: block;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-sage);
    outline: none;
    transition: border-color var(--transition-base);
}

.form-input:focus {
    border-bottom-color: var(--color-gold);
}

.form-input::placeholder {
    color: var(--color-muted-foreground);
}

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

select.form-input {
    appearance: none;
    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 1L6 6L11 1' stroke='%2384847c' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    cursor: pointer;
}

/*---------------------------------------------
  Placeholder Images
---------------------------------------------*/
.about-placeholder-img,
.story-placeholder-img,
.film-placeholder-img,
.instagram-placeholder-img,
.gallery-placeholder-img,
.stats-placeholder-img {
    background: linear-gradient(135deg, #d4c5b5 0%, #a89080 50%, #654c36 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-label);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    overflow: hidden;
}

.about-placeholder-img {
    aspect-ratio: 3/4;
    width: 100%;
}

.story-placeholder-img {
    aspect-ratio: 3/2;
    width: 100%;
}

.film-placeholder-img {
    aspect-ratio: 16/9;
    width: 100%;
}

.instagram-placeholder-img {
    aspect-ratio: 1;
    width: 100%;
}

.gallery-placeholder-img {
    aspect-ratio: 3/2;
    width: 100%;
}

.stats-placeholder-img {
    aspect-ratio: 3/4;
    width: 100%;
}

/*---------------------------------------------
  Header Styles
---------------------------------------------*/
.satya-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base), backdrop-filter var(--transition-base);
    padding: 1rem 0;
    /* Background is set via inline style in header.php and controlled by JS - DO NOT set here */
}

.satya-header.scrolled {
    /* All scrolled styles are controlled by JS for reliability */
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.header-logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo:hover .logo-image {
    transform: scale(1.03);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-sage);
}

.logo-divider {
    font-weight: 200;
    color: var(--color-gold);
    font-size: 18px;
}

.logo-sub {
    font-family: var(--font-label);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--color-muted-foreground);
    text-transform: uppercase;
}

/* Homepage header text colors are now controlled by JS for reliability */

/* Navigation */
.header-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header-nav .nav-link {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-sage);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

/* Homepage nav link colors are now controlled by JS for reliability */

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

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

.header-nav .nav-link:hover {
    color: var(--color-gold);
}

.header-book-btn {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    transition: all var(--transition-base);
    text-decoration: none;
}

/* Homepage book button styles are now controlled by JS for reliability */

.header-book-btn:hover {
    background: var(--color-gold);
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-sage);
    transition: all var(--transition-base);
}

/* Homepage hamburger color is now controlled by JS for reliability */

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.mobile-nav-item {
    margin: 1.5rem 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-sage);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--color-gold);
}

.mobile-book-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 14px 36px;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 768px) {
    .header-nav,
    .header-book-btn {
        display: none;
    }

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

/*---------------------------------------------
  Footer Styles
---------------------------------------------*/
.satya-footer {
    background: var(--color-dark-footer);
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 3fr 3fr;
    gap: 2rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.footer-logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #fff;
}

.footer-logo-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 200;
    font-size: 16px;
}

.footer-logo-sub {
    font-family: var(--font-label);
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 14px;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

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

.footer-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 13px;
}

.footer-info .info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-hours {
    margin-top: 1.5rem;
}

.footer-hours h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-hours p {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 0.75rem;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    transition: background var(--transition-fast);
}

.instagram-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
}

.instagram-handle {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.instagram-handle:hover {
    color: var(--color-gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-crafted {
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------------------------------------
  Scroll to Top
---------------------------------------------*/
.satya-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--color-gold);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 900;
    box-shadow: 0 4px 12px rgba(101, 76, 54, 0.3);
}

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

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

/*---------------------------------------------
  WhatsApp Button
---------------------------------------------*/
.satya-whatsapp-btn {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.satya-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/*---------------------------------------------
  Gallery Filters
---------------------------------------------*/
.gallery-filters,
.films-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 20px;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-muted-foreground);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/*---------------------------------------------
  Gallery Grid
---------------------------------------------*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
}

/*---------------------------------------------
  Lightbox
---------------------------------------------*/
.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-counter {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 2px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-image-wrapper {
    max-width: 85vw;
    max-height: 80vh;
}

.lightbox-image-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    max-width: 90vw;
    overflow-x: auto;
}

/*---------------------------------------------
  Films Grid
---------------------------------------------*/
.films-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.film-card {
    transition: transform var(--transition-base);
}

.film-card:hover {
    transform: translateY(-4px);
}

.film-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.film-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.film-card:hover .film-overlay {
    opacity: 1;
}

.film-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.film-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.film-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 2px;
}

.film-category-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
}

.film-info {
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .films-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .films-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*---------------------------------------------
  Video Modal
---------------------------------------------*/
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    max-width: 900px;
    width: 90%;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.video-modal-close:hover {
    opacity: 1;
}

/*---------------------------------------------
  Booking Form
---------------------------------------------*/
.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.step-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted-foreground);
    transition: all var(--transition-base);
}

.step-indicator.active .step-circle,
.step-indicator.completed .step-circle {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.step-label {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-muted-foreground);
}

.step-indicator.active .step-label {
    color: var(--color-gold);
}

.step-line {
    flex: 1;
    height: 1.5px;
    background: var(--color-border);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
    max-width: 80px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.form-success {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    margin-bottom: 1.5rem;
}

/*---------------------------------------------
  Hero Slideshow
---------------------------------------------*/
.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

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

.hero-slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero-label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    max-width: 800px;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-indicator {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.hero-indicator.active {
    width: 40px;
    background: #fff;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-label);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Ken Burns animations */
.ken-burns-1 { animation: kenBurns1 12s ease-in-out infinite alternate; }
.ken-burns-2 { animation: kenBurns2 14s ease-in-out infinite alternate; }
.ken-burns-3 { animation: kenBurns3 10s ease-in-out infinite alternate; }

@keyframes kenBurns1 {
    0% { transform: scale(1); }
    100% { transform: scale(1.1) translate(-1%, -1%); }
}

@keyframes kenBurns2 {
    0% { transform: scale(1.08); }
    100% { transform: scale(1) translate(1%, 0%); }
}

@keyframes kenBurns3 {
    0% { transform: scale(1) translate(0%, 0%); }
    100% { transform: scale(1.12) translate(-0.5%, -1%); }
}

/*---------------------------------------------
  Marquee
---------------------------------------------*/
.satya-marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

.satya-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-muted-foreground);
    opacity: 0.3;
}

.marquee-diamond {
    margin: 0 2rem;
    color: var(--color-gold);
    opacity: 0.3;
    font-size: 12px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*---------------------------------------------
  Stats Section
---------------------------------------------*/
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    color: var(--color-gold);
    display: block;
}

.stat-label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-muted-foreground);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------------------------------------
  Services Grid
---------------------------------------------*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-icon {
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------------------------------------
  Wedding Stories Carousel
---------------------------------------------*/
.stories-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.stories-carousel::-webkit-scrollbar {
    display: none;
}

.story-card {
    flex: 0 0 calc(33.333% - 1rem);
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .story-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 640px) {
    .story-card {
        flex: 0 0 calc(80% - 0.3rem);
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/*---------------------------------------------
  Testimonials
---------------------------------------------*/
.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.test-prev,
.test-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.test-prev:hover,
.test-next:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all var(--transition-base);
}

.test-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

/*---------------------------------------------
  Contact Section
---------------------------------------------*/
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details .contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/*---------------------------------------------
  About Page
---------------------------------------------*/
.about-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 4rem;
    align-items: center;
}

.about-text .about-link {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    transition: gap var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.about-text .about-link:hover {
    gap: 8px;
}

.philosophy-values .value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    margin-bottom: 1rem;
}

.about-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link-lg {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted-foreground);
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.social-link-lg:hover {
    color: var(--color-gold);
}

.hours-grid .hour-card {
    text-align: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-values {
        grid-template-columns: 1fr !important;
    }

    .hours-grid {
        grid-template-columns: 1fr !important;
    }

    .location-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-info-grid {
        grid-template-columns: 1fr !important;
    }
}

/*---------------------------------------------
  As Seen On
---------------------------------------------*/
.as-seen-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.logo-text-item {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-muted-foreground);
    opacity: 0.3;
}

/*---------------------------------------------
  Custom Scrollbar
---------------------------------------------*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/*---------------------------------------------
  WordPress Alignment Classes
---------------------------------------------*/
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/*---------------------------------------------
  Play Button
---------------------------------------------*/
.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

/*---------------------------------------------
  Video Section
---------------------------------------------*/
.home-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
}

.video-placeholder-img {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.video-link {
    display: block;
    text-align: center;
    padding: 1.5rem;
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
}

/*---------------------------------------------
  Gallery Count
---------------------------------------------*/
.gallery-count {
    text-align: center;
    margin-bottom: 1.5rem;
}

/*---------------------------------------------
  Instagram Feed Grid
---------------------------------------------*/
.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.instagram-feed-item {
    overflow: hidden;
}

@media (max-width: 640px) {
    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*---------------------------------------------
  Tabs Section
---------------------------------------------*/
.tabs-wrapper {
    display: flex;
    gap: 3rem;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 180px;
}

.tab-btn {
    padding: 12px 20px;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    border-left: 2px solid var(--color-border);
    color: var(--color-muted-foreground);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
}

.tab-btn:hover,
.tab-btn.active {
    border-left-color: var(--color-gold);
    color: var(--color-gold);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

@media (max-width: 768px) {
    .tabs-wrapper {
        flex-direction: column;
    }

    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        min-width: auto;
    }

    .tab-btn {
        border-left: none;
        border-bottom: 2px solid var(--color-border);
        white-space: nowrap;
    }

    .tab-btn:hover,
    .tab-btn.active {
        border-left: none;
        border-bottom-color: var(--color-gold);
    }
}

/* ============================================
   RESPONSIVE FIXES - About & Book Pages
   ============================================ */

/* About page grid fix */
@media (max-width: 768px) {
    .about-grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info-grid[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    
    .location-grid[style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .step-indicators {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .step-line {
        display: none;
    }
    
    .step-label {
        font-size: 9px;
    }
}

@media (max-width: 640px) {
    .philosophy-values[style*="minmax(250px"] {
        grid-template-columns: 1fr !important;
    }
    
    .hours-grid[style*="minmax(250px"] {
        grid-template-columns: 1fr !important;
    }
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ken-burns-1, .ken-burns-2, .ken-burns-3,
    .hero-slide-image, .marquee-track,
    .loading-glow-ring, .loading-pulse-ring,
    .loading-bar-fill, .scrollPulse {
        animation: none !important;
    }
    
    .satya-reveal, .satya-reveal-left, .satya-reveal-right, .satya-reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Lightbox responsive */
@media (max-width: 640px) {
    .lightbox-prev, .lightbox-next {
        width: 36px;
        height: 36px;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
    .lightbox-image-wrapper {
        padding: 0 2.5rem;
    }
}

/* WhatsApp button mobile positioning */
@media (max-width: 640px) {
    .satya-whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }
}

/* Booking steps responsive */
@media (max-width: 640px) {
    .step-indicators {
        gap: 0.25rem;
    }
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .step-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
}

/* About hero responsive */
@media (max-width: 640px) {
    .about-hero[style*="55vh"] {
        height: 60vh !important;
        min-height: 300px !important;
    }
}
