/* ============================================
   MOBIYUM-S TEMPLATE
   © CG Yazılım - Tüm Hakları Saklıdır
   CSS + JS Karma Korumalı
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Dancing+Script:wght@400;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-card: #111111;
    --white: #f5f0e8;
    --neon-gold: #FFD700;
    --neon-glow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 40px #D4AF37, 0 0 80px #B8860B;
    --neon-glow-soft: 0 0 5px #FFD700, 0 0 10px #D4AF37;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    line-height: 1.8;
    overflow-x: hidden;
}

/* ============================================
   GOLD NEON TEXT EFFECT - BAŞLIKLAR
   ============================================ */
.gold-neon-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 30%, #D4AF37 50%, #B8860B 70%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 5px rgba(255, 215, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
    display: inline-block;
}

.gold-neon-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 30%, #D4AF37 50%, #B8860B 70%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    opacity: 0.6;
    z-index: -1;
}

.gold-neon-title-small {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    text-shadow: var(--neon-glow-soft);
}

/* El yazısı normal metin */
.handwritten {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
    box-shadow: 0 2px 30px rgba(212, 175, 55, 0.1);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: var(--neon-glow-soft);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: var(--neon-glow);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transition: width 0.4s ease;
    box-shadow: var(--neon-glow-soft);
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: var(--neon-glow-soft);
}

.nav-links a:hover::before {
    width: 100%;
}

/* ============================================
   HERO SLIDER - ÇOK FARKLI
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--black);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.2);
    transition: transform 8s ease;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.slide-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.5s;
    background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 30%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.8s;
    letter-spacing: 2px;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .btn-gold {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 1.1s;
}

.slide.active .slide-content .btn-gold {
    opacity: 1;
    transform: translateY(0);
}

/* Particle canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Slider navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.slider-dot.active {
    background: var(--gold);
    box-shadow: var(--neon-glow-soft);
    transform: scale(1.3);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    pointer-events: all;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--neon-glow);
    transform: scale(1.1);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    display: inline-block;
    padding: 15px 50px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
}

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

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

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 50px;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 30%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-title p {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: var(--white);
    opacity: 0.8;
}

.gold-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
    box-shadow: var(--neon-glow-soft);
}

/* ============================================
   GALLERY - BÜYÜLEYİCİ
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
    animation: shine 1.5s ease infinite;
}

@keyframes shine {
    0% { background-position: 200% 200%; }
    100% { background-position: -200% -200%; }
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2), var(--neon-glow-soft);
    border-color: rgba(212, 175, 55, 0.4);
}

.gallery-img-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(30%) brightness(0.8);
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1);
}

/* Hover overlay - Üstten yarı transparan */
.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    overflow: hidden;
}

.gallery-item:hover .gallery-hover-overlay {
    height: 100%;
}

.gallery-hover-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow-soft);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-hover-title {
    opacity: 1;
    transform: translateY(0);
}

.gallery-hover-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease 0.3s;
}

.gallery-item:hover .gallery-hover-rating {
    opacity: 1;
    transform: translateY(0);
}

.gallery-hover-rating .stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    text-shadow: var(--neon-glow-soft);
}

.gallery-hover-rating .score {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
}

.gallery-info {
    padding: 25px;
    text-align: center;
}

.gallery-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-info h3 {
    text-shadow: var(--neon-glow-soft);
}

.gallery-info p {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.7;
}

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

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--gold);
    box-shadow: var(--neon-glow);
    border-radius: 4px;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.lightbox-info {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.lightbox-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--gold);
    text-shadow: var(--neon-glow-soft);
    margin-bottom: 10px;
}

.lightbox-info p {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: var(--white);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: var(--gold);
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    text-shadow: var(--neon-glow);
    transform: rotate(90deg) scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 10;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--neon-glow);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   CARDS / PRODUCTS
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--gold-light), transparent, var(--gold));
    background-size: 400% 400%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.card:hover .card-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-body p {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 15px;
}

.card-price {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-light);
    text-shadow: var(--neon-glow-soft);
}

/* ============================================
   ABOUT / FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px var(--gold));
}

.feature-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.feature-item p {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cinzel', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 2px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    transition: all 0.4s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.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: -12px;
    left: 15px;
    font-size: 14px;
    color: var(--gold);
    background: var(--black);
    padding: 0 8px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--black) 0%, #050505 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 50px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 20px var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: var(--neon-glow-soft);
}

.footer-col p,
.footer-col a {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
    opacity: 1;
    padding-left: 10px;
    text-shadow: var(--neon-glow-soft);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--gold);
    opacity: 0.6;
    letter-spacing: 2px;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--gold);
    text-shadow: var(--neon-glow-soft);
    margin-bottom: 15px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PARALLAX SECTION
   ============================================ */
.parallax-section {
    position: relative;
    height: 500px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

.parallax-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: linear-gradient(180deg, #FFF8DC 0%, #FFD700 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    position: relative;
}

.team-img-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    position: relative;
    transition: all 0.5s ease;
}

.team-card:hover .team-img-wrap {
    box-shadow: var(--neon-glow);
    transform: scale(1.05);
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(50%);
}

.team-card:hover .team-img-wrap img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.team-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.team-card p {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.7;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: var(--neon-glow);
    display: block;
}

.stat-label {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: var(--white);
    opacity: 0.8;
    margin-top: 10px;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
    box-shadow: var(--neon-glow-soft);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--black);
    box-shadow: var(--neon-glow-soft);
    transition: all 0.4s ease;
}

.timeline-item:hover::before {
    transform: scale(1.5);
    box-shadow: var(--neon-glow);
}

.timeline-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline-item p {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.8;
}

/* ============================================
   SERVICES LIST
   ============================================ */
.service-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.service-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(20px);
    box-shadow: -10px 10px 30px rgba(212, 175, 55, 0.1);
}

.service-number {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    transition: all 0.4s ease;
    min-width: 60px;
    text-align: center;
}

.service-item:hover .service-number {
    opacity: 1;
    text-shadow: var(--neon-glow);
}

.service-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 8px;
}

.service-content p {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.7;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    overflow: hidden;
    background: var(--black-card);
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question .icon {
    font-size: 24px;
    transition: transform 0.4s ease;
    color: var(--gold);
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .slide-content h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .slide-content p {
        font-size: 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .parallax-content h2 {
        font-size: 32px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    text-shadow: var(--neon-glow);
    letter-spacing: 8px;
    animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin-top: 30px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: loaderSlide 1.5s ease infinite;
}

@keyframes loaderSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}
