/* ========================================
   FlashUP360 - Premium Photo Booth Website
   Modern, Elegant, Mobile-Responsive Design
   ======================================== */

/* === Root Variables === */
:root {
    /* Luxury Gold Theme */
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --primary-light: #f0e5c7;
    --secondary-color: #000000;
    --accent-color: #ffffff;
    
    /* Futuristic Neon Accents */
    --neon-cyan: #00fff2;
    --neon-green: #00ff88;
    --neon-pink: #ff0080;
    --neon-purple: #a855f7;
    --neon-blue: #00d4ff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f0e5c7 100%);
    --gradient-neon: linear-gradient(135deg, #00fff2 0%, #a855f7 50%, #ff0080 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --text-glow: #00fff2;
    
    /* Backgrounds */
    --bg-light: #f8f8f8;
    --bg-dark: #0a0e27;
    --bg-surface: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    /* Borders */
    --border-color: #e0e0e0;
    --border-glow: rgba(0, 255, 242, 0.3);
    
    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --glow-sm: 0 0 10px rgba(0, 255, 242, 0.5);
    --glow-md: 0 0 20px rgba(0, 255, 242, 0.6);
    --glow-lg: 0 0 40px rgba(0, 255, 242, 0.8);
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.6);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* cursor: none; */ /* Custom cursor disabled - using normal cursor */
}

body.dark-mode {
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
    opacity: 0.5;
}

.cursor.hover {
    transform: scale(1.5);
    background: rgba(0, 255, 242, 0.2);
}

/* Particle Trail */
.cursor-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: particleFade 0.6s ease-out forwards;
}

@keyframes particleFade {
    to {
        opacity: 0;
        transform: scale(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

ul {
    list-style: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    margin: 1rem 0 2rem 0;
}

.title-underline.center {
    margin: 1rem auto 2rem;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg), var(--glow-sm);
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 1px solid var(--border-glow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.btn-book-nav {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-book-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 3px;
}

/* === Sticky Book Now Button === */
.sticky-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.sticky-book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-gold);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

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

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--secondary-color);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: zoomSlide 10s ease-in-out infinite;
}

@keyframes zoomSlide {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-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.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: var(--primary-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* === Animations === */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Stats Section === */
.stats-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* === Introduction Section === */
.intro-section {
    padding: 6rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-paragraph {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
}

/* === Carousel Section === */
.carousel-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.event-carousel {
    position: relative;
    margin-top: 3rem;
}

.carousel-track-container {
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.event-card {
    min-width: 350px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.event-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.event-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.event-card:hover .event-overlay {
    transform: translateY(0);
}

.event-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* === Features Section === */
.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-slow);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--neon-cyan), transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-sm);
    border-color: var(--neon-cyan);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1920') center/cover;
    padding: 10rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
}

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

.page-title {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    color: var(--primary-color);
}

.page-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    color: var(--primary-light);
}

/* === Footer === */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-text {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #999;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* === Chat Widget === */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    display: none;
    flex-direction: column;
    max-height: 500px;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    padding: 1.25rem;
    border-radius: 15px 15px 0 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 350px;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.875rem 1.125rem;
    border-radius: 15px;
    max-width: 80%;
}

.chat-message.bot {
    background: var(--bg-light);
    color: var(--text-dark);
}

.chat-message.user {
    background: var(--primary-color);
    color: var(--secondary-color);
    margin-left: auto;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    outline: none;
}

.chat-input button {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    background: var(--primary-dark);
}

.chat-toggle {
    position: fixed;
    bottom: 140px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 997;
    transition: var(--transition);
}

.chat-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* === Packages Page === */
.packages-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-slow);
    position: relative;
    border: 2px solid var(--glass-border);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

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

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.package-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(2deg);
    box-shadow: var(--shadow-xl), var(--glow-gold);
    border-color: var(--primary-color);
}

.package-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3), var(--glow-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.package-card.diamond-package {
    background: var(--gradient-glass);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-md);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-badge.featured-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.package-badge.diamond-badge {
    background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
}

.package-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.package-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.package-icon.platinum {
    background: linear-gradient(135deg, #e5e4e2, #bcc6cc);
}

.package-icon.diamond {
    background: linear-gradient(135deg, #b9f2ff, #00d4ff, #b9f2ff);
}

.package-name {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: top;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.package-duration {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--primary-color);
    margin-top: 4px;
}

.addons-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.addon-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.addon-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.addon-card h4 {
    margin-bottom: 0.5rem;
}

.addon-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.addon-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === FAQ Section === */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* === Gallery Page === */
.gallery-filters-section {
    padding: 2rem 0;
    background: white;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: white;
    margin-bottom: 1rem;
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .view-btn {
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
}

/* === Lightbox === */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-dark);
}

/* === Social Feed === */
.social-feed-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.social-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-tab {
    padding: 0.875rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-tab.active,
.social-tab:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.social-post {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.social-post:hover {
    transform: scale(1.05);
}

.social-post img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.social-post:hover .social-overlay {
    opacity: 1;
}

.social-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* === Booking Page === */
.booking-section {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    background: var(--border-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step.active .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-navigation {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.package-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-option {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.package-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
}

.package-option.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 10px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.package-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.package-header .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.duration {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.addons-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-item {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.addon-item:hover {
    border-color: var(--primary-color);
}

.addon-item input[type="checkbox"] {
    display: none;
}

.addon-item input[type="checkbox"]:checked + label {
    color: var(--primary-color);
}

.addon-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.addon-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.addon-info i {
    font-size: 2rem;
    color: var(--primary-color);
}

.addon-info h4 {
    margin: 0 0 0.25rem;
}

.addon-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.summary-content {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 2px solid var(--border-color);
    border-bottom: none;
    padding-top: 1rem;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.security-badges {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.security-badges i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.security-badges p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.booking-review {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.review-section h3 i {
    color: var(--primary-color);
}

.review-content {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.price-breakdown {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.price-row.total {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option label {
    display: block;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
}

.payment-option h4 {
    margin-bottom: 0.5rem;
}

.payment-option p {
    color: var(--text-light);
    margin: 0;
}

.recommended-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.terms-checkbox {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.terms-checkbox label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.terms-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* === About Page === */
.story-section {
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-paragraph {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.mission-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.member-photo:hover .member-social {
    opacity: 1;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.member-social a:hover {
    transform: scale(1.1);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.stats-highlight-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
}

.stats-highlight-section .section-title {
    color: white;
}

.stats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-highlight {
    text-align: center;
    color: white;
}

.stat-highlight i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-highlight .stat-number {
    color: var(--primary-color);
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.stat-highlight p {
    color: #ccc;
    font-size: 1.1rem;
}

.timeline-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-item.left .timeline-content::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-item.right .timeline-content::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -15px;
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-section {
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-item h3 {
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === Testimonials Page === */
.overall-rating-section {
    padding: 4rem 0;
    background: white;
}

.rating-summary {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

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

.rating-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rating-count {
    color: var(--text-light);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 1rem;
    align-items: center;
}

.bar {
    height: 10px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: var(--primary-color);
}

.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #fffef8 0%, #ffffff 100%);
    border: 2px solid var(--primary-color);
}

.testimonial-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.client-info h3 {
    margin-bottom: 0.25rem;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.client-info .stars {
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.event-date {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-photo {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.event-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.video-testimonials-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-testimonial {
    cursor: pointer;
    transition: var(--transition);
}

.video-testimonial:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.video-testimonial:hover .play-overlay {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-testimonial h4 {
    margin-bottom: 0.5rem;
}

.video-testimonial p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === Contact Page === */
.contact-main-section {
    padding: 4rem 0 6rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 15px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.contact-info-card h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info-card > p {
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: white;
    margin-bottom: 0.25rem;
}

.contact-subtext {
    color: #999;
    font-size: 0.9rem;
}

.social-connect {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.social-connect h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    color: white;
    transition: var(--transition);
}

.social-link-large:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-link-large i {
    font-size: 1.5rem;
}

.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .intro-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px;
        text-align: left !important;
    }
    
    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        left: -15px;
        right: auto;
        border-right: 15px solid white;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #333;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .features-grid,
    .packages-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        min-width: 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .booking-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .sticky-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .chat-widget {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
    
    .chat-toggle {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .package-selection {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .booking-form,
    .contact-form-container,
    .contact-info-container {
        padding: 2rem 1.5rem;
    }
    
    .addons-grid,
    .why-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* === Print Styles === */
@media print {
    .navbar,
    .sticky-book-btn,
    .chat-widget,
    .chat-toggle,
    .footer {
        display: none;
    }
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Dark Mode Support (Optional) === */
@media (prefers-color-scheme: dark) {
    /* Can add dark mode styles if needed */
}

/* ========================================
   FUTURISTIC ENHANCEMENTS
   ======================================== */

/* === Particle Background Canvas === */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* === Animated Gradient Background === */
.animated-bg {
    background: linear-gradient(-45deg, #0a0e27, #1a1a2e, #16213e, #0a0e27);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

/* === Glowing Text === */
.glow-text {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-cyan),
            0 0 30px var(--neon-cyan);
    }
    to {
        text-shadow: 
            0 0 20px var(--neon-cyan),
            0 0 30px var(--neon-cyan),
            0 0 40px var(--neon-cyan),
            0 0 50px var(--neon-cyan);
    }
}

/* === Holographic Border Effect === */
.holographic-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(45deg, #00fff2, #a855f7, #ff0080, #00fff2) border-box;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    to {
        filter: hue-rotate(360deg);
    }
}

/* === 3D Tilt Effect === */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale3d(1.05, 1.05, 1.05);
}

/* === Neon Button Effect === */
.neon-btn {
    position: relative;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    background: transparent;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 
        0 0 10px var(--neon-cyan),
        inset 0 0 10px transparent;
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transition: left 0.5s;
}

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

.neon-btn:hover {
    color: var(--bg-dark);
    background: var(--neon-cyan);
    box-shadow: 
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        inset 0 0 20px var(--neon-cyan);
}

/* === Floating Animation === */
.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* === Pulse Effect === */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* === Shimmer Effect === */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* === Loading Spinner === */
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--glass-border);
    border-bottom-color: var(--neon-cyan);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* === Preloader === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

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

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

.preloader-logo {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

/* === Dark Mode Toggle === */
/* .theme-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--glass-shadow);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: var(--glow-sm);
    border-color: var(--neon-cyan);
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
} */

/* Dark Mode Styles */
body.dark-mode {
    --text-dark: #ffffff;
    --text-light: #b8b8b8;
    --bg-light: #1a1a2e;
    --border-color: rgba(255, 255, 255, 0.1);
    --secondary-color: #ffffff;
    background-color: var(--bg-dark);
}

body.dark-mode .package-card,
body.dark-mode .feature-card,
body.dark-mode .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .navbar {
    background: rgba(10, 14, 39, 0.95);
}

/* Dark mode text elements */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #ffffff;
}

body.dark-mode p,
body.dark-mode li,
body.dark-mode span,
body.dark-mode label {
    color: #e0e0e0;
}

body.dark-mode .section-title {
    color: #ffffff;
}

body.dark-mode .section-subtitle {
    color: #b8b8b8;
}

body.dark-mode .page-title {
    color: #ffffff;
}

body.dark-mode .page-subtitle {
    color: #b8b8b8;
}

body.dark-mode .hero-title {
    color: #ffffff;
}

body.dark-mode .hero-subtitle {
    color: #e0e0e0;
}

/* Dark mode for specific components */
body.dark-mode .event-card,
body.dark-mode .testimonial-card,
body.dark-mode .team-member,
body.dark-mode .value-card,
body.dark-mode .addon-item,
body.dark-mode .faq-item,
body.dark-mode .contact-info-item,
body.dark-mode .stat-card,
body.dark-mode .stat-highlight {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .package-name,
body.dark-mode .package-price,
body.dark-mode .feature-card h3,
body.dark-mode .feature-card p,
body.dark-mode .event-card h3,
body.dark-mode .testimonial-name,
body.dark-mode .testimonial-text {
    color: #ffffff;
}

body.dark-mode .package-description,
body.dark-mode .package-features li {
    color: #b8b8b8;
}

/* Dark mode for forms */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #888888;
}

body.dark-mode .form-label {
    color: #ffffff;
}

/* Dark mode for booking/order summary */
body.dark-mode .order-summary,
body.dark-mode .booking-form {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .summary-item,
body.dark-mode .summary-total {
    color: #ffffff;
}

/* Dark mode footer */
body.dark-mode .footer {
    background: var(--bg-dark);
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-title,
body.dark-mode .footer-heading {
    color: var(--primary-color);
}

body.dark-mode .footer-text,
body.dark-mode .footer-links a,
body.dark-mode .footer-contact li {
    color: #b8b8b8;
}

body.dark-mode .footer-links a:hover {
    color: var(--primary-color);
}

/* Dark mode for stats section */
body.dark-mode .stats-section {
    background: var(--bg-dark);
}

body.dark-mode .stat-number {
    color: var(--primary-color);
}

body.dark-mode .stat-label {
    color: #b8b8b8;
}

/* Dark mode for gallery */
body.dark-mode .gallery-item {
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .filter-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Dark mode for timeline */
body.dark-mode .timeline-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .timeline-year {
    color: var(--primary-color);
}

body.dark-mode .timeline-content h3 {
    color: #ffffff;
}

body.dark-mode .timeline-content p {
    color: #b8b8b8;
}

/* Dark mode for rating bars */
body.dark-mode .rating-bar {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .rating-label,
body.dark-mode .rating-count {
    color: #b8b8b8;
}

/* Dark mode for chat widget */
body.dark-mode .chat-widget {
    background: rgba(10, 14, 39, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .chat-header {
    background: var(--primary-color);
    color: var(--bg-dark);
}

body.dark-mode .chat-message {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

body.dark-mode .chat-message.bot {
    background: rgba(212, 175, 55, 0.1);
}

body.dark-mode #chatInput {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Dark mode for buttons */
body.dark-mode .btn-outline {
    color: #ffffff;
    border-color: var(--primary-color);
}

body.dark-mode .btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Dark mode for package options */
body.dark-mode .package-option {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .package-option.selected {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

/* Dark mode CTA section */
body.dark-mode .cta-section {
    background: rgba(10, 14, 39, 0.8);
}

body.dark-mode .cta-title {
    color: #ffffff;
}

body.dark-mode .cta-text {
    color: #b8b8b8;
}

/* Ensure icons remain visible */
body.dark-mode i {
    color: inherit;
}

body.dark-mode .feature-icon,
body.dark-mode .stat-icon {
    color: var(--primary-color);
}

/* Dark mode for Contact Page */
body.dark-mode .contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .contact-form-container h2 {
    color: #ffffff;
}

body.dark-mode .contact-form-container > p {
    color: #b8b8b8;
}

body.dark-mode .contact-info-container {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

body.dark-mode .contact-info-card h2 {
    color: #ffffff;
}

body.dark-mode .contact-info-card > p {
    color: #b8b8b8;
}

body.dark-mode .contact-icon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
}

body.dark-mode .contact-details h4 {
    color: var(--primary-color);
}

body.dark-mode .contact-details p {
    color: #ffffff;
}

body.dark-mode .contact-subtext {
    color: #999999;
}

body.dark-mode .social-connect {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .social-connect h4 {
    color: var(--primary-color);
}

body.dark-mode .social-link-large {
    background: rgba(212, 175, 55, 0.1);
    color: #ffffff;
}

body.dark-mode .social-link-large:hover {
    background: rgba(212, 175, 55, 0.2);
}

body.dark-mode .social-link-large i {
    color: var(--primary-color);
}

/* Dark mode for Contact Form specific elements */
body.dark-mode .contact-form .form-group label {
    color: #ffffff;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea,
body.dark-mode .contact-form select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus,
body.dark-mode .contact-form select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .contact-form select option {
    background: var(--bg-dark);
    color: #ffffff;
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
    color: #666666;
}

/* Dark mode for Map Section */
body.dark-mode .map-section {
    background: var(--bg-dark);
}

body.dark-mode .map-section .section-title {
    color: #ffffff;
}

body.dark-mode .map-section .section-subtitle {
    color: #b8b8b8;
}

body.dark-mode .map-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

/* Dark mode for FAQ on Contact Page */
body.dark-mode .faq-section {
    background: var(--bg-dark);
}

body.dark-mode .faq-section h2,
body.dark-mode .faq-section .section-title {
    color: #ffffff;
}

body.dark-mode .faq-section p,
body.dark-mode .faq-section .section-subtitle {
    color: #b8b8b8;
}

body.dark-mode .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .faq-question {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

body.dark-mode .faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-color);
}

body.dark-mode .faq-question i {
    color: var(--primary-color);
}

body.dark-mode .faq-answer {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .faq-answer p {
    color: #b8b8b8;
}

body.dark-mode .faq-item.active {
    border-color: var(--primary-color);
}

body.dark-mode .faq-item.active .faq-question {
    background: rgba(212, 175, 55, 0.1);
}

body.dark-mode .faq-icon {
    color: var(--primary-color);
}

/* Dark mode for Add-ons Section */
body.dark-mode .addons-section {
    background: var(--bg-dark);
}

body.dark-mode .addons-section h2,
body.dark-mode .addons-section .section-title {
    color: #ffffff;
}

body.dark-mode .addons-section p,
body.dark-mode .addons-section .section-subtitle {
    color: #b8b8b8;
}

body.dark-mode .addon-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .addon-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

body.dark-mode .addon-card i {
    color: var(--primary-color);
}

body.dark-mode .addon-card h4 {
    color: #ffffff;
}

body.dark-mode .addon-card p {
    color: #b8b8b8;
}

body.dark-mode .addon-price {
    color: var(--primary-color);
}

/* Dark mode for Booking page Add-ons */
body.dark-mode .addon-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .addon-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .addon-item label {
    color: #ffffff;
}

body.dark-mode .addon-name {
    color: #ffffff;
}

body.dark-mode .addon-description {
    color: #b8b8b8;
}

body.dark-mode .addon-price {
    color: var(--primary-color);
}

body.dark-mode .addon-item input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

body.dark-mode .addon-item input[type="checkbox"]:checked + label .addon-name {
    color: var(--primary-color);
}

/* Dark mode for Page Headers */
body.dark-mode .page-header {
    background: var(--bg-dark);
}

body.dark-mode .page-header-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Dark mode for all sections */
body.dark-mode .intro-section,
body.dark-mode .features-section,
body.dark-mode .packages-section,
body.dark-mode .gallery-section,
body.dark-mode .testimonials-section,
body.dark-mode .about-section,
body.dark-mode .story-section,
body.dark-mode .mission-section,
body.dark-mode .team-section,
body.dark-mode .why-choose-section {
    background: var(--bg-dark);
}

/* Dark mode for intro text */
body.dark-mode .intro-text h2,
body.dark-mode .intro-text h3 {
    color: #ffffff;
}

body.dark-mode .intro-text p {
    color: #b8b8b8;
}

/* Dark mode for event cards */
body.dark-mode .event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .event-card h3 {
    color: #ffffff;
}

body.dark-mode .event-card p {
    color: #b8b8b8;
}

/* Dark mode for carousel */
body.dark-mode .carousel-section {
    background: var(--bg-dark);
}

body.dark-mode .carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Dark mode for team members */
body.dark-mode .team-member {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .member-info h3 {
    color: #ffffff;
}

body.dark-mode .member-role {
    color: var(--primary-color);
}

body.dark-mode .member-bio {
    color: #b8b8b8;
}

/* Dark mode for values/mission cards */
body.dark-mode .value-card h3 {
    color: #ffffff;
}

body.dark-mode .value-card p {
    color: #b8b8b8;
}

body.dark-mode .value-icon {
    color: var(--primary-color);
}

/* Dark mode for addons */
body.dark-mode .addon-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .addon-name {
    color: #ffffff;
}

body.dark-mode .addon-description {
    color: #b8b8b8;
}

body.dark-mode .addon-price {
    color: var(--primary-color);
}

/* Dark mode for video testimonials */
body.dark-mode .video-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .video-caption {
    color: #b8b8b8;
}

/* Dark mode for overall rating */
body.dark-mode .rating-summary {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .rating-score h2,
body.dark-mode .rating-score .stars {
    color: var(--primary-color);
}

body.dark-mode .rating-score p {
    color: #b8b8b8;
}

/* Dark mode for social feed */
body.dark-mode .social-feed-section {
    background: var(--bg-dark);
}

body.dark-mode .social-tabs button {
    background: rgba(255, 255, 255, 0.05);
    color: #b8b8b8;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .social-tabs button.active {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

body.dark-mode .social-feed-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark mode for booking steps */
body.dark-mode .booking-steps {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .step {
    color: #b8b8b8;
}

body.dark-mode .step.active {
    color: #ffffff;
}

body.dark-mode .step.active .step-number {
    background: var(--primary-color);
    color: var(--bg-dark);
}

body.dark-mode .step.completed .step-number {
    background: rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
}

body.dark-mode .step-label {
    color: inherit;
}

/* Dark mode for review section */
body.dark-mode .review-section {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .review-section h3 {
    color: #ffffff;
}

body.dark-mode .review-item {
    color: #b8b8b8;
}

body.dark-mode .review-item strong {
    color: #ffffff;
}

/* Dark mode for security badges */
body.dark-mode .security-badges {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .security-badges p {
    color: #888888;
}

/* Improve contrast for important elements */
body.dark-mode .btn-primary {
    color: var(--bg-dark);
}

body.dark-mode strong,
body.dark-mode b {
    color: #ffffff;
    font-weight: 600;
}

/* === Scroll Progress Bar === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-neon);
    z-index: 10001;
    transition: width 0.1s;
}

/* === Gradient Text === */
.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

/* === Glass Morphism Card === */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 2rem;
    transition: var(--transition-slow);
}

.glass-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 32px 0 rgba(0, 255, 242, 0.2);
    transform: translateY(-5px);
}

/* === Tooltip === */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    padding: 0.5rem 1rem;
    background: var(--bg-dark);
    color: var(--text-white);
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    border: 1px solid var(--neon-cyan);
}

.tooltip:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* === Magnetic Button Effect === */
.magnetic-btn {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Ripple Effect === */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* === Typewriter Effect === */
.typewriter {
    overflow: hidden;
    border-right: 0.15em solid var(--neon-cyan);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--neon-cyan);
    }
}

/* === Parallax Container === */
.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* === Skeleton Loader === */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

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

/* === Reveal on Scroll === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

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

/* === Stagger Animation === */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    animation: staggerIn 0.6s ease-out forwards;
}

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

