:root {
    --bg-color: #111111;
    --text-primary: #f5e9c9;
    --text-secondary: #d4b97c;
    --accent-gold: #d4a843;
    --accent-gold-hover: #f0c760;
    --accent-gold-bright: #f5d060;
    --line-color: rgba(212, 168, 67, 0.65);
    --line-color-strong: rgba(212, 168, 67, 0.9);

    --font-serif-classic: 'Cinzel', serif;
    --font-serif-italic: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    background-attachment: fixed;
}

/* Real texture pattern overlay */
.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    background-image: url('src/assets/images/bg-texture.jpg');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.12;
    mix-blend-mode: screen;
}

/* Ensure all content sits above the texture overlay */
.page-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.font-serif-classic {
    font-family: var(--font-serif-classic);
    font-weight: 400;
}

.font-serif-italic {
    font-family: var(--font-serif-italic);
    font-style: italic;
}

.font-sans {
    font-family: var(--font-sans);
    font-weight: 300;
}

.left-align {
    text-align: left;
}

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

/* Spacing Utilities */
.mt-sm {
    margin-top: 1rem;
}

.mt-md {
    margin-top: 2rem;
}

.mt-lg {
    margin-top: 4rem;
}

.mb-sm {
    margin-bottom: 1rem;
}

.mb-md {
    margin-bottom: 2rem;
}

.pb-xl {
    padding-bottom: 6rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
    overflow: hidden;
}

.hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.75) contrast(1.05);
    opacity: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        /* Solid black on far left for text legibility */
        linear-gradient(to right, #000 0%, #000 18%, rgba(0, 0, 0, 0.75) 38%, rgba(0, 0, 0, 0.15) 60%, transparent 80%),
        /* Gentle fade from right edge */
        linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.4) 12%, transparent 35%),
        /* Fade from top */
        linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.2) 10%, transparent 30%),
        /* Fade from bottom */
        linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.35) 15%, transparent 40%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.15);
}

.hero-title {
    font-size: 4rem;
    color: var(--accent-gold-bright);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 40px rgba(212, 168, 67, 0.3);
}

.hero-role {
    font-size: 0.9rem;
    color: var(--accent-gold);
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

/* Divider */
.divider {
    width: 100%;
    max-width: 1000px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line-color-strong) 30%, var(--accent-gold) 50%, var(--line-color-strong) 70%, transparent);
    margin: 3.5rem auto;
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.25);
}

/* Base button styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.btn-outline {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-bright);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: rgba(212, 168, 67, 0.12);
    border-color: var(--accent-gold-bright);
    color: var(--accent-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.2);
}

.btn-outline-small {
    border: 1px solid var(--line-color);
    color: var(--accent-gold);
    padding: 0.6rem 2.5rem;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    background: rgba(17, 17, 17, 0.5);
}

.btn-outline-small:hover {
    border-color: var(--accent-gold-bright);
    color: var(--accent-gold-bright);
    background: rgba(212, 168, 67, 0.07);
    box-shadow: 0 0 10px rgba(212, 168, 67, 0.15);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

/* Section Headings with lines */
.heading-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.heading-with-lines .line {
    height: 1px;
    width: 50px;
    background: linear-gradient(to right, transparent, var(--line-color-strong));
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.2);
}

.heading-with-lines .line:last-child {
    background: linear-gradient(to left, transparent, var(--line-color-strong));
}

.section-heading {
    font-size: 1.3rem;
    color: var(--accent-gold-bright);
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title {
    font-size: 1.6rem;
    color: var(--accent-gold-bright);
    font-style: italic;
    font-family: var(--font-serif-italic);
    text-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}

/* Border container (like in the distinct voice and groups) */
.border-container {
    border-top: 1px solid var(--line-color-strong);
    border-bottom: 1px solid var(--line-color-strong);
    padding: 1.5rem 0;
    box-shadow: 0 -1px 6px rgba(212, 168, 67, 0.08), 0 1px 6px rgba(212, 168, 67, 0.08);
}

/* Split Layout for Distinct Voice */
.split-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 4rem;
    border: 1px solid var(--line-color-strong);
    background: rgba(212, 168, 67, 0.02);
    box-shadow: inset 0 0 30px rgba(212, 168, 67, 0.03);
}

.text-content p {
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.85;
}

.image-content .voice-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    border: 1px solid var(--line-color-strong);
    padding: 5px;
    margin-left: auto;
    filter: sepia(0.1) grayscale(70%);
    transition: filter 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.1);
}

.image-content .voice-img:hover {
    filter: grayscale(0%) sepia(0.1);
    box-shadow: 0 0 25px rgba(212, 168, 67, 0.25);
}

/* Video Section */
.video-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid var(--line-color-strong);
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.12);
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7) sepia(0.1);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.video-wrapper:hover .video-thumb {
    filter: brightness(0.9);
    transform: scale(1.02);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.play-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold-bright);
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 35px rgba(212, 168, 67, 0.5);
}

.play-icon {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    min-height: 180px;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    background: rgba(212, 168, 67, 0.02);
    box-shadow: inset 0 0 30px rgba(212, 168, 67, 0.03);
}

.testimonial-slider::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1.2rem;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: var(--font-serif-italic);
    line-height: 1;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    opacity: 0.9;
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--line-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    border-color: var(--accent-gold-bright);
    background: rgba(212, 168, 67, 0.3);
}

.testimonial-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold-bright);
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.4);
}

/* Booking text */
.booking-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========== ANIMATIONS ========== */

/* Ken Burns slow zoom on hero image */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-img {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Staggered hero text entrance */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-anim {
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-anim[data-delay="0"] {
    animation-delay: 0.3s;
}

.hero-anim[data-delay="1"] {
    animation-delay: 0.6s;
}

.hero-anim[data-delay="2"] {
    animation-delay: 0.9s;
}

.hero-anim[data-delay="3"] {
    animation-delay: 1.2s;
}

/* Gold shimmer effect */
@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-title {
    background: linear-gradient(90deg,
            var(--accent-gold-bright) 0%,
            #fff8dc 25%,
            var(--accent-gold-bright) 50%,
            #fff8dc 75%,
            var(--accent-gold-bright) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, goldShimmer 6s ease-in-out infinite;
    animation-delay: 0.6s, 2s;
}

/* Pulsing glow on CTA button */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(212, 168, 67, 0.1), 0 0 15px rgba(212, 168, 67, 0.05);
    }

    50% {
        box-shadow: 0 0 15px rgba(212, 168, 67, 0.3), 0 0 40px rgba(212, 168, 67, 0.1);
    }
}

.btn-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.btn-glow:hover {
    animation: none;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.4), 0 0 50px rgba(212, 168, 67, 0.15);
}

/* Scroll-reveal fade-in (enhanced) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Slide from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Scale up */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-scale.appear {
    opacity: 1;
    transform: scale(1);
}

/* Animated divider — expands from center */
@keyframes dividerExpand {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

.divider {
    animation: none;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.divider.appear {
    animation: dividerExpand 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Heading line slide-in */
@keyframes lineSlideLeft {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 50px;
        opacity: 1;
    }
}

.heading-with-lines .line {
    width: 0;
    opacity: 0;
}

.appear .heading-with-lines .line,
.fade-in.appear .heading-with-lines .line {
    animation: lineSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

/* Section title glow on appear */
.section-title {
    transition: text-shadow 1s ease;
}

.appear .section-title {
    text-shadow: 0 0 25px rgba(212, 168, 67, 0.35);
}

/* Floating golden particles */
@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(-80px) translateX(20px);
    }
}

/* Image hover parallax tilt */
.voice-img {
    transition: filter 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.voice-img:hover {
    transform: scale(1.03) rotate(-0.5deg);
}

/* Smooth button press */
.btn-outline-small {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-small::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-outline-small:hover::after {
    width: 300px;
    height: 300px;
}

.btn-outline-small:hover {
    transform: translateY(-2px);
}

/* Video wrapper hover grow */
.video-wrapper {
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.video-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 0 35px rgba(212, 168, 67, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

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

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

    .hero-bg {
        width: 100%;
        opacity: 0.5;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline-small {
        width: 80%;
        margin: 0.5rem 0;
    }

    .image-content .voice-img {
        margin: 0 auto;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    position: relative;
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid var(--line-color-strong);
    box-shadow:
        0 0 40px rgba(212, 168, 67, 0.12),
        0 25px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 168, 67, 0.1);
    padding: 3rem;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

/* Custom scrollbar for modal */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--line-color);
    border-radius: 3px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: 1px solid var(--line-color);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    border-color: var(--accent-gold-bright);
    color: var(--accent-gold-bright);
    background: rgba(212, 168, 67, 0.1);
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.2);
}

/* Modal Header */
.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-color);
}

.modal-header-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.modal-header-lines .line {
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--line-color-strong));
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.2);
}

.modal-header-lines .line:last-child {
    background: linear-gradient(to left, transparent, var(--line-color-strong));
}

.modal-title {
    font-size: 1.4rem;
    color: var(--accent-gold-bright);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}

/* Modal Body */
.modal-body {
    color: var(--text-primary);
    line-height: 1.9;
    font-size: 0.95rem;
    opacity: 0.9;
}

.modal-body p {
    margin-bottom: 1.3rem;
    text-align: justify;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* Modal Mobile */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-body {
        font-size: 0.9rem;
    }
}

/* Awards List Styles */
.awards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards-list li {
    display: flex;
    flex-direction: column;
    padding: 1rem 0 1rem 1.5rem;
    border-left: 2px solid var(--line-color);
    position: relative;
    transition: border-color 0.3s ease;
}

.awards-list li:hover {
    border-left-color: var(--accent-gold-bright);
}

.awards-list li::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 1.35rem;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
}

.awards-list li+li {
    margin-top: 0.25rem;
}

.award-name {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.5;
}

.award-org {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
    opacity: 0.8;
    font-style: italic;
}

/* Awards Subsection */
.awards-subsection {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-color);
}

.awards-subtitle {
    font-size: 1.1rem;
    color: var(--accent-gold-bright);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(212, 168, 67, 0.15);
}

/* Gallery Modal Container */
.gallery-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid var(--line-color-strong);
    box-shadow:
        0 0 40px rgba(212, 168, 67, 0.12),
        0 25px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 168, 67, 0.1);
    padding: 1.5rem;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .gallery-modal-container {
    transform: translateY(0) scale(1);
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    overflow: hidden;

}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
    min-width: 100%;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: #000;
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--line-color);
    color: var(--accent-gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    border-radius: 50%;
}

.gallery-arrow:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--accent-gold-bright);
    color: var(--accent-gold-bright);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.25);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
}

.gallery-counter {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.gallery-dots {
    display: flex;
    gap: 0.6rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--line-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    border-color: var(--accent-gold-bright);
    background: rgba(212, 168, 67, 0.3);
}

.gallery-dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold-bright);
    box-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
}

/* Gallery Mobile */
@media (max-width: 768px) {
    .gallery-modal-container {
        width: 95%;
        padding: 1rem;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
    }

    .gallery-arrow svg {
        width: 20px;
        height: 20px;
    }

    .gallery-prev {
        left: 0.5rem;
    }

    .gallery-next {
        right: 0.5rem;
    }
}

/* ========== CONTACT FORM ========== */
.contact-modal-container {
    max-width: 700px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(212, 185, 124, 0.35);
}

.form-input:focus {
    border-color: var(--accent-gold-bright);
    background: rgba(212, 168, 67, 0.05);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.1), inset 0 0 10px rgba(212, 168, 67, 0.03);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4a843' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: #1a1a1a;
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
    line-height: 1.6;
}

/* Submit Button */
.btn-submit {
    display: inline-block;
    width: 100%;
    padding: 0.9rem 2rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8912e 100%);
    color: #000;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover {
    background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(0);
}

/* Success State */
.form-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    margin-bottom: 1.5rem;
    animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 1.4rem;
    color: var(--accent-gold-bright);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.success-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.85;
}

/* Contact form mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-modal-container {
        max-width: 95%;
    }
}