/* ===================================
   APEX ISAAC MEDIA - PREMIUM STYLES
   Luxury Videography & Photography
   =================================== */

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.loading-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.loading-logo {
    max-width: 250px;
    width: 80%;
    height: auto;
    margin: 0 auto 30px;
    animation: logoFadeIn 0.5s ease-in-out;
}

.loading-hero-message {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-ivory);
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: heroMessageFadeIn 0.8s ease-in-out 0.2s backwards;
}

.loading-hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-gray);
    margin-bottom: 35px;
    letter-spacing: 1px;
    animation: heroMessageFadeIn 0.8s ease-in-out 0.4s backwards;
}

.loading-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroMessageFadeIn 0.8s ease-in-out 0.6s backwards;
}

.btn-loading {
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-loading-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-loading-primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 167, 94, 0.3);
}

.btn-loading-secondary {
    background: transparent;
    color: var(--color-ivory);
    border: 2px solid var(--color-ivory);
}

.btn-loading-secondary:hover {
    background: var(--color-ivory);
    color: var(--color-black);
    transform: translateY(-2px);
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroMessageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .loading-logo {
        max-width: 180px;
        margin-bottom: 25px;
    }
    
    .loading-hero-message {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .loading-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .loading-hero-buttons {
        gap: 15px;
    }
    
    .btn-loading {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }
    
    .loading-hero-message {
        font-size: 1.5rem;
    }
    
    .loading-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .loading-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-loading {
        width: 100%;
        padding: 12px 24px;
    }
}

/* ===================================
   PREMIUM NAVIGATION BAR
   =================================== */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-nav.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-ivory);
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-gray);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-ivory);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-book-us {
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-black);
    background: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-book-us:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 167, 94, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-ivory);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .btn-book-us {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--color-gold);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .btn-book-us {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        width: 90%;
    }
}

/* === ROOT VARIABLES === */
:root {
    --color-black: #0F0F0F;
    --color-ivory: #F5F2ED;
    --color-gold: #C6A75E;
    --color-gray: #A3A3A3;
    --color-white: #FFFFFF;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-smooth: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Mobile viewport height fix */
    --vh: 1vh;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-black);
    color: var(--color-ivory);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* GPU acceleration for smoother scrolling */
    transform: translateZ(0);
    backface-visibility: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Reduce animations on low-end devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

img {
    max-width: 100%;
    display: block;
    /* Lazy loading optimization */
    content-visibility: auto;
}
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* === NAVIGATION === */
/* Old navbar hidden - navigation moved to hero section */
.navbar {
    display: none !important;
}
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* === HERO SECTION === */
/* === HERO SECTION - CINEMATIC UPGRADE === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: white;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-ivory);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 35px;
    color: var(--color-gray);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #C5A46D;
    color: #0F0F0F;
    border: none;
}

.btn-primary:hover {
    background: #D4B57E;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #C5A46D;
    color: #C5A46D;
    background: transparent;
}

.btn-secondary:hover {
    background: #C5A46D;
    color: #0F0F0F;
    transform: translateY(-3px);
}

.btn-service {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 12px 30px;
    font-size: 0.9rem;
}

.btn-service:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

/* === ANIMATIONS === */
.fade-in {
    animation: fadeIn 0.4s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.4s ease-out 0.1s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.4s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    display: none;
}

/* === SECTION STYLING === */
section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* Section animation on scroll - Faster response */
.section-animate {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.section-animate.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-ivory);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-gray);
    letter-spacing: 0.5px;
}

/* === PORTFOLIO SECTION === */
.portfolio {
    background: var(--color-black);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(198, 167, 94, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===================================
   PORTFOLIO MAIN FILTERS (Photos/Videos)
   =================================== */

.portfolio-main-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Desktop: Keep filters centered */
@media (min-width: 769px) {
    .portfolio-main-filters {
        justify-content: center !important;
        flex-wrap: wrap !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        overflow-x: visible !important;
    }
    
    .portfolio-category-scroll-wrapper {
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
    }
    
    .portfolio-category-filters {
        justify-content: center !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
    }
}

.main-filter-btn {
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: transparent;
    color: var(--color-gray);
    border: 2px solid rgba(198, 167, 94, 0.3);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

/* Button text switching - default: show full text, hide short text */
.main-filter-btn .btn-short-text {
    display: none;
}

.main-filter-btn .btn-full-text {
    display: inline;
}

.main-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.main-filter-btn:hover::before {
    opacity: 0.15;
}

.main-filter-btn.active {
    color: var(--color-black);
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* ===================================
   CATEGORY FILTERS (Horizontal Scroll)
   =================================== */

.portfolio-category-scroll-wrapper {
    margin-bottom: 20px;
    position: relative;
    /* Remove any borders or lines */
    border: none;
    border-bottom: none;
    /* Center the content */
    display: flex;
    justify-content: center;
}

.portfolio-category-scroll-wrapper::after {
    /* Remove any pseudo-element lines */
    display: none;
}

.portfolio-category-filters {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    /* Allow content to determine width on desktop */
    width: auto;
    max-width: 100%;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.portfolio-category-filters::-webkit-scrollbar {
    display: none;
}

/* Remove old scrollbar styles - no longer needed */
.portfolio-category-filters::-webkit-scrollbar-track {
    display: none;
}

.portfolio-category-filters::-webkit-scrollbar-thumb {
    display: none;
}

.portfolio-category-filters::-webkit-scrollbar-thumb:hover {
    display: none;
}

.category-filter-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(198, 167, 94, 0.05);
    color: var(--color-gray);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    /* Remove any underlines or bottom borders */
    text-decoration: none;
    border-bottom: 1px solid rgba(198, 167, 94, 0.2); /* Same as border */
    position: relative;
}

/* Remove any pseudo-element underlines */
.category-filter-btn::after,
.category-filter-btn::before {
    display: none;
}

.category-filter-btn:hover {
    background: rgba(198, 167, 94, 0.15);
    border-color: var(--color-gold);
    color: var(--color-ivory);
    transform: translateY(-2px);
}

.category-filter-btn.active {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    font-weight: 600;
}

/* ===================================
   PORTFOLIO GRID CONTAINER
   =================================== */

.portfolio-grid-container {
    min-height: 400px;
    position: relative;
}

/* ===================================
   SCROLL PROGRESS INDICATOR
   =================================== */

.scroll-progress-container {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(198, 167, 94, 0.15);
    border-radius: 10px;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show progress bar only in horizontal scroll mode */
.portfolio-grid-container:has(.portfolio-scroll.horizontal-scroll) .scroll-progress-container {
    opacity: 1;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-gold) 0%, #d4b76a 100%);
    border-radius: 10px;
    transition: width 0.1s ease-out;
    position: relative;
    
    transform-origin: center;
    margin: 0 auto;
}

/* Animated glow effect */
.scroll-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

/* Responsive scroll progress */
@media (max-width: 768px) {
    .scroll-progress-container {
        width: 150px;
        bottom: -15px;
    }
}

@media (max-width: 480px) {
    .scroll-progress-container {
        width: 120px;
        height: 2px;
        bottom: -12px;
    }
}

/* Scroll Arrows - Hidden */
.portfolio-scroll-arrow {
    display: none !important;
}

/* Horizontal Scroll Layout (for "All" filter) */
.portfolio-scroll.horizontal-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 10% 30px 10%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    cursor: grab;
    user-select: none;
    perspective: 1200px;
    perspective-origin: center center;
    transform-style: preserve-3d;
    position: relative;
    /* Disable scroll snap for infinite scroll */
    scroll-snap-type: none;
    /* Hardware acceleration */
    will-change: scroll-position;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Smooth momentum scrolling */
    scroll-padding: 0;
    overscroll-behavior-x: none;
}

/* Add depth gradient overlay */
.portfolio-scroll.horizontal-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 15, 15, 0.6) 0%,
        transparent 15%,
        transparent 85%,
        rgba(15, 15, 15, 0.6) 100%
    );
    pointer-events: none;
    z-index: 10;
    will-change: auto;
}

/* Responsive gap for horizontal scroll */
@media (max-width: 1024px) {
    .portfolio-scroll.horizontal-scroll {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-scroll.horizontal-scroll {
        gap: 16px;
        padding: 15px 0 25px 0;
    }
}

@media (max-width: 480px) {
    .portfolio-scroll.horizontal-scroll {
        gap: 12px;
        padding: 10px 0 20px 0;
    }
}

/* Desktop drag-to-scroll cursor */
@media (min-width: 769px) {
    .portfolio-scroll.horizontal-scroll {
        cursor: grab;
    }
    
    .portfolio-scroll.horizontal-scroll.grabbing,
    .portfolio-scroll.horizontal-scroll:active {
        cursor: grabbing;
    }
}

/* Hide scrollbar for Chrome/Safari/Opera */
.portfolio-scroll.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.portfolio-scroll.horizontal-scroll .portfolio-item {
    flex-shrink: 0;
    width: 350px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease,
                box-shadow 0.3s ease,
                z-index 0s;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    
    /* Disable scroll snap for infinite scroll */
    scroll-snap-align: none;
    /* Hardware acceleration for smooth animations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize images for smooth rendering */
.portfolio-scroll.horizontal-scroll .portfolio-item img {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Responsive horizontal scroll items */
@media (max-width: 1440px) {
    .portfolio-scroll.horizontal-scroll {
        padding: 20px 8% 30px 8%;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        width: 320px;
        height: 380px;
    }
}

@media (max-width: 1200px) {
    .portfolio-scroll.horizontal-scroll {
        padding: 20px 6% 30px 6%;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        width: 300px;
        height: 360px;
    }
}

@media (max-width: 1024px) {
    .portfolio-scroll.horizontal-scroll {
        padding: 20px 5% 30px 5%;
        perspective: 1000px;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        width: 280px;
        height: 340px;
        transition: transform 0.25s ease-out, 
                    opacity 0.25s ease-out,
                    box-shadow 0.25s ease-out;
    }
}

@media (max-width: 768px) {
    .portfolio-scroll.horizontal-scroll {
        padding: 15px 3% 25px 3%;
        gap: 16px;
        perspective: 800px;
        /* Optimize for mobile scrolling */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: none;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        width: 260px;
        height: 320px;
        transition: transform 0.2s ease-out, 
                    opacity 0.2s ease-out,
                    box-shadow 0.2s ease-out;
        /* Force hardware acceleration */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 640px) {
    .portfolio-scroll.horizontal-scroll {
        padding: 15px 2% 25px 2%;
        gap: 14px;
        perspective: 800px;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        width: 220px;
        height: 280px;
        transition: transform 0.2s ease-out, 
                    opacity 0.2s ease-out;
    }
}

@media (max-width: 480px) {
    .portfolio-scroll.horizontal-scroll {
        padding: 10px 5% 20px 5%;
        gap: 12px;
        perspective: 600px;
        /* Smoother scrolling on small devices */
        scroll-snap-type: none;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        width: 190px;
        height: 240px;
        transition: transform 0.15s ease-out, 
                    opacity 0.15s ease-out;
        
    }
}

/* Extra small screens - ensure 3 images visible with center focus */
@media (max-width: 380px) {
    .portfolio-scroll.horizontal-scroll {
        padding: 10px 3% 20px 3%;
        gap: 10px;
        perspective: 600px;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        width: 160px;
        height: 200px;
        transition: transform 0.15s ease-out, 
                    opacity 0.15s ease-out;
        
    }
}

/* Category label for horizontal scroll */
.portfolio-scroll.horizontal-scroll .category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, transparent 100%);
    color: var(--color-ivory);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    pointer-events: none; /* Allow clicks to pass through */
}

/* Show on hover (desktop) */
.portfolio-scroll.horizontal-scroll .portfolio-item:hover .category-label {
    opacity: 1;
    transform: translateY(0);
}

/* Show on touch/hold (mobile) - activated via JavaScript */
.portfolio-scroll.horizontal-scroll .portfolio-item.touch-active .category-label {
    opacity: 1;
    transform: translateY(0);
}

/* Show briefly on tap (mobile) - activated via JavaScript */
.portfolio-scroll.horizontal-scroll .portfolio-item.show-label .category-label {
    opacity: 1;
    transform: translateY(0);
}

/* Add click indicator for horizontal scroll items */
.portfolio-scroll.horizontal-scroll .portfolio-item::after {
    content: 'Click to view all';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    background: rgba(198, 167, 94, 0.95);
    color: var(--color-black);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
    white-space: nowrap;
}

.portfolio-scroll.horizontal-scroll .portfolio-item:hover::after {
    opacity: 1;
}

/* Premium hover overlay for horizontal scroll */
.portfolio-scroll.horizontal-scroll .portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(198, 167, 94, 0.2) 0%, 
        rgba(15, 15, 15, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.portfolio-scroll.horizontal-scroll .portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-scroll.horizontal-scroll .portfolio-item:hover {
    z-index: 200 !important;
    opacity: 1 !important;
    
}

.portfolio-scroll.horizontal-scroll .portfolio-item:hover img {
    transform: scale(1.05);
}

/* Grid Layout (for specific category filter) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* === HORIZONTAL SCROLL PORTFOLIO === */
.portfolio-horizontal {
    margin-top: 60px;
}

.portfolio-row {
    margin-bottom: 60px;
    position: relative;
}

.portfolio-row-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.portfolio-row-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--color-gold);
}

.portfolio-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    user-select: none;
}

.portfolio-scroll:active {
    cursor: grabbing;
}

/* Visual hint for draggable scroll */
.portfolio-scroll::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(198, 167, 94, 0.3) 50%, 
        transparent 100%
    );
    pointer-events: none;
}

/* ===================================
   PORTFOLIO GALLERY - CINEMATIC LAYOUT
   =================================== */

/* Grid layout for filtered view */
.portfolio-scroll.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    overflow-x: visible;
    overflow-y: visible;
    cursor: default;
    align-items: start;
    grid-auto-flow: dense; /* Fill gaps automatically */
    grid-auto-rows: auto; /* Allow flexible row heights */
}

/* Ensure minimum 2 columns on larger screens */
@media (min-width: 769px) {
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(auto-fill, minmax(max(280px, calc((100% - 60px) / 3)), 1fr));
        grid-auto-flow: dense !important;
        grid-auto-rows: auto;
    }
}

/* 2 columns for tablets and small screens */
@media (max-width: 768px) and (min-width: 481px) {
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 2 columns even on smallest screens */
@media (max-width: 480px) {
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.portfolio-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

/* === PORTFOLIO SCROLL ARROWS === */
.portfolio-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #1a1a1a;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 450px;
    height: 300px;
    
}

/* Grid layout item - Natural aspect ratio */
.portfolio-scroll.grid-layout .portfolio-item {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    
    border-radius: 12px;
    overflow: hidden;
    transition: none;
    margin-bottom: 0;
    grid-column: span 1; /* Ensure items don't span multiple columns */
    align-self: start; /* Align items to the top of their grid cell */
}
    background: #1a1a1a;
    opacity: 1;
    transform: none;
}

/* Video aspect ratio ordering on mobile - Portrait videos first, then landscape */
@media (max-width: 768px) {
    /* Enable CSS Grid ordering for videos */
    .portfolio-scroll.grid-layout {
        display: grid;
        grid-auto-flow: dense; /* Allow items to fill gaps */
    }
    
    /* Portrait videos appear first (order: -1 set via JS) */
    .portfolio-scroll.grid-layout .portfolio-item.video-portrait {
        /* Order set dynamically via JavaScript */
    }
    
    /* Landscape videos appear after portrait (order: 1 set via JS) */
    .portfolio-scroll.grid-layout .portfolio-item.video-landscape {
        /* Order set dynamically via JavaScript */
    }
}

/* Fade-in animation class - DISABLED */
.portfolio-scroll.grid-layout .portfolio-item.fade-in {
    opacity: 1;
    transform: none;
}

/* Hover effects - REMOVED for cleaner grid view */

.portfolio-scroll.grid-layout .portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Premium hover overlay - DISABLED for grid */
.portfolio-scroll.grid-layout .portfolio-item::before {
    display: none;
}

/* Category label overlay - DISABLED for grid */
.portfolio-scroll.grid-layout .portfolio-item .category-label {
    display: none;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

/* Premium hover overlay for scrolling items */
.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(198, 167, 94, 0.2) 0%, 
        rgba(15, 15, 15, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    /* Optimize rendering on mobile */
    image-rendering: auto;
    /* GPU acceleration */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Preload and optimize image loading */
.portfolio-item img {
    /* Lazy loading hint */
    content-visibility: auto;
    contain-intrinsic-size: 350px 400px;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    .portfolio-item img,
    .portfolio-item video {
        /* Reduce quality slightly on mobile for faster loading */
        image-rendering: auto;
    }
}

/* Video play button overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.portfolio-item:hover .video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-item.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
    display: none;
}

/* Video controls - show when playing */
.portfolio-item video {
    cursor: pointer;
}

/* Hide controls by default */
.portfolio-item video::-webkit-media-controls-panel {
    display: none;
}

/* Show controls when video is playing */
.portfolio-item.playing video::-webkit-media-controls-panel {
    display: flex;
}

.portfolio-item.playing video::-webkit-media-controls {
    opacity: 1;
}

/* Ensure video controls are visible and functional */
.portfolio-item.playing video {
    pointer-events: auto;
}

.portfolio-item.playing video::-webkit-media-controls-enclosure {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

/* Pause overlay when video is playing */
.portfolio-item.playing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 5;
    pointer-events: none;
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.08);
}

/* Category label for scrolling items */
.portfolio-item .category-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--color-ivory);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.portfolio-item:hover .category-label {
    opacity: 1;
    transform: translateY(0);
}

/* === VIDEO MODAL === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 4px;
    overflow: visible;
    position: relative;
}

.modal-video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: #000;
    object-fit: contain;
    display: block;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 3rem;
    color: var(--color-ivory);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3;
}

.modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

/* Ensure video is visible on mobile */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 80vh;
        width: 100%;
    }
    
    .modal-video-container {
        width: 100%;
        aspect-ratio: 16/9;
    }
    
    .modal-video {
        width: 100%;
        height: 100%;
    }
    
    .modal-close {
        top: -40px;
        font-size: 2.5rem;
    }
}

/* ===================================
   LIGHTBOX MODAL FOR IMAGES
   =================================== */

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 8px;
    
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(198, 167, 94, 0.2);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-ivory);
    font-size: 24px;
    line-height: 1;
}

.lightbox-close:hover {
    background: var(--color-gold);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--color-ivory);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* === ABOUT SECTION === */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, var(--color-black) 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 167, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #F5F2ED !important; /* Ivory - explicit color */
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Two Column Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT: Visual */
.about-visual {
    /* Removed initial hidden state for visibility */
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(198, 167, 94, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: filter 0.6s ease;
}

/* Blur effect when in viewport */
.about-image-wrapper.in-view {
    filter: blur(0px);
}

/* Initial blur state */
.about-image-wrapper:not(.in-view) {
    filter: blur(8px);
}

.about-image,
.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image,
.about-image-wrapper:hover .about-video {
    transform: scale(1.05);
}

.about-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(15, 15, 15, 0.2) 50%,
        rgba(15, 15, 15, 0.4) 100%
    );
    pointer-events: none;
}

/* RIGHT: Story + Trust */
.about-story {
    /* Removed initial hidden state for visibility */
}

.about-story-content {
    padding: 0 20px;
}

.about-gold-accent {
    width: 60px;
    height: 3px;
    background: #C6A75E !important; /* Gold - explicit color */
    margin-bottom: 30px;
}

.about-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #A3A3A3 !important; /* Gray - explicit color */
    margin-bottom: 25px;
    font-family: var(--font-sans);
}

/* Trust Statistics */
.about-trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 30px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(198, 167, 94, 0.2);
    border-bottom: 1px solid rgba(198, 167, 94, 0.2);
}

.trust-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #C6A75E !important; /* Gold - explicit color */
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    margin-left: 5px;
    color: inherit;
}

.stat-label {
    font-size: 0.85rem;
    color: #F5F2ED !important; /* Ivory - explicit color */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Trust Statement */
.about-trust-statement {
    text-align: center;
    font-size: 0.95rem;
    color: #C6A75E !important; /* Gold - explicit color */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 30px 0;
    font-family: var(--font-serif);
}

/* CTA Button */
.about-cta {
    margin-top: 30px;
    display: inline-block;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-two-column {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-header {
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }
    
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }
    
    /* Mobile: Video as background with text overlay */
    .about-visual {
        order: 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    
    .about-image-wrapper {
        height: 100%;
        aspect-ratio: unset;
    }
    
    .about-video {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* Stronger overlay for better text readability */
    .about-visual-overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 15, 15, 0.75) 0%,
            rgba(15, 15, 15, 0.85) 50%,
            rgba(15, 15, 15, 0.9) 100%
        );
    }
    
    /* Story content overlays video */
    .about-story {
        order: 2;
        position: relative;
        z-index: 1;
        padding: 60px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .about-story-content {
        padding: 0 5%;
        width: 100%;
    }
    
    .about-trust-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0 20px 0;
        padding: 30px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-trust-statement {
        font-size: 0.85rem;
    }
    
    /* Enhance text visibility with stronger shadows and proper colors */
    .about-story-text {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9),
                     0 4px 20px rgba(0, 0, 0, 0.7);
        color: #F5F2ED !important; /* Ivory - matches page color */
    }
    
    .about-main-title {
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9),
                     0 4px 25px rgba(0, 0, 0, 0.7);
        color: #F5F2ED !important; /* Ivory - matches page color */
    }
    
    .about-gold-accent {
        box-shadow: 0 2px 10px rgba(198, 167, 94, 0.6);
        background: #C6A75E; /* Gold - matches page accent */
    }
    
    .stat-number {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9),
                     0 4px 20px rgba(0, 0, 0, 0.6);
        color: #C6A75E !important; /* Gold - matches page accent */
    }
    
    .stat-label {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
        color: #F5F2ED !important; /* Ivory - matches page color */
    }
    
    .about-trust-statement {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
        color: #C6A75E !important; /* Gold - matches page accent */
    }
    
    .about-cta {
        text-shadow: none; /* Button doesn't need shadow */
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-story-text {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Old About Styles - Keep for backwards compatibility */
.about-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-centered .section-title {
    margin-bottom: 30px;
}

.about-content-centered .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.about-content-centered .btn {
    margin-top: 20px;
}

/* Stats Section at Bottom */
.stats-section {
    background: rgba(198, 167, 94, 0.03);
    padding: 80px 0;
    border-top: 1px solid rgba(198, 167, 94, 0.2);
    border-bottom: 1px solid rgba(198, 167, 94, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(198, 167, 94, 0.05);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Background images for each stat card */
.stat-card:nth-child(1) {
    background-image: linear-gradient(rgba(15, 15, 15, 0.75), rgba(15, 15, 15, 0.75)), url('assets/radiobtn/years.jpg');
}

.stat-card:nth-child(2) {
    background-image: linear-gradient(rgba(15, 15, 15, 0.75), rgba(15, 15, 15, 0.75)), url('assets/radiobtn/projects.jpg');
}

.stat-card:nth-child(3) {
    background-image: linear-gradient(rgba(15, 15, 15, 0.75), rgba(15, 15, 15, 0.75)), url('assets/radiobtn/clients.jpg');
}

/* Background layer for blur effect */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    z-index: 0;
}

.stat-card:nth-child(1)::after {
    background-image: url('assets/radiobtn/years.jpg');
}

.stat-card:nth-child(2)::after {
    background-image: url('assets/radiobtn/projects.jpg');
}

.stat-card:nth-child(3)::after {
    background-image: url('assets/radiobtn/clients.jpg');
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(198, 167, 94, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover::after {
    filter: blur(8px);
    transform: scale(1.1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--color-gold);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 
                 0 0 30px rgba(198, 167, 94, 0.4),
                 0 4px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-ivory);
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    font-family: var(--font-sans);
}

/* === SERVICES SECTION === */
.services {
    background: var(--color-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    grid-auto-rows: minmax(580px, auto);
    align-items: stretch;
    isolation: isolate;
}

@media (max-width: 1024px) {
    .services-grid {
        gap: 30px;
    }
}

.service-card {
    position: relative;
    padding: 60px 45px;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform-origin: center;
    min-height: 580px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    width: 100%;
    box-sizing: border-box;
    
    /* Background image setup */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background Images for Each Service */
.service-card.corporate {
    background-image: url('assets/images/corporate.jpg');
}

.service-card.wedding {
    background-image: url('assets/images/wedding.jpg');
}

.service-card.music {
    background-image: url('assets/images/music.jpg');
}

.service-card.social {
    background-image: url('assets/images/social.jpg');
}

.service-card.social-management {
    background-image: url('assets/images/social-management.jpg');
}

.service-card.ceremonies {
    background-image: url('assets/images/ceremonies.jpg');
}

/* Cinematic Dark Gradient Overlay */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.4) 0%,
        rgba(15, 15, 15, 0.7) 35%,
        rgba(15, 15, 15, 0.88) 65%,
        rgba(15, 15, 15, 0.96) 100%
    );
    z-index: 1;
    transition: all 0.4s ease;
}

/* Gold accent line at top */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, rgba(198, 167, 94, 0.5) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 3;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    
}

.service-card:hover::before {
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.3) 0%,
        rgba(15, 15, 15, 0.65) 35%,
        rgba(15, 15, 15, 0.85) 65%,
        rgba(15, 15, 15, 0.94) 100%
    );
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Card Content Container */
.card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-icon {
    font-size: 3.2rem;
    color: var(--color-gold);
    margin-bottom: 28px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
    display: inline-block;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-ivory);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 245, 220, 0.92);
    margin-bottom: 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 90%;
}

.service-details {
    margin-top: 35px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(245, 245, 220, 0.88);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-size: 0.98rem;
    line-height: 1.5;
    letter-spacing: 0.3px;
    font-weight: 300;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.6));
}
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* === BOOKING SECTION === */
.booking {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(198, 167, 94, 0.05) 100%);
    padding: 120px 0;
}

.booking .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.booking-modern-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Side Info Card */
.booking-info-card {
    background: linear-gradient(135deg, #C6A75E 0%, #B8964D 100%);
    border-radius: 12px;
    padding: 50px 40px;
    color: #0F0F0F;
    order: 2;
}
}

.info-card-content i {
    font-size: 3rem;
    margin-bottom: 25px;
    opacity: 0.85;
    color: #0F0F0F;
}

.info-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #0F0F0F;
    font-weight: 600;
    text-shadow: none;
    filter: none;
}

.info-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.85;
    color: #1a1a1a;
}

.info-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(15, 15, 15, 0.15);
    border-bottom: 1px solid rgba(15, 15, 15, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0F0F0F;
    text-shadow: none;
    filter: none;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.75;
    color: #1a1a1a;
    text-shadow: none;
    filter: none;
}

.btn-whatsapp-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0F0F0F;
    color: #C6A75E;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-whatsapp-modern:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    color: #D4B76E;
}

.btn-whatsapp-modern i {
    font-size: 1.3rem;
}

/* Modern Form */
.booking-form-modern {
    background: rgba(245, 242, 237, 0.03);
    padding: 50px;
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 12px;
    order: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

/* === FORM STYLING === */

.form-group {
    position: relative;
}

.form-group-full {
    position: relative;
    margin-bottom: 40px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-gray);
    color: var(--color-ivory);
    transition: var(--transition-smooth);
    outline: none;
}

/* Date input - make calendar icon visible */
.form-group input[type="date"] {
    color-scheme: dark;
    position: relative;
    padding-right: 40px;
}

/* Show calendar icon */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    filter: invert(1);
    background: transparent;
    color: var(--color-gold);
    font-size: 1.2rem;
    padding: 5px;
    margin-right: -10px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(0.8);
    background: rgba(198, 167, 94, 0.1);
    border-radius: 4px;
}

.form-group-full textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-gray);
    color: var(--color-ivory);
    transition: var(--transition-smooth);
    outline: none;
    resize: vertical;
    min-height: 100px;
}

.form-group-full textarea:focus {
    border-bottom-color: var(--color-gold);
}

.form-group-full textarea:focus + label,
.form-group-full textarea:not(:placeholder-shown) + label {
    opacity: 0;
    visibility: hidden;
}

.form-group-full > label[for="message"] {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: var(--color-gray);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group label,
.form-group-full > label:not(.group-label):not(.radio-option) {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: var(--color-gray);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-gold);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--color-gold);
}

/* Group Labels */
.group-label {
    display: block;
    font-size: 1rem;
    color: var(--color-ivory);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Radio Button Groups */
.radio-group {
    display: grid;
    gap: 15px;
}

.service-options {
    grid-template-columns: repeat(2, 1fr);
}

/* Currency Selector */
.currency-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(245, 242, 237, 0.05);
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 8px;
}

.currency-label {
    font-size: 0.95rem;
    color: var(--color-ivory);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.currency-dropdown {
    flex: 1;
    max-width: 200px;
    padding: 10px 15px;
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(198, 167, 94, 0.4);
    border-radius: 6px;
    color: var(--color-ivory);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.currency-dropdown:hover {
    border-color: var(--color-gold);
    background: rgba(15, 15, 15, 0.6);
}

.currency-dropdown:focus {
    border-color: var(--color-gold);
    
}

.currency-dropdown option {
    background: var(--color-black);
    color: var(--color-ivory);
    padding: 10px;
}

.budget-options {
    grid-template-columns: repeat(2, 1fr);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(245, 242, 237, 0.05);
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.radio-option:hover {
    background: rgba(198, 167, 94, 0.15);
    border-color: rgba(198, 167, 94, 0.6);
    transform: translateX(3px);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(198, 167, 94, 0.5);
    border-radius: 50%;
    position: relative;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    background: rgba(15, 15, 15, 0.3);
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--color-gold);
    background: rgba(198, 167, 94, 0.2);
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--color-gold);
    font-weight: 500;
}

/* Selected state for the entire option */
.radio-option:has(input[type="radio"]:checked) {
    background: rgba(198, 167, 94, 0.12);
    border-color: var(--color-gold);
}

.radio-label {
    font-size: 0.95rem;
    color: rgba(245, 242, 237, 0.85);
    transition: var(--transition-smooth);
}

.form-error {
    display: block;
    color: #ff8a8a;
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
    opacity: 0.9;
}

.btn-submit {
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.btn-loader {
    display: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(198, 167, 94, 0.15);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: block;
}

.form-message.error {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid #ff8a8a;
    color: #ff8a8a;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
    display: block;
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--color-black);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px;
    overflow: visible;
    padding: 0 20px;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    padding: 40px 30px;
    text-align: center;
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(198, 167, 94, 0.05);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 15px;
}

.testimonial-card.hidden-review {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.show-review {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.testimonial-card.new-review {
    background: rgba(198, 167, 94, 0.12);
    border: 2px solid var(--color-gold);
    
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin: 40px 0;
}

.btn-view-more {
    padding: 15px 40px;
    font-size: 1rem;
    background: rgba(198, 167, 94, 0.1);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-view-more:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
    
}

.btn-view-more i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-more.expanded i {
    transform: rotate(180deg);
}

.btn-view-more.hidden {
    display: none;
}

/* Mobile optimizations for testimonials */
@media (max-width: 768px) {
    /* Reorder: Show testimonials after booking form on mobile */
    .testimonials {
        display: flex;
        flex-direction: column;
        order: 10;
    }
    
    .booking {
        order: 9;
    }
    
    .testimonial-track {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card.show-review {
        animation: fadeInUpMobile 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes fadeInUpMobile {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.97);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .btn-view-more {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .view-more-container {
        margin: 30px 0;
    }
}

/* Enable flexbox on body for section reordering on mobile */
@media (max-width: 768px) {
    body {
        display: flex;
        flex-direction: column;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Prevent any horizontal overflow on main elements */
    section, .container, .hero, .services, .about, .testimonials, .vlogs-section, .booking, .footer {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .container {
        max-width: 100% !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    
    /* New section order for cinematic storytelling flow */
    .hero { order: 1; }
    .services { order: 2; }
    .portfolio { order: 3; }
    .about { order: 4; }
    .testimonials { order: 5; }
    .vlogs-section { order: 6; }
    .booking { order: 7; }
    .footer { order: 8; }
    
    /* KEEP horizontal scroll for portfolio preview - but contained */
    .portfolio-grid-container {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }
    
    .portfolio-scroll.horizontal-scroll {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: none !important; /* Disabled - manual scroll only */
        padding: 20px 5% !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        flex-shrink: 0 !important;
        width: 80vw !important;
        max-width: 350px !important;
        height: auto !important;
        scroll-snap-align: none !important; /* Disabled - manual scroll only */
    }
    
    /* Show scroll arrows on mobile for portfolio */
    .portfolio-scroll-arrow {
        display: flex !important;
        opacity: 0.9 !important;
    }
    
    .portfolio-scroll-arrow.left {
        left: 10px !important;
    }
    
    .portfolio-scroll-arrow.right {
        right: 10px !important;
    }
    
    /* Show scroll progress bar on mobile */
    .scroll-progress-container {
        display: block !important;
        opacity: 1 !important;
    }
    
    /* Force single-column grid for grid layout view */
    .portfolio-scroll.grid-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        overflow-x: hidden !important;
        width: 100% !important;
        gap: 20px !important;
    }
    
    .portfolio-scroll.grid-layout .portfolio-item {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Ensure category filters don't overflow page */
    .portfolio-category-scroll-wrapper {
        overflow-x: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .portfolio-category-filters {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        display: flex !important;
        flex-wrap: nowrap !important;
    }
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-ivory);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-ivory);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: none;
}

.testimonial-btn {
    display: none;
}

/* === LEAVE A REVIEW SECTION === */
.leave-review-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    /* Glassmorphism effect */
    background: rgba(245, 242, 237, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(198, 167, 94, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated gradient background */
.leave-review-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(198, 167, 94, 0.08) 0%,
        transparent 50%
    );
    animation: rotateGradient 10s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover effect without glow */
.leave-review-section:hover {
    border-color: rgba(198, 167, 94, 0.5);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Ensure content is above the animated background */
.leave-review-section > * {
    position: relative;
    z-index: 1;
}

.review-form-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-ivory);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.review-form-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 45px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: 0.5px;
}

.review-form {
    width: 100%;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-top: 20px;
    padding: 10px;
}

.star-rating i {
    color: rgba(198, 167, 94, 0.25);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.star-rating i:hover,
.star-rating i.active {
    color: var(--color-gold);
    transform: scale(1.15) rotate(-5deg);
}

.star-rating i:active {
    transform: scale(1.05);
}

.btn-submit-review {
    width: 100%;
    margin-top: 35px;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4b76a 100%);
    border: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-submit-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-review:hover::before {
    left: 100%;
}

.btn-submit-review:hover {
    transform: translateY(-3px);
}

.btn-submit-review:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .leave-review-section {
        max-width: 750px;
        padding: 50px 40px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .leave-review-section {
        max-width: 90%;
        padding: 40px 30px;
        border-radius: 18px;
        margin: 0 20px;
    }
    
    .review-form-title {
        margin-bottom: 10px;
    }
    
    .review-form-subtitle {
        margin-bottom: 35px;
    }
    
    .star-rating {
        gap: 12px;
        margin-top: 15px;
    }
    
    .btn-submit-review {
        padding: 16px 35px;
        font-size: 1rem;
        margin-top: 30px;
    }
}

@media (max-width: 640px) {
    .leave-review-section {
        max-width: 95%;
        padding: 35px 25px;
        border-radius: 16px;
        margin: 0 10px;
    }
    
    .review-form-subtitle {
        margin-bottom: 30px;
    }
    
    .star-rating {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .leave-review-section {
        padding: 30px 20px;
        border-radius: 14px;
        box-shadow: 
            0 6px 24px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .review-form-subtitle {
        margin-bottom: 25px;
    }
    
    .star-rating {
        gap: 8px;
        padding: 8px;
    }
    
    .btn-submit-review {
        padding: 15px 30px;
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-top: 25px;
    }
}

@media (max-width: 380px) {
    .leave-review-section {
        padding: 25px 18px;
        margin: 0 8px;
    }
    
    .star-rating {
        gap: 6px;
    }
}

/* ===================================
   VLOGS & BEHIND THE SCENES SECTION
   =================================== */
.vlogs-section {
    padding: 100px 0;
    background: var(--color-black);
    position: relative;
}

.vlogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vlog-card {
    position: relative;
    background: rgba(198, 167, 94, 0.03);
    border: 1px solid rgba(198, 167, 94, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.vlog-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.vlog-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 12px 40px rgba(198, 167, 94, 0.25);
}

.vlog-embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    background: #000;
    overflow: hidden;
}

.vlog-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vlog-card-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.vlog-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.vlog-platform-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.vlog-platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vlog-platform-icon.tiktok {
    color: #00f2ea;
}

.vlog-platform-name {
    font-size: 0.85rem;
    color: var(--color-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vlog-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-ivory);
    margin-bottom: 12px;
    line-height: 1.4;
}

.vlog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vlog-link:hover {
    color: var(--color-ivory);
    gap: 12px;
}

.vlog-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.vlog-link:hover i {
    transform: translateX(3px);
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .vlogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .vlogs-section {
        padding: 60px 0;
    }
    
    .vlogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .vlog-embed-container {
        padding-bottom: 177.78%; /* Maintain 9:16 on mobile */
    }
    
    .vlog-card-footer {
        padding: 16px;
    }
    
    .vlog-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vlogs-section {
        padding: 50px 0;
    }
    
    .vlogs-grid {
        gap: 25px;
        margin-top: 35px;
    }
    
    .vlog-card-footer {
        padding: 14px;
    }
}

/* === FOOTER === */
.footer {
    background: #0a0a0a;
    padding: 80px 0 30px;
}

/* Footer Top Row: Brand + Get In Touch + Services */
.footer-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.15);
}

/* Footer Middle Row - Removed (Services moved to top row) */

/* Footer Quick Links Row */
.footer-quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.15);
}

.footer-quick-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-quick-links a:hover {
    color: var(--color-gold);
}

.footer-quick-links .link-separator {
    color: rgba(198, 167, 94, 0.4);
    font-size: 0.8rem;
}

/* Footer Socials Section */
.footer-socials-section {
    margin-bottom: 50px;
}

.socials-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--color-gold);
    text-align: center;
    letter-spacing: 1.5px;
    font-family: var(--font-serif);
}

.footer-socials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.social-column {
    text-align: center;
}

.social-icon-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.social-icon-header i {
    font-size: 2rem;
    color: var(--color-gold);
}

.social-icon-header h5 {
    font-size: 1.2rem;
    color: var(--color-ivory);
    letter-spacing: 1px;
    margin: 0;
}

.social-handle {
    display: block;
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-handle:hover {
    color: #d4b76a;
    transform: scale(1.05);
}

.social-preview {
    margin-top: 20px;
}

.social-preview-item {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(198, 167, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-overlay i {
    font-size: 3rem;
    color: var(--color-ivory);
}

.social-preview-item:hover {
    transform: translateY(-8px);
}

.social-preview-item:hover img {
    transform: scale(1.15);
}

.social-preview-item:hover .social-overlay {
    opacity: 1;
}

/* Brand Section */
.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-gold);
    font-weight: 600;
}

.footer-brand p {
    color: var(--color-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Contact Section */
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-ivory);
    letter-spacing: 1px;
}

/* Services and Links Sections */
.footer-links h4,
.footer-services h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-ivory);
    letter-spacing: 1px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: var(--color-gray);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(198, 167, 94, 0.2);
    font-size: 0.9rem;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.copyright-icon {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 600;
}

.copyright-year {
    color: var(--color-ivory);
    font-weight: 500;
}

.copyright-brand {
    color: var(--color-gold);
    font-weight: 600;
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.copyright-separator {
    color: rgba(198, 167, 94, 0.4);
    font-weight: 300;
}

.copyright-text {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-link {
    color: var(--color-gray);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: var(--color-gold);
}

.legal-link:hover::after {
    width: 100%;
}

.legal-separator {
    color: rgba(198, 167, 94, 0.3);
    font-size: 0.7rem;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-socials-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .footer-socials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-services {
        text-align: center;
    }
    
    .footer-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-quick-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-copyright {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* === RESPONSIVE === */

@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

/* === RESPONSIVE BREAKPOINTS === */

@media (max-width: 1440px) {
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 4rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .about-grid,
    .booking-modern-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .portfolio-item {
        width: 380px;
        height: 250px;
    }
    
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .portfolio-scroll.grid-layout .portfolio-item {
        margin-bottom: 0;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 20px;
    }

    /* Hero Section - Mobile */
    .hero {
        padding: 0 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
        height: 100svh;
        min-height: 600px;
    }
    
    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.7)
        );
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 13px 28px;
    }
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
        margin-bottom: 80px;
    }
    
    /* Hero Navigation - Mobile */
    .hero-nav {
        margin-bottom: 25px;
    }
    
    .hero-nav-menu {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .hero-nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .hero-nav-link {
        font-size: 0.75rem;
        padding: 8px 14px;
        letter-spacing: 1px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        gap: 12px;
        margin: 0 auto;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .portfolio-main-filters {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0;
        margin: 0 -20px 15px -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .portfolio-main-filters::-webkit-scrollbar {
        display: none;
    }
    
    .main-filter-btn {
        padding: clamp(8px, 2vw, 10px) clamp(14px, 4vw, 18px);
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        min-width: auto;
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .portfolio-category-scroll-wrapper {
        margin: 0 0 20px 0;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .portfolio-category-filters {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 5% 20px 5%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: auto;
        min-width: 100%;
    }
    
    .portfolio-category-filters::-webkit-scrollbar {
        display: none;
    }
    
    .category-filter-btn {
        padding: clamp(6px, 1.5vw, 8px) clamp(10px, 3vw, 14px);
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        white-space: nowrap;
        flex-shrink: 0;
        flex: 0 0 auto;
    }
    
    .portfolio-item {
        width: 320px;
        height: 200px;
    }
    
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .portfolio-scroll.grid-layout .portfolio-item {
        margin-bottom: 0;
        border-radius: 8px;
    }
    
    .portfolio-item .category-label {
        font-size: 1rem;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .portfolio-row-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 40px 30px;
        min-height: 520px;
    }
    
    .service-icon {
        font-size: 2.8rem;
        margin-bottom: 22px;
    }
    
    .service-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .service-features li {
        padding: 10px 0;
        padding-left: 28px;
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 12px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .testimonial-card {
        padding: 35px 18px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .booking-form-modern {
        padding: 35px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .currency-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 15px;
    }
    
    .currency-dropdown {
        max-width: 100%;
        width: 100%;
    }
    
    .service-options,
    .budget-options {
        grid-template-columns: 1fr;
    }
    
    .booking-info-card {
        position: relative;
        top: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 30px;
        margin-top: 30px;
    }
    
    .footer-copyright {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        font-size: 0.85rem;
    }
    
    .footer-legal {
        gap: 12px;
        font-size: 0.8rem;
    }
    
    .legal-separator {
        display: none;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .portfolio-main-filters {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .main-filter-btn {
        width: 100%;
        padding: 14px 30px;
    }
    
    .category-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .portfolio-item {
        width: 280px;
        height: 180px;
    }
    
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .portfolio-scroll.grid-layout .portfolio-item {
        margin-bottom: 0;
        border-radius: 8px;
    }
    
    .portfolio-item .category-label {
        font-size: 0.95rem;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    
    .portfolio-row-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .portfolio-title {
        font-size: 1.3rem;
    }
    
    .portfolio-category {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-btn {
        width: 45px;
        height: 45px;
    }
    
    .booking-form-modern {
        padding: 30px 20px;
    }
    
    .radio-option {
        padding: 14px 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 6vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .portfolio-item {
        width: 100%;
        max-width: 280px;
        height: 180px;
    }
    
    .portfolio-scroll.grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .portfolio-scroll.grid-layout .portfolio-item {
        margin-bottom: 0;
        border-radius: 6px;
    }
    
    .portfolio-scroll {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .booking-form-modern {
        padding: 25px 15px;
    }
    
    .info-card-content h3 {
        font-size: 1.5rem;
    }
    
    .info-card-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
}

/* === LANDSCAPE ORIENTATION === */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* === ULTRA-WIDE SCREENS === */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 4.5rem;
    }
}

/* === TOUCH DEVICE OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .main-filter-btn,
    .category-filter-btn,
    .service-card,
    .portfolio-item {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active,
    .main-filter-btn:active,
    .category-filter-btn:active {
        transform: scale(0.98);
    }
    
    /* Optimize 3D effects for touch devices */
    .portfolio-scroll.horizontal-scroll {
        perspective: 1000px;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        transition: transform 0.2s ease-out, 
                    opacity 0.2s ease-out,
                    box-shadow 0.2s ease-out;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .portfolio-scroll.horizontal-scroll .portfolio-item {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .portfolio-scroll.horizontal-scroll {
        perspective: none;
        transform-style: flat;
    }
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .hero-video-container,
    .scroll-indicator,
    .filter-tabs,
    .booking-form-modern,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}


/* === SCROLL PROGRESS INDICATOR === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-ivory) 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* === CURSOR TRAIL EFFECT === */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
    transition: transform 0.15s ease;
}

/* === MAGNETIC BUTTONS === */
.btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    animation: magneticPulse 0.6s ease-in-out;
}

@keyframes magneticPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === SECTION DIVIDERS === */
/* Removed section dividers for cleaner look */

/* === ENHANCED HOVER STATES === */
a, button {
    position: relative;
}

a::after, button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

a:hover::after, button:hover::after {
    width: 100%;
}

/* === TESTIMONIAL CARD ANIMATION === */
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: scale(1.02);
}

/* === BOOKING FORM ANIMATION === */
.booking-form-modern {
    transition: all 0.5s ease;
}

.booking-info-card {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    transition: all 0.3s ease;
}

.form-group:focus-within {
    transform: translateX(5px);
}


/* ===================================
   COMPREHENSIVE RESPONSIVE OPTIMIZATION
   =================================== */

/* Smooth scrolling for all devices */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Touch-friendly buttons and links */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .filter-btn, .main-filter-btn, .category-filter-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }
    
    .portfolio-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(198, 167, 94, 0.2);
    }
}

/* Optimize for tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Optimize for mobile landscape */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Small tablets and large phones (640px - 768px) */
@media (min-width: 640px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-modern-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra responsive improvements for all mobile devices */
@media (max-width: 768px) {
    /* Improve touch targets */
    button, a, input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Optimize hero section */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Optimize navigation - already handled in main mobile media query above */
    /* Navigation drawer styles are defined in the primary @media (max-width: 768px) block */
    
    /* Optimize sections */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Optimize stats */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    /* Optimize services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Optimize portfolio filters */
    .portfolio-main-filters {
        flex-direction: row;
        gap: 10px;
    }
    
    .main-filter-btn {
        flex: 1;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Optimize booking form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    /* Optimize footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

/* Very small phones (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .main-filter-btn {
        padding: clamp(7px, 1.8vw, 9px) clamp(12px, 3.5vw, 14px);
        font-size: clamp(0.7rem, 2.2vw, 0.8rem);
    }
    
    .category-filter-btn {
        padding: clamp(5px, 1.3vw, 7px) clamp(9px, 2.5vw, 12px);
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Extra small devices (< 375px) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .main-filter-btn {
        padding: clamp(6px, 1.5vw, 8px) clamp(8px, 2.5vw, 10px);
        font-size: clamp(0.65rem, 2vw, 0.75rem);
    }
    
    .category-filter-btn {
        padding: clamp(4px, 1.2vw, 6px) clamp(7px, 2vw, 10px);
        font-size: clamp(0.6rem, 1.7vw, 0.7rem);
    }
}

/* Performance optimizations for all devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High DPI screens optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img, video {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Already dark by default */
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .hero-video-container,
    .scroll-indicator,
    .modal,
    .footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .portfolio-item,
    .service-card,
    .testimonial-card {
        break-inside: avoid;
    }
}


/* Stats Section Responsive */
@media (max-width: 1024px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .stat-card {
        padding: 35px 20px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}


/* ===================================
   MOBILE ORIENTATION-SPECIFIC STYLES
   =================================== */

/* Portrait mode on mobile - Show SMM abbreviation */
@media (max-width: 768px) and (orientation: portrait) {
    .main-filter-btn[data-type="socialmedia"] .btn-full-text {
        display: none;
    }
    
    .main-filter-btn[data-type="socialmedia"] .btn-short-text {
        display: inline;
    }
}

/* Landscape mode on mobile - Show full text */
@media (max-width: 768px) and (orientation: landscape) {
    .main-filter-btn[data-type="socialmedia"] .btn-full-text {
        display: inline;
    }
    
    .main-filter-btn[data-type="socialmedia"] .btn-short-text {
        display: none;
    }
}
