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

:root {
    --gold: #D4AF37;
    --gold-light: #F4E5A3;
    --gold-dark: #B8941E;
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #1a1a1a;
    --gray-dark: #222222;
    --gray: #333333;
    --gray-light: #888888;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --font-cinzel: 'Cinzel', serif;
    --font-playfair: 'Playfair Display', serif;
    --font-poppins: 'Mulish', sans-serif;
    --font-vibes: 'Great Vibes', cursive;
    --font-grotesk: 'Space Grotesk', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    font-size: 16px;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-poppins);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-dark {
    background: var(--black-light);
}

.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    overflow: hidden;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    position: relative;
    margin-bottom: 30px;
    opacity: 0;
    animation: logoFadeIn 1s ease forwards 0.3s, logoFloat 3s ease-in-out infinite 2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    margin-left: auto;
    margin-right: auto;
}

.loader-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: brightness(0);
    animation: logoReveal 1.8s ease forwards 0.5s, logoGlowPulse 2.5s ease-in-out infinite 2.5s;
}

/* Outer golden ring */
.loader-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0);
    transform: translate(-50%, -50%) scale(0.5);
    animation: ringExpand 2s ease forwards 0.8s, ringPulse 3s ease-in-out infinite 2.5s;
    z-index: 1;
}

/* Spark sweep */
.loader-logo::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -40%;
    width: 180%;
    height: 140%;
    background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(212, 175, 55, 0.3) 44%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(212, 175, 55, 0.3) 56%,
        transparent 70%
    );
    transform: translateX(-100%);
    animation: sparkSweep 3s ease-in-out infinite 1.2s;
    z-index: 3;
    pointer-events: none;
}

/* Spark particles */
.loader-content::before,
.loader-content::after {
    content: '✦';
    position: absolute;
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.5rem;
    opacity: 0;
    animation: sparkTwinkle 2s ease-in-out infinite;
}
.loader-content::before {
    top: -25px;
    right: -35px;
    animation-delay: 1s;
}
.loader-content::after {
    bottom: 50px;
    left: -30px;
    font-size: 0.35rem;
    animation-delay: 2s;
}

@keyframes logoFadeIn {
    0% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes logoReveal {
    0% { filter: brightness(0) drop-shadow(0 0 0 transparent); }
    40% { filter: brightness(1.5) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)); }
    70% { filter: brightness(1.1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
    100% { filter: brightness(1) drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); }
}

@keyframes logoGlowPulse {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); }
    50% { filter: brightness(1.15) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes ringExpand {
    0% { transform: translate(-50%, -50%) scale(0.5); border-color: rgba(212, 175, 55, 0); }
    100% { transform: translate(-50%, -50%) scale(1); border-color: rgba(212, 175, 55, 0.3); }
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); border-color: rgba(212, 175, 55, 0.2); }
    50% { transform: translate(-50%, -50%) scale(1.05); border-color: rgba(212, 175, 55, 0.5); }
}

@keyframes sparkSweep {
    0%, 40% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes sparkTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    40% { opacity: 1; transform: scale(1.5); }
    60% { opacity: 0.8; transform: scale(1); }
}

.loader-bar {
    width: 180px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 15px;
    opacity: 0;
    animation: logoFadeIn 0.5s ease forwards 1.2s;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: loading 2.2s ease-in-out forwards 0.6s;
}

.loader-text {
    font-family: var(--font-cinzel);
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    animation: logoFadeIn 0.5s ease forwards 1.5s;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    transition: var(--transition);
}

#navbar.scrolled .nav-logo img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text {
    display: block;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.nav-logo-img {
    height: 50px;
    transition: var(--transition);
}

#navbar.scrolled .nav-logo-img {
    height: 38px;
}

.footer-logo-img {
    height: 70px;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    font-family: var(--font-cinzel);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 0;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-links a {
    font-family: var(--font-cinzel);
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

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

/* ===== HERO ===== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.hero-welcome {
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.hero-logo-center {
    margin: 0 auto 20px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroLogoFloat 4s ease-in-out infinite;
}

.hero-logo-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    animation: heroLogoGlow 3s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes heroLogoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2)); }
    50% { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)); }
}

.hero-photography-text {
    font-family: var(--font-cinzel);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 12px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-tagline-italic {
    font-family: var(--font-vibes);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 40px;
}

.hero-subtitle {
    font-family: var(--font-vibes);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    min-height: 1.8em;
}

.hero-title {
    font-family: var(--font-cinzel);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-family: var(--font-poppins);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 0.85rem;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-family: var(--font-cinzel);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-family: var(--font-vibes);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-cinzel);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.title-divider {
    display: flex;
    justify-content: center;
}

.title-divider span {
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-cinzel);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ===== FEATURED GRID ===== */
.featured-grid {
    columns: 3;
    column-gap: 4px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 4px;
    break-inside: avoid;
}

.featured-item.large {
    grid-column: span 2;
}

.featured-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-item:hover img {
    transform: scale(1.03);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-item:hover .featured-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* View overlay in center on hover (same as gallery) */
.featured-item::before {
    content: '\f030  View Image';
    font-family: 'Font Awesome 6 Free', var(--font-cinzel);
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.featured-item:hover::before {
    opacity: 1;
}

.featured-category {
    font-family: var(--font-cinzel);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.featured-overlay h3 {
    font-family: var(--font-playfair);
    font-size: 1.3rem;
    color: var(--white);
}

/* ===== STATS ===== */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-family: var(--font-cinzel);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--gold);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-cinzel);
    font-size: 2rem;
    color: var(--gold);
    display: inline;
}

.stat-label {
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 10px;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.6s ease;
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-family: var(--font-playfair);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.testimonial-author h4 {
    font-family: var(--font-cinzel);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
}

/* ===== CTA ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-family: var(--font-vibes);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.cta-title {
    font-family: var(--font-cinzel);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
#footer {
    background: var(--black-light);
    padding: 80px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-contact ul li {
    color: var(--gray-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--gold);
    width: 16px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.admin-link {
    color: var(--gray-light);
    font-size: 0.8rem;
    opacity: 0.5;
    transition: var(--transition);
}

.admin-link:hover {
    color: var(--gold);
    opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ===== PAGE HEADERS (for inner pages) ===== */
.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: transform 0.5s ease;
}

.page-header:hover .page-header-bg {
    transform: scale(1.05);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-content h1 {
    font-family: var(--font-cinzel);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header-content p {
    font-family: var(--font-vibes);
    font-size: 1.5rem;
    color: var(--gold);
}

/* ===== GALLERY PAGE ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 30px;
    font-family: var(--font-cinzel);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-grid {
    columns: 3;
    column-gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 1.2rem;
    color: var(--gold);
}
.gallery-item-overlay i::before {
    content: '\f030';
}
.gallery-item-overlay::after {
    content: 'View Image';
    display: block;
    font-family: var(--font-cinzel);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--gold);
    margin-top: 8px;
    text-transform: uppercase;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-content h2 {
    font-family: var(--font-cinzel);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-signature {
    font-family: var(--font-vibes);
    font-size: 2.5rem;
    color: var(--gold);
    margin-top: 20px;
}

/* ===== BOOKING PAGE ===== */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white);
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group select {
    background: #1a1a1a;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

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

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

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-family: var(--font-cinzel);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ===== ADMIN LOGIN ===== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-box {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 50px;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.login-box img {
    height: 60px;
    margin: 0 auto 30px;
}

.login-box h2 {
    font-family: var(--font-cinzel);
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 0;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
    background: rgba(0, 0, 0, 0.9);
}

/* ===== USA DUBAI PAGE ===== */
.destination-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.destination-card-overlay h3 {
    font-family: var(--font-cinzel);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.destination-card-overlay p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
    .featured-grid { columns: 2; column-gap: 4px; }
    .featured-item.large { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-section { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .destination-showcase { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .section {
        padding: 60px 0;
    }

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

    .section-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    /* Hero Mobile */
    #hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 0 1.2rem;
    }

    .hero-welcome {
        font-size: 0.65rem;
        letter-spacing: 5px;
    }

    .hero-logo-center {
        width: 120px;
        height: 120px;
    }

    .hero-photography-text {
        font-size: 0.7rem;
        letter-spacing: 6px;
    }

    .hero-tagline-italic {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 16px 30px;
    }

    .hero-scroll {
        bottom: 25px;
    }

    /* Navigation Mobile */
    #navbar {
        padding: 15px 0;
    }

    #navbar.scrolled {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 1.2rem;
    }

    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    /* Mobile Menu */
    .mobile-menu {
        background: rgba(5, 5, 5, 0.99);
    }

    .mobile-nav-links a {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .mobile-nav-links li {
        margin: 20px 0;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .service-card h3 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* Featured Mobile */
    .featured-grid {
        columns: 2;
        column-gap: 4px;
    }

    .featured-item.large {
        grid-column: span 1;
    }

    .featured-item {
        border-radius: 6px;
    }

    .featured-overlay {
        opacity: 1;
        padding: 20px;
    }

    .featured-category {
        font-size: 0.65rem;
    }

    .featured-overlay h3 {
        font-size: 1rem;
    }

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

    .stat-item {
        padding: 25px 10px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-suffix {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
        margin-top: 5px;
    }

    /* Testimonials Mobile */
    .testimonials-slider {
        min-height: 200px;
    }

    .testimonial-card {
        padding: 20px 10px;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-author h4 {
        font-size: 0.9rem;
    }

    /* CTA Mobile */
    .cta-subtitle {
        font-size: 1.4rem;
    }

    .cta-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .cta-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Buttons Mobile */
    .btn {
        padding: 14px 30px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .btn-lg {
        padding: 16px 35px;
        font-size: 0.8rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-logo-img {
        height: 55px;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Page Headers Mobile */
    .page-header {
        height: 40vh;
        min-height: 300px;
    }

    .page-header-content h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .page-header-content p {
        font-size: 1.2rem;
    }

    /* Gallery Mobile */
    .gallery-filters {
        gap: 8px;
        margin-bottom: 30px;
        padding: 0 0.5rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .gallery-grid {
        columns: 2;
        column-gap: 8px;
    }

    .gallery-item {
        margin-bottom: 8px;
        border-radius: 6px;
    }

    .gallery-item-overlay {
        opacity: 0;
    }

    /* About Mobile */
    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image::before {
        top: 10px;
        left: 10px;
    }

    .about-content h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .about-signature {
        font-size: 2rem;
    }

    /* Booking Mobile */
    .booking-form-container {
        padding: 30px 20px;
        border: none;
        background: rgba(26, 26, 26, 0.8);
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-group label {
        font-size: 0.7rem;
    }

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

    .contact-info-item {
        margin-bottom: 25px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    /* Destination Mobile */
    .destination-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-card {
        aspect-ratio: 16/10;
        border-radius: 8px;
    }

    .destination-card-overlay {
        padding: 20px;
    }

    .destination-card-overlay h3 {
        font-size: 1.2rem;
    }

    .destination-card-overlay p {
        font-size: 0.8rem;
    }

    /* Lightbox Mobile */
    .lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }

    /* Back to Top Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    /* Marquee Mobile */
    .marquee-section {
        padding: 20px 0;
    }

    .marquee-track span {
        font-size: 1.8rem;
        letter-spacing: 4px;
        padding: 0 30px;
    }

    /* Login Mobile */
    .login-box {
        padding: 40px 25px;
    }

    /* Disable heavy animations on mobile for performance */
    .cursor-glow { display: none !important; }
    .particles-container { display: none !important; }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 380px) {
    .container { padding: 0 0.8rem; }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .gallery-grid {
        columns: 2;
        column-gap: 6px;
    }

    .gallery-item {
        margin-bottom: 6px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.6rem;
    }

    .mobile-nav-links a {
        font-size: 1.2rem;
    }
}

/* ===== TOUCH DEVICE HOVER FIX ===== */
@media (hover: none) {
    .featured-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-item-overlay {
        display: none;
    }

    .service-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* ===== SAFE AREA (Notch phones) ===== */
@supports (padding-top: env(safe-area-inset-top)) {
    #navbar {
        padding-top: calc(15px + env(safe-area-inset-top));
    }

    .mobile-menu {
        padding-top: env(safe-area-inset-top);
    }

    .back-to-top {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    #hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-scroll {
        display: none;
    }

    .page-header {
        height: 60vh;
        min-height: 250px;
    }
}

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

/* ===== LOAD MORE BUTTON ===== */
.btn-load-more {
    display: inline-block;
    padding: 14px 45px;
    font-family: var(--font-cinzel);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.btn-load-more:hover::before {
    width: 400px;
    height: 400px;
}

.btn-load-more span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-load-more:hover span {
    color: var(--black);
}

.btn-load-more:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-load-more.loading span {
    opacity: 0;
}

.btn-load-more.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite;
    z-index: 2;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== GALLERY CTA SECTION ===== */
.gallery-cta-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.gallery-cta-card {
    background: linear-gradient(160deg, rgba(30, 30, 30, 0.9) 0%, rgba(15, 15, 15, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.gallery-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-cta-title {
    font-family: var(--font-playfair);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.gallery-cta-text {
    font-family: var(--font-poppins);
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-cta-text:last-of-type {
    margin-bottom: 40px;
}

.btn-wedding-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 45px;
    font-family: var(--font-cinzel);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-wedding-cta i {
    transition: transform 0.3s ease;
}

.btn-wedding-cta:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-wedding-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .gallery-cta-card {
        padding: 40px 25px;
    }
}

/* ===== CINEMATICS SECTION ===== */
.cinematics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.cinematic-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.cinematic-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.cinematic-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.cinematic-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.6);
}

.cinematic-card:hover .cinematic-thumbnail img {
    transform: scale(1.05);
    filter: brightness(1);
}

.cinematic-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.cinematic-card:hover .cinematic-play {
    background: var(--gold);
    color: var(--black);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.cinematic-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    font-family: var(--font-grotesk);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.cinematic-info {
    padding: 22px 20px;
}

.cinematic-title {
    font-family: var(--font-cinzel);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
}

.cinematic-desc {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.cinematic-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cinematic-meta span {
    font-family: var(--font-grotesk);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cinematic-meta span i {
    font-size: 0.7rem;
    color: rgba(212, 175, 55, 0.6);
}

/* ===== EXPLORE FILMS BUTTON ===== */
.btn-explore-films {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    font-family: var(--font-cinzel);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-explore-films::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.btn-explore-films:hover::before {
    width: 400px;
    height: 400px;
}

.btn-explore-films i,
.btn-explore-films span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease, transform 0.3s ease;
}

.btn-explore-films:hover {
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.btn-explore-films:hover i,
.btn-explore-films:hover span {
    color: var(--black);
}

.btn-explore-films:hover .fa-arrow-right {
    transform: translateX(4px);
}

/* ===== CINEMATICS RESPONSIVE ===== */
@media (max-width: 768px) {
    .cinematics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cinematic-card {
        border-radius: 8px;
    }

    .cinematic-title {
        font-size: 0.9rem;
    }

    .cinematic-desc {
        font-size: 0.8rem;
    }

    .cinematic-play {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .btn-explore-films {
        padding: 12px 25px;
        font-size: 0.65rem;
        gap: 8px;
    }
}

/* ===== WORLDS / SERVICES IMAGE CARDS ===== */
.worlds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.world-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    display: block;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.world-card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.world-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.65);
}

.world-card:hover .world-card-img img {
    transform: scale(1.05);
    filter: brightness(1);
}

.world-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.world-card-content {
    position: absolute;
    bottom: 20px;
    left: 15px;
    z-index: 2;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 15px 20px;
}

.world-card-content h3 {
    font-family: var(--font-playfair);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.world-card-link {
    font-family: var(--font-cinzel);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.world-card:hover .world-card-link {
    gap: 10px;
}

.world-card-link i {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
}

.world-card:hover .world-card-link i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .worlds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .world-card {
        aspect-ratio: 3/4;
        border-radius: 8px;
    }
    .world-card-content {
        bottom: 10px;
        left: 8px;
        padding: 8px 12px;
    }
    .world-card-content h3 {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    .world-card-link {
        font-size: 0.45rem;
    }
}

/* ===== ADMIN MODE - DELETE BUTTONS ON GALLERY ===== */
.gallery-item .admin-delete-btn,
.featured-item .admin-delete-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(220, 53, 69, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 5;
    transition: all 0.3s;
}

.gallery-item .admin-delete-btn:hover,
.featured-item .admin-delete-btn:hover {
    background: #dc3545;
    transform: scale(1.15);
}

body.admin-mode .gallery-item .admin-delete-btn,
body.admin-mode .featured-item .admin-delete-btn {
    display: flex;
}

.admin-mode-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    padding: 10px 20px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 900;
    display: none;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.admin-mode-toggle.visible {
    display: flex;
}

.admin-mode-toggle:hover {
    background: #dc3545;
}

.admin-mode-toggle.active {
    background: #27ae60;
}


/* Coming Soon Card */
.coming-soon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}
.coming-soon-card i {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.5);
    margin-bottom: 15px;
}
.coming-soon-card p {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
}


/* About Image Wrapper with Name Overlay */
.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-image-wrapper img {
    width: 100%;
    display: block;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: filter 0.5s ease;
}
.about-image-wrapper:hover img {
    filter: grayscale(1);
}
.about-name-overlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 15px 25px;
    border-radius: 4px;
}
.about-name-overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #D4AF37;
    margin: 0 0 4px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-name-overlay span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #D4AF37;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}


/* Page Transitions - removed fade effects to prevent blank screen flash */


/* Mobile performance */
@media (max-width: 768px) {
    .particles-container {
        display: none;
    }
}


/* Cinematic cards as links */
a.cinematic-card {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* Fix image layout shift during lazy loading */
.gallery-item {
    background: #1a1a1a;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.cinematic-thumbnail {
    background: #1a1a1a;
}
.featured-item {
    background: #1a1a1a;
}
.featured-item img {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.85);
}
.featured-item:hover img {
    filter: brightness(1);
}
.world-card {
    background: #1a1a1a;
}


/* Ultra-smooth scrolling for all devices */
* {
    -webkit-tap-highlight-color: transparent;
}
img {
    content-visibility: auto;
}


/* Footer Services - Two Column Layout */
.footer-services h4 {
    font-family: var(--font-cinzel);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    text-align: center;
}
.footer-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}
.footer-services-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-services-grid ul li {
    margin-bottom: 12px;
}
.footer-services-grid ul li a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-services-grid ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

@media (max-width: 768px) {
    .footer-services h4 {
        text-align: center;
    }
    .footer-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 15px;
    }
    .footer-services-grid ul li a {
        font-size: 0.85rem;
    }
}


/* Hide hero slideshow and world cards initially to prevent flash of default images */
.hero-slideshow {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-slideshow.loaded {
    opacity: 1;
}
.worlds-grid {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.worlds-grid.loaded {
    opacity: 1;
}




/* Page-to-page navigation mode: only logo + circle, no spark/bar/text */
#preloader.nav-mode .loader-logo::after {
    display: none;
}
#preloader.nav-mode .loader-bar {
    display: none;
}
#preloader.nav-mode .loader-text {
    display: none;
}
#preloader.nav-mode .loader-content::before,
#preloader.nav-mode .loader-content::after {
    display: none;
}
#preloader.nav-mode .loader-logo {
    animation: logoFadeIn 0.3s ease forwards;
}
#preloader.nav-mode .loader-logo img {
    animation: none;
    filter: brightness(1);
}
#preloader.nav-mode .loader-logo::before {
    animation: ringExpand 0.4s ease forwards;
}
