/* ===================================================================
   WEDDING PHOTOGRAPHY WEBSITE - PREMIUM BLACK THEME
   =================================================================== */

/* ===================================================================
   CSS VARIABLES & GLOBAL SETTINGS
   =================================================================== */
:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --accent-gray: #2a2a2a;
    --light-gray: #404040;
    --medium-gray: #666666;
    --pure-white: #ffffff;
    --off-white: #f5f5f5;
    
    --professional-font: "Inter", sans-serif;
    --heading-font: "Playfair Display", serif;
    --cursive-font: "Dancing Script", cursive;
    
    --glow-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    --glow-shadow-dark: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* ===================================================================
   GLOBAL RESET & BASE STYLES
   =================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body, html {
    background: var(--primary-black) !important;
    color: var(--pure-white) !important;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: var(--professional-font) !important;
    position: relative;
}

/* ===================================================================
   COMMON COMPONENTS - USED ACROSS ALL PAGES
   =================================================================== */

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--pure-white), var(--medium-gray), var(--light-gray));
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: var(--glow-shadow);
}

/* ===== TYPOGRAPHY SYSTEM ===== */
h1 {
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-size: clamp(2.50rem, 5.5vw, 4.5rem);
    margin-bottom: 0.75rem;
    color: var(--pure-white) !important;
}

h2 {
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.15;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: 0.65rem;
    color: var(--pure-white) !important;
}

h3 {
    font-family: var(--heading-font);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.55rem;
    color: var(--pure-white) !important;
}

h4 {
    font-family: var(--heading-font);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 0.5rem;
    color: var(--pure-white) !important;
}

h5 {
    font-family: var(--heading-font);
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.3;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 0.45rem;
    color: var(--pure-white) !important;
}

h6 {
    font-family: var(--heading-font);
    font-weight: 200;
    letter-spacing: 0.015em;
    line-height: 1.35;
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    margin-bottom: 0.4rem;
    color: var(--pure-white) !important;
}

p, span, a, li, label {
    font-family: var(--professional-font) !important;
    color: var(--pure-white) !important;
    line-height: 1.7;
}

p {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 200;
}

/* Special Text Styles */
.text-gradient {
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--medium-gray) 50%, var(--light-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.cursive-text {
    font-family: var(--cursive-font) !important;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--pure-white) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ===== SPECIALIZED TYPOGRAPHY CLASSES ===== */

/* Hero Section Typography */
.hero-title {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--pure-white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-family: var(--cursive-font);
    font-weight: 500;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--pure-white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero slider */
#hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}


/* Section Headers */
.section-title {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--pure-white) !important;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: var(--professional-font);
    font-weight: 300;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Portfolio Item Typography */
.portfolio-item-title {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Statistics Card Typography */
.stat-card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    margin-bottom: 0.5rem;
}

.stat-card-subtitle {
    font-family: var(--cursive-font);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--medium-gray) !important;
}

/* Blog Card Typography */
.blog-card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    margin-bottom: 0.75rem;
}

.blog-card-subtitle {
    font-family: var(--professional-font);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--medium-gray);
}

/* Team Member Typography */
.team-member-name {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    margin-bottom: 0.75rem;
}

.team-member-description {
    font-family: var(--professional-font);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--medium-gray);
}

/* Gallery Item Typography */
.gallery-item-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    margin-bottom: 0.5rem;
}

.gallery-item-subtitle {
    font-family: var(--professional-font);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666666 !important;
    margin-bottom: 1rem;
}

/* Feature Typography */
.feature-title {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    margin-bottom: 0.5rem;
}

/* Form Section Typography */
.form-section-title {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    margin-bottom: 0.75rem;
}

/* Footer Typography */
.footer-tagline {
    font-family: var(--cursive-font);
    font-weight: 500;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--pure-white) !important;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.footer-section-title {
    font-family: var(--heading-font);
    font-weight: 500;
    text-transform: none;
    font-size: 1.3rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-family: var(--cursive-font);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--pure-white) !important;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.2);
}

/* ===== BUTTON SYSTEM ===== */
.elegant-button,
.cta-button,
.hero-button,
.view-more-btn,
.nav-btn {
    background: transparent !important;
    color: var(--pure-white) !important;
    border: 2px solid var(--pure-white) !important;
    padding: 15px 35px !important;
    border-radius: 50px !important;
    font-family: var(--professional-font) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: var(--glow-shadow) !important;
}

.elegant-button::before,
.cta-button::before,
.hero-button::before,
.view-more-btn::before,
.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.elegant-button:hover::before,
.cta-button:hover::before,
.hero-button:hover::before,
.view-more-btn:hover::before,
.nav-btn:hover::before {
    left: 100%;
}

.elegant-button:hover,
.cta-button:hover,
.hero-button:hover,
.view-more-btn:hover,
.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4) !important;
    border-color: var(--medium-gray) !important;
    color: var(--pure-white) !important;
}

.elegant-button:active,
.cta-button:active,
.hero-button:active,
.view-more-btn:active,
.nav-btn:active {
    transform: translateY(-2px) scale(0.98) !important;
    transition: all 0.1s ease !important;
}

/* Shimmer Effect */
.shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.elegant-button:hover .shimmer,
.cta-button:hover .shimmer,
.hero-button:hover .shimmer,
.view-more-btn:hover .shimmer,
.nav-btn:hover .shimmer {
    left: 100%;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-3d-btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-3d-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-3d-btn:hover::before {
    opacity: 1;
}

.floating-3d-btn:hover {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray)) !important;
    border: 2px solid var(--pure-white) !important;
    box-shadow: var(--glow-shadow) !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, var(--dark-gray), var(--accent-gray)) !important;
    border-color: var(--medium-gray) !important;
    box-shadow: var(--glow-shadow-dark) !important;
}

.email-btn {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray)) !important;
    border: 2px solid var(--pure-white) !important;
    box-shadow: var(--glow-shadow) !important;
}

.email-btn:hover {
    background: linear-gradient(135deg, var(--dark-gray), var(--accent-gray)) !important;
    border-color: var(--medium-gray) !important;
    box-shadow: var(--glow-shadow-dark) !important;
}

/* ===== ICONS ===== */
.fas, .far, .fab, .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    color: var(--pure-white) !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.whatsapp-btn i,
.email-btn i {
    font-size: 1.5rem !important;
    color: var(--pure-white) !important;
}

/* ===================================================================
   NAVIGATION SYSTEM - USED ACROSS ALL PAGES
   =================================================================== */

/* ===== NAVIGATION BAR ===== */
#home-navbar, #navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#home-navbar.scrolled, #navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#home-navbar .nav-link,
#home-navbar .nav-logo,
#home-navbar .cta-button,
#navbar .nav-link,
#navbar .nav-logo,
#navbar .cta-button {
    color: var(--pure-white) !important;
    transition: all 0.3s ease;
}

#home-navbar .nav-link:hover,
#home-navbar .cta-button:hover,
#navbar .nav-link:hover,
#navbar .cta-button:hover {
    color: var(--pure-white) !important;
    text-shadow: 0 0 10px var(--pure-white);
}

.nav-link {
    font-weight: 600 !important;
    position: relative !important;
    letter-spacing: 0.1em !important;
    font-size: 1.05rem !important;
    text-transform: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    color: var(--pure-white) !important;
}

.nav-link:hover {
    background: rgba(156, 156, 156, 0.1) !important;
    box-shadow: var(--glow-shadow) !important;
    color: var(--pure-white) !important;
}

.nav-link.active {
    color: var(--pure-white) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--pure-white), var(--medium-gray));
    border-radius: 1px;
    animation: activeIndicator 0.3s ease-out;
    box-shadow: var(--glow-shadow);
}

/* Mobile Navigation Styles */
#mobile-menu {
    visibility: hidden;
    transform: translateX(100%) !important;
}

#mobile-menu.open {
    visibility: visible;
    transform: translateX(0) !important;
}

/* Menu Toggle Button Styles */
.menu-icon-container {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon,
.close-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    color: var(--pure-white) !important;
}

.menu-icon.hidden {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.close-icon.hidden {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.menu-icon:not(.hidden),
.close-icon:not(.hidden) {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.mobile-nav-link {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    transition: all 0.5s ease;
    overflow: hidden;
    color: var(--pure-white) !important;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    transition: width 0.5s ease;
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    width: 80%;
}

.mobile-nav-link:hover {
    transform: translateY(-3px);
    text-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
    color: var(--pure-white) !important;
}

.mobile-nav-link.active {
    color: var(--pure-white) !important;
}

/* ===================================================================
   HOME PAGE SPECIFIC STYLES
   =================================================================== */

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--primary-black) !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--pure-white) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 25px;
    height: 25px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    background: radial-gradient(circle, var(--medium-gray) 0%, transparent 70%);
}

.particle:nth-child(3) {
    width: 35px;
    height: 35px;
    top: 40%;
    left: 50%;
    animation-delay: 6s;
    background: radial-gradient(circle, var(--light-gray) 0%, transparent 70%);
}

.hero-section img {
    border-radius: 20px !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) contrast(1.2);
}

.hero-section:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-item {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white) !important;
}

.portfolio-item img {
    border-radius: 20px !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.portfolio-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2);
}

/* ===== SETUP SECTION ===== */
.setup-card {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.setup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.setup-card:hover::before {
    opacity: 1;
}

.setup-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white) !important;
}

.setup-card img {
    border-radius: 20px !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.setup-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2);
}

.premium-card-content {
    background: linear-gradient(135deg, var(--accent-gray) 0%, var(--dark-gray) 100%) !important;
    color: var(--pure-white) !important;
    padding: 2rem;
    border-radius: 0 0 20px 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== STATISTICS SECTION ===== */
.stat-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--accent-gray) 100%) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: var(--pure-white) !important;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white) !important;
}

.counter {
    color: var(--pure-white) !important;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: counterPulse 2s ease-in-out infinite;
}

.premium-counter {
    color: var(--pure-white) !important;
}

/* ===== PROFESSIONAL PROCESS SECTION ===== */
.timeline-item {
    position: relative;
}

.timeline-item .bg-white {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--accent-gray) 100%) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.timeline-item:hover .bg-white {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white) !important;
}

.timeline-item .w-20 {
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--medium-gray) 100%) !important;
    border-radius: 50% !important;
    transition: all 0.5s ease;
    box-shadow: var(--glow-shadow);
}

.timeline-item:hover .w-20 {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.timeline-item .w-20 .fas,
.timeline-item .w-20 .far,
.timeline-item .w-20 .fab,
.timeline-item .w-20 .fa {
    color: var(--primary-black) !important;
    font-size: 2rem !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===================================================================
   SERVICES PAGE SPECIFIC STYLES
   =================================================================== */

/* Service Card Typography */
.service-card-title {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 1.2rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--pure-white);
    margin-bottom: 1rem;
    text-align: start;
}

.service-card-subtitle {
    font-family: var(--professional-font);
    font-weight: 300;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--medium-gray);
    text-align: start;
    margin-bottom: 1.5rem;
}

.event-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-icon {
    transition: all 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.1);
}

.event-icon i {
    font-size: 1.25rem;
    color: #ffffff;
}

/* ===================================================================
   PORTFOLIO PAGE SPECIFIC STYLES
   =================================================================== */

/* Filter Buttons */
.filter-btn {
    font-family: var(--professional-font) !important;
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: var(--glow-shadow) !important;
    

}

.filter-btn:hover,
.filter-btn.active {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3) !important;
    z-index: 1 !important;
}

/* Gallery Items - fit content height, no stretch */
.gallery-item {
    background: #111111 !important;
    color: #ffffff !important;
    border: 1px solid #222222 !important;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    align-self: start;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.gallery-overlay span {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay span:hover {
    background: #000000;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* ===================================================================
   CONTACT PAGE SPECIFIC STYLES
   =================================================================== */

/* Contact Form Card - Static Version (No Hover Effects) */
.contact-form-card-static {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.form-group-static {
    margin-bottom: 1.5rem;
}

.form-label-static {
    color: var(--pure-white) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    letter-spacing: 0.5px !important;
    font-family: var(--professional-font) !important;
}

.form-input-static {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: var(--pure-white) !important;
    font-size: 1rem !important;
    font-family: var(--professional-font) !important;
    cursor: text !important;
}

.form-input-static:focus {
    outline: none !important;
    border-color: var(--pure-white) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.form-input-static::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: var(--professional-font) !important;
}

/* White calendar icon for date inputs on dark background */
input[type="date"].form-input-static::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input[type="date"].form-input-static::-moz-focus-inner {
    filter: invert(1);
}

textarea.form-input-static {
    resize: vertical;
    min-height: 120px;
    font-family: var(--professional-font) !important;
    line-height: 1.6 !important;
}

.submit-button-static {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--accent-gray) 100%) !important;
    color: var(--pure-white) !important;
    border: 2px solid var(--pure-white) !important;
    font-family: var(--professional-font) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.submit-button-static:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Map Card - Static Version (No Hover Effects) */
.map-card-static {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.map-container-static {
    border-radius: 15px;
    overflow: hidden;
}

.map-container-static iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Studio Hours Card - Static Version (No Hover Effects) */
.studio-hours-card-static {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Original Contact Form Card (keeping for reference) */
.contact-form-card {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.contact-form-card:hover::before {
    opacity: 1;
}

.contact-form-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white) !important;
}

.form-header {
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-group:hover {
    transform: translateY(-2px);
}

.form-label {
    color: var(--pure-white) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    letter-spacing: 0.5px !important;
    font-family: var(--professional-font) !important;
    transition: all 0.3s ease !important;
}

.form-label:hover {
    color: var(--pure-white) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    color: var(--pure-white) !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    font-family: var(--professional-font) !important;
    cursor: text !important;
}

.form-input:focus {
    outline: none !important;
    border-color: var(--pure-white) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: var(--professional-font) !important;
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-1px) !important;
}

.form-input:active {
    transform: translateY(0) !important;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    font-family: var(--professional-font) !important;
    line-height: 1.6 !important;
}

.form-success-message {
    color: #4ade80 !important;
    font-weight: 600 !important;
    font-family: var(--professional-font) !important;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3) !important;
    animation: fadeInUp 0.5s ease-out !important;
}

/* Map Card */
.map-card {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.map-card:hover::before {
    opacity: 1;
}

.map-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white) !important;
}

.card-header {
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Studio Hours Card */
.studio-hours-card {
    background: var(--dark-gray) !important;
    border: 1px solid var(--accent-gray) !important;
    border-radius: 20px !important;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.studio-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.studio-hours-card:hover::before {
    opacity: 1;
}

.studio-hours-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white) !important;
}

.card-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.card-title i {
    color: rgba(255, 255, 255, 0.8);
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===================================================================
   PHOTO GALLERY STYLES (USED IN EVENT DETAILS PAGE)
   =================================================================== */

.photo-gallery {
    column-gap: 1.5rem;
}

.photo-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.photo-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.photo-wrapper:hover {
    transform: none;
    box-shadow: none;
    border-color: #ffffff;
}

.photo-wrapper img {
    width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-wrapper:hover img {
    transform: none;
}

.photo-wrapper .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-wrapper:hover .overlay {
    opacity: 1;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* ===================================================================
   FOOTER STYLES - USED ACROSS ALL PAGES
   =================================================================== */

footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
    color: var(--pure-white) !important;
    font-family: var(--professional-font) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer h3, footer h4, footer h5, footer h6 {
    font-family: var(--professional-font) !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--pure-white) !important;
}

footer ul li a {
    font-family: var(--professional-font) !important;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8) !important;
}

footer ul li a:hover {
    color: var(--pure-white) !important;
    text-shadow: 0 0 10px var(--pure-white);
    transform: translateX(5px);
}

footer p {
    font-family: var(--professional-font) !important;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ===================================================================
   ANIMATIONS & KEYFRAMES
   =================================================================== */

@keyframes gradientShift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes activeIndicator {
    from { width: 0; opacity: 0; }
    to { width: 30px; opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 8px 35px rgba(255, 255, 255, 0.3); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -40px) rotate(180deg); }
    75% { transform: translate(-30px, -20px) rotate(270deg); }
}

@keyframes counterPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) !important;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) !important;
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    /* Typography */
    h1 { 
        font-size: 2.8rem; 
        letter-spacing: 0.02em;
    }
    h2 { 
        font-size: 2.2rem; 
        letter-spacing: 0.01em;
    }
    h3 { 
        font-size: 1.75rem; 
    }
    .cursive-text {
        font-size: 1.3rem;
    }
    
    /* Buttons */
    .elegant-button,
    .cta-button,
    .hero-button,
    .view-more-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    /* Cards */
    .setup-card,
    .stat-card {
        margin-bottom: 2rem;
    }
    
    /* Services Page */
    .event-card {
        margin-bottom: 2rem;
    }
    .event-card img {
        height: 180px;
    }
    
    /* Portfolio Page */
    .gallery-item img {
        height: 200px;
    }
    .filter-btn {
        margin: 0 0.25rem 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Contact Page */
    .contact-form-card, 
    .map-card, 
    .studio-hours-card {
        padding: 1.5rem;
    }
    .map-container iframe {
        height: 300px;
    }
    
    /* Icons */
    .whatsapp-btn i,
    .email-btn i {
        font-size: 1.25rem !important;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Typography */
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    
    /* Buttons */
    .elegant-button,
    .cta-button,
    .hero-button,
    .view-more-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    /* Contact Page */
    .contact-form-card, 
    .map-card, 
    .studio-hours-card {
        padding: 1.25rem;
    }
    
    /* Icons */
    .whatsapp-btn i,
    .email-btn i {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 640px) {
    .square-mobile {
        position: relative;
        height: 0 !important;
        padding-bottom: 100% !important;
    }
    .square-mobile > img {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .square-mobile > .absolute {
        position: absolute !important;
        inset: 0 !important;
    }
}

/* Photo Gallery Responsive */
@media (min-width: 768px) {
    .photo-gallery {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .photo-gallery {
        column-count: 3;
    }
}

@media (min-width: 1280px) {
    .photo-gallery {
        column-count: 4;
    }
}

/* ===================================================================
   ACCESSIBILITY & UTILITIES
   =================================================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

/* Keyboard Navigation */
.keyboard-navigation *:focus {
    outline: 2px solid var(--pure-white) !important;
    outline-offset: 2px !important;
}

/* Touch Device Optimizations */
.touch-device .hover-lift:hover {
    transform: none;
}

.touch-device .hover-glow:hover {
    box-shadow: none;
}

/* Print Styles */
@media print {
    .floating-3d-btn,
    .scroll-indicator {
        display: none !important;
    }
}

/* ===================================================================
   3D EFFECTS & ANIMATIONS FOR EVENTS SECTION
   =================================================================== */

/* 3D Perspective and Transform Styles */
.perspective-1000 {
    perspective: 1000px;
}

.transform-style-preserve-3d {
    transform-style: preserve-3d;
}

.rotate-y-12 {
    transform: rotateY(12deg);
}

/* 3D Event Cards */
.event-card-3d {
    position: relative;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-3d:hover {
    transform: translateY(-10px) rotateY(12deg);
}

.card-front {
    backface-visibility: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid Pattern Background */
.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Enhanced Service Icons */
.service-icon {
    font-size: 2.5rem !important;
    color: var(--pure-white) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.service-icon:hover {
    transform: scale(1.2) rotate(15deg);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Progress Bar Animations */
.progress-bar-animate {
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: var(--progress-width);
    }
}

/* Enhanced Hover Effects */
.event-card-3d:hover .card-front {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(255, 255, 255, 0.08);
}

.event-card-3d:hover .elegant-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #4a4a4a 100%);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Floating Animation for Cards */
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.event-card-3d {
    animation: floatCard 6s ease-in-out infinite;
}

.event-card-3d:nth-child(2) {
    animation-delay: 1s;
}

.event-card-3d:nth-child(3) {
    animation-delay: 2s;
}

.event-card-3d:nth-child(4) {
    animation-delay: 3s;
}

.event-card-3d:nth-child(5) {
    animation-delay: 4s;
}

.event-card-3d:nth-child(6) {
    animation-delay: 5s;
}

.event-card-3d:nth-child(7) {
    animation-delay: 6s;
}

.event-card-3d:nth-child(8) {
    animation-delay: 7s;
}

/* Enhanced Gradient Backgrounds */
.elegant-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 25%, #404040 50%, #2a2a2a 75%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Mobile Navigation Styles */
#mobile-menu {
    visibility: hidden;
    transform: translateX(100%) !important;
}

#mobile-menu.open {
    visibility: visible;
    transform: translateX(0) !important;
}

/* Menu Toggle Button Styles */
.menu-icon-container {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon,
.close-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    color: var(--pure-white) !important;
}

.menu-icon.hidden {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.close-icon.hidden {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.menu-icon:not(.hidden),
.close-icon:not(.hidden) {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Mobile Menu Close Button Styling */
#mobile-menu-close {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

#mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: rotate(90deg);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

#mobile-menu-close.rotate-90 {
    transform: rotate(90deg);
}

#mobile-menu-close svg {
    transition: all 0.3s ease;
}

#mobile-menu-close:hover svg {
    stroke: #fff;
    stroke-width: 2.5px;
}

.mobile-nav-link {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    transition: all 0.5s ease;
    overflow: hidden;
    color: var(--pure-white) !important;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    transition: width 0.5s ease;
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    width: 80%;
}

.mobile-nav-link:hover {
    transform: translateY(-3px);
    text-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
    color: var(--pure-white) !important;
}

.mobile-nav-link.active {
    color: var(--pure-white) !important;
}

/* Responsive adjustments for 3D effects */
@media (max-width: 768px) {
    .event-card-3d:hover {
        transform: translateY(-5px) rotateY(6deg);
    }
    
    .perspective-1000 {
        perspective: 500px;
    }
    
    .event-card-3d {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .event-card-3d,
    .grid-pattern,
    .elegant-gradient {
        animation: none;
    }
    
    .event-card-3d:hover {
        transform: none;
    }
}

/* Custom Black Shadow Styles */
.shadow-black {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9) !important;
}

.shadow-black.shadow-2xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9) !important;
}

/* Enhanced Black Card Styling */
.card-front.bg-black {
    background: #000000 !important;
    border: 1px solid #333333 !important;
}

.card-front.bg-black:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 255, 255, 0.05);
}
