/* ==================== GLOBAL STYLES ==================== */
:root {
    --color-gold: #c9a961;
    --color-dark: #0f1419;
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-accent: #e8c547;
    --color-secondary: #34495e;
    --color-tertiary: #16a085;
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 25px 70px rgba(0, 0, 0, 0.25);
    --shadow-3d: 0 15px 35px rgba(201, 169, 97, 0.2), 0 0 0 1px rgba(201, 169, 97, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    perspective: 1000px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-white) 0%, #fafbfc 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8960f 100%);
    color: var(--color-dark);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4), 0 0 20px rgba(201, 169, 97, 0.15);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-4px) rotateX(8deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5), 
                0 0 30px rgba(201, 169, 97, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px) rotateX(4deg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    position: sticky;
    top: 0;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 20px rgba(201, 169, 97, 0.1);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
    transform-style: preserve-3d;
    perspective: 1200px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(201, 169, 97, 0.3), 0 0 15px rgba(201, 169, 97, 0.2);
    transition: var(--transition);
}

.logo-text:hover {
    text-shadow: 0 6px 20px rgba(201, 169, 97, 0.5),
                 0 0 25px rgba(201, 169, 97, 0.4),
                 0 0 40px rgba(201, 169, 97, 0.2);
    transform: translateZ(10px);
}

.logo-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-accent) 100%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.2);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-whatsapp-header {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8960f 100%);
    color: var(--color-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
}

.btn-whatsapp-header:hover {
    transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-whatsapp-mobile {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8960f 100%) !important;
    color: var(--color-dark) !important;
    text-align: center;
    margin-top: 10px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    perspective: 1200px;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
}

/* Hero image element (actual <img> used for accessibility and responsive refs) */
.hero-slide {
    position: relative;
}

.hero-slide .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: -2;
    transform-origin: center;
    backface-visibility: hidden;
}

.hero-slide::before {
    /* keep current overlay gradient but ensure it's above the image */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    z-index: 10;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6.8vw, 96px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 0.95;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201,169,97,0.06);
    transform-style: preserve-3d;
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 300;
    margin: 0 auto 36px;
    max-width: 920px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cinematic Ken Burns animation for hero images */
@keyframes kenburns {
    0% { transform: scale(1.03) translateX(0); }
    100% { transform: scale(1.12) translateX(-2%); }
}

.hero-slide .hero-bg {
    transition: transform 12s ease-in-out;
    transform-origin: center;
}

.hero-slide.active .hero-bg {
    animation: kenburns 12s ease-in-out forwards;
    will-change: transform;
}

/* Pause animation when hovered or touched */
.hero-slider:hover .hero-bg,
.hero-slider:active .hero-bg {
    animation-play-state: paused;
}

/* Make hero content more prominent and centered */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 30;
    animation: fadeInUp 0.8s ease;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Glass CTA wrapper (larger, pill style like reference) */
.hero-cta-panel {
    display: inline-flex;
    gap: 20px;
    padding: 18px 30px;
    background: linear-gradient(180deg, rgba(12,14,16,0.44), rgba(12,14,16,0.26));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 80px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 2px 30px rgba(201,169,97,0.06);
}

.hero .btn { min-width: 180px; }
.hero .btn-primary { padding: 14px 36px; border-radius: 48px; font-size: 15px; background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-accent) 100%); color: var(--color-dark); border: none; box-shadow: 0 12px 36px rgba(201,169,97,0.35); }
.hero .btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.hero .btn-secondary { background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,0.22); }
.hero .btn-secondary:hover { border-color: var(--color-gold); box-shadow: 0 10px 30px rgba(201,169,97,0.12); }

@media (max-width: 768px) {
    .hero-title { font-size: clamp(26px, 8vw, 40px); }
    .hero-subtitle { font-size: clamp(14px, 4vw, 20px); }
    .hero-cta-panel { flex-direction: column; gap: 12px; padding: 12px; }
    .hero-content { position: relative; transform: none; top: auto; left: auto; padding-top: 40px; }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--color-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 100;
}

.slider-arrow:hover {
    background: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-gold);
    width: 30px;
    border-radius: 6px;
}

/* ==================== FLOATING WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35),
                0 0 15px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
    transform-style: preserve-3d;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateZ(20px) rotateY(-15deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5),
                0 0 25px rgba(37, 211, 102, 0.3),
                inset 0 0 10px rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==================== SECTION STYLES ==================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.3), 0 0 15px rgba(201, 169, 97, 0.1);
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-accent), var(--color-gold), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
}

.section-description {
    font-size: 18px;
    color: var(--color-gold);
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(201, 169, 97, 0.2);
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #f0f4f8 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    background: var(--color-white);
    padding: 25px;
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-8px) translateZ(20px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.15),
                0 0 20px rgba(201, 169, 97, 0.1);
    border-left-color: var(--color-accent);
}

.stat:hover::before {
    right: 0;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-light);
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform-origin: center;
}

.about-image:hover img {
    transform: scale(1.05) rotateZ(2deg);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #fafbfc 100%);
}

/* Disable any blur/backdrop effects inside services and films per user request */
.services, .services * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--color-light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(201, 169, 97, 0.03) 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-12px) rotateX(8deg) rotateZ(-2deg);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.3),
                0 0 35px rgba(201, 169, 97, 0.25);
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(201, 169, 97, 0.08) 100%);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8960f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-dark);
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.3),
                0 0 15px rgba(201, 169, 97, 0.2);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateZ(-15deg) translateZ(15px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.5),
                inset 0 2px 5px rgba(255, 255, 255, 0.4),
                0 0 25px rgba(201, 169, 97, 0.3);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-description {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    font-size: 14px;
    color: var(--color-text-light);
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--color-gold);
    margin-right: 10px;
}

.services-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
}

.services-cta p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-dark);
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--color-light-gray) 100%);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    }

/* Global gallery grid to ensure consistent alignment */
.featured-photography {
    padding: 100px 0;
    background: var(--bg-cream);
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-style: italic;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: white;
    display: flex;
    align-items: stretch;
}

.featured-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.featured-item:hover img {
    transform: scale(1.04);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 60%);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
}

.featured-overlay h3 {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
    color: var(--gold-accent);
}

.featured-large {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-wide {
    grid-column: span 2;
}

/* Responsive: collapse large featured tiles on smaller screens */
@media (max-width: 1099px) {
    .featured-grid { grid-auto-rows: 220px; }
    .featured-large { grid-column: span 1; grid-row: span 1; }
    .featured-wide { grid-column: span 1; }
    .featured-item img { height: 100%; }
}

/* ==================== FILMS SECTION ==================== */
.films {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-white) 0%, #fafbfc 100%);
}

.films, .films * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--color-light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.video-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(-5deg);
    box-shadow: 0 18px 45px rgba(201, 169, 97, 0.2),
                0 0 25px rgba(201, 169, 97, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--color-light-gray) 100%);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    border: 2px solid rgba(201, 169, 97, 0.2);
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(201, 169, 97, 0.02) 100%);
}

.testimonial-card::before {
    content: '❝';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 60px;
    color: var(--color-gold);
    opacity: 0.3;
    transition: var(--transition);
    text-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateZ(1deg);
    box-shadow: 0 18px 45px rgba(201, 169, 97, 0.25),
                0 0 30px rgba(201, 169, 97, 0.2);
    border-color: var(--color-gold);
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.testimonial-card:hover::before {
    opacity: 0.5;
    text-shadow: 0 6px 18px rgba(201, 169, 97, 0.4);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3), 0 0 10px rgba(201, 169, 97, 0.2);
}

.testimonial-card:hover .testimonial-header img {
    transform: scale(1.1) rotateZ(8deg);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4), 0 0 15px rgba(201, 169, 97, 0.3);
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.stars {
    display: flex;
    gap: 5px;
    color: var(--color-gold);
}

.stars i {
    font-size: 12px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* ==================== BOOKING SECTION ==================== */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1200px;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--color-white) 0%, #fafbfc 100%);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3),
                inset 0 0 10px rgba(201, 169, 97, 0.05);
    transform: translateZ(5px);
    background: var(--color-white);
}

.form-actions {
    margin-top: 30px;
}

.form-actions .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.form-note {
    font-size: 12px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 15px;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-white) 0%, #f8fafb 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    transform-style: preserve-3d;
    padding: 15px 20px;
    border-left: 3px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    background: rgba(201, 169, 97, 0.02);
}

.contact-item:hover {
    transform: translateX(10px) translateZ(10px);
    border-left-color: var(--color-gold);
    background: rgba(201, 169, 97, 0.08);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8960f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.35),
                inset 0 2px 5px rgba(255, 255, 255, 0.2),
                0 0 15px rgba(201, 169, 97, 0.2);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotateY(-25deg);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.45),
                inset 0 2px 5px rgba(255, 255, 255, 0.3),
                0 0 25px rgba(201, 169, 97, 0.3);
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--color-text-light);
    font-size: 15px;
}

.contact-details a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #e8ecf1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 0 10px rgba(201, 169, 97, 0.1);
    transform-style: preserve-3d;
    border: 2px solid rgba(201, 169, 97, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    transform: translateY(-6px) rotateZ(15deg) scale(1.1);
    box-shadow: 0 10px 35px rgba(201, 169, 97, 0.4),
                0 0 25px rgba(201, 169, 97, 0.3);
    border-color: var(--color-gold);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1f28 100%);
    color: var(--color-white);
    padding: 60px 0 20px;
    border-top: 3px solid rgba(201, 169, 97, 0.3);
    box-shadow: inset 0 10px 30px rgba(201, 169, 97, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.footer-section p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #b0b0b0;
    font-size: 13px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        grid-auto-rows: 220px;
        gap: 18px;
        align-items: stretch;
        grid-auto-flow: dense;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.04));
        display: block;
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        background: linear-gradient(180deg, rgba(8,10,12,0.0) 0%, rgba(6,8,10,0.6) 70%);
        color: white;
        opacity: 0;
        transition: opacity 300ms ease, transform 300ms cubic-bezier(0.2,1,0.2,1);
        transform: translateY(8px);
        padding: 18px;
        text-align: center;
        border-radius: 12px;
    }

    .gallery-item:hover .gallery-overlay,
    .gallery-item:focus-within .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-overlay .overlay-title {
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0.2px;
        text-shadow: 0 6px 22px rgba(0,0,0,0.6);
    }

    .gallery-overlay .overlay-cta {
        background: linear-gradient(90deg,var(--color-gold),var(--color-accent));
        color: var(--color-dark);
        padding: 10px 18px;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        box-shadow: 0 12px 34px rgba(201,169,97,0.28);
    }

    .gallery-item:focus {
        outline: 3px solid rgba(201,169,97,0.14);
        outline-offset: 6px;
    }

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-caption {
        position: absolute;
        left: 18px;
        bottom: 18px;
        color: #fff;
        font-size: 14px;
        background: linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.18));
        padding: 8px 12px;
        border-radius: 10px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    }

    .gallery-badge {
        position: absolute;
        right: 18px;
        top: 18px;
        background: rgba(201,169,97,0.95);
        color: #0f1419;
        padding: 6px 10px;
        font-weight: 600;
        font-size: 12px;
        border-radius: 999px;
        box-shadow: 0 8px 20px rgba(201,169,97,0.12);
    }

    /* Desktop / laptop adjustments */
    @media (min-width: 1100px) and (max-width: 1599px) {
        .gallery-grid { grid-auto-rows: 280px; gap: 22px; }
        .gallery-caption { font-size: 15px; left: 20px; bottom: 20px; }
        .gallery-badge { right: 20px; top: 20px; padding: 7px 12px; }
    }

    @media (min-width: 1600px) {
        .gallery-grid { grid-auto-rows: 320px; gap: 24px; }
        .gallery-caption { font-size: 16px; left: 24px; bottom: 24px; }
        .gallery-badge { right: 24px; top: 24px; padding: 8px 14px; }
    }

    /* Tablet and mobile */
    @media (max-width: 1099px) {
        .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
        .gallery-grid { grid-auto-rows: 200px; gap: 16px; }
        .gallery-caption { font-size: 13px; left: 14px; bottom: 14px; }
        .gallery-badge { right: 14px; top: 14px; padding: 6px 10px; }
    }

    @media (max-width: 600px) {
        .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; gap: 14px; }
        .gallery-caption { font-size: 13px; left: 12px; bottom: 12px; }
        .gallery-badge { right: 12px; top: 12px; padding: 6px 10px; }
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .booking-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 26px;
    }

    .footer-section h4 {
        font-size: 16px;
    }
}
    /* Portfolio spacing and centering for different viewports */
    .portfolio {
        padding: 60px 0 80px;
        background: linear-gradient(180deg, rgba(255,255,255,0), rgba(250,248,240,0.02));
    }

    .portfolio .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 18px;
    }

    .gallery-grid {
        margin: 0 auto;
        max-width: 1200px;
        padding: 0 10px;
    }

    /* make captions more compact on mobile */
    @media (max-width: 600px) {
        .gallery-caption { font-size: 13px; padding: 6px 8px; left: 10px; bottom: 10px; }
        .gallery-badge { right: 10px; top: 10px; padding: 5px 8px; }
    }

/* ==================== UTILITY CLASSES ==================== */
.hidden {
    display: none !important;
}

/* Remove all text-shadow / glow effects to eliminate blurred appearance */

/* Target About section heading and its container to remove any remaining blur/filter */
.section-header .section-title,
.about .section-title,
.section-header,
.about,
.about * {
    text-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.section-title::before {
    box-shadow: none !important;
    background: none !important;
}

/* Strong override: disable gradient text-fill and force a solid, crisp heading
   for the About section to remove any remaining softened appearance */
.about .section-header .section-title,
.about .section-title {
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: initial !important;
    color: var(--color-dark) !important;
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
}
