/* ============================================
   FONGFOG STUDIO - MAXIMALISM DESIGN
   Bold, Colorful, Vibrant Photography Studio
   ============================================ */

/* ============================================
   CSS VARIABLES - MAXIMALISM COLOR PALETTE
   ============================================ */
:root {
    /* Maximalism Colors - Bold & Vibrant */
    --max-pink: #FF69B4;
    --max-purple: #9370DB;
    --max-blue: #00BFFF;
    --max-coral: #FF7F50;
    --max-yellow: #FFD700;
    --max-orange: #FF6347;
    --max-red: #DC143C;
    --max-cyan: #00CED1;
    --max-magenta: #FF00FF;
    --max-gold: #FFA500;

    /* Gradients - Multiple Colors */
    --gradient-rainbow: linear-gradient(135deg, #FF69B4 0%, #9370DB 25%, #00BFFF 50%, #FF7F50 75%, #FFD700 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6347 0%, #FF69B4 50%, #9370DB 100%);
    --gradient-ocean: linear-gradient(135deg, #00BFFF 0%, #00CED1 50%, #9370DB 100%);
    --gradient-fire: linear-gradient(135deg, #FFD700 0%, #FF6347 50%, #DC143C 100%);
    --gradient-neon: linear-gradient(135deg, #FF00FF 0%, #00BFFF 50%, #FFD700 100%);

    /* Typography */
    --font-main: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', 'Be Vietnam Pro', sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Shadows - Bold & Colorful */
    --shadow-pink: 0 10px 40px rgba(255, 105, 180, 0.4);
    --shadow-purple: 0 10px 40px rgba(147, 112, 219, 0.4);
    --shadow-blue: 0 10px 40px rgba(0, 191, 255, 0.4);
    --shadow-rainbow: 0 20px 60px rgba(255, 105, 180, 0.3), 0 20px 60px rgba(0, 191, 255, 0.2);

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   BASE STYLES - DARK MAXIMALISM
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

/* Custom Scrollbar - Dark */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-vibrant);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Selection */
::selection {
    background: var(--secondary);
    color: #fff;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #B85CB6 0%, #227EFD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 250px;
    height: 6px;
    background: rgba(184, 92, 182, 0.15);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #B85CB6 0%, #227EFD 50%, #B85CB6 100%);
    background-size: 200% 100%;
    border-radius: 3px;
    animation: loading 2s ease-in-out forwards, shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(34, 126, 253, 0.2) 0%, rgba(184, 92, 182, 0.2) 100%);
}

@media (max-width: 768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* ============================================
   HEADER / NAVBAR - Bootstrap 5 Enhanced
   ============================================ */
.header {
    background: transparent;
    transition: var(--transition-smooth);
    z-index: 1050;
}

.header .navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    transition: var(--transition-smooth);
}

.header .navbar.scrolled,
.header.scrolled .navbar {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: var(--max-purple);
    box-shadow: 0 4px 30px rgba(147, 112, 219, 0.3);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF69B4 0%, #9370DB 50%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, #00BFFF 0%, #9370DB 50%, #FF69B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-slogan {
    font-family: var(--font-main);
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav Links - Clean Style */
.navbar-nav .nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.6rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(147, 112, 219, 0.15) 100%);
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
}

/* Book Slot Button */
.btn-book-slot {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    background: linear-gradient(135deg, #FF69B4 0%, #9370DB 50%, #00BFFF 100%);
    background-size: 200% 200%;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    transition: var(--transition-fast);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-book-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    color: #fff !important;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--max-pink);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF69B4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   CUSTOM BUTTONS - Maximalism Neon Style
   ============================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    background: var(--gradient-vibrant);
    color: #fff !important;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    box-shadow: 0 0 20px rgba(34, 126, 253, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(34, 126, 253, 0.5), 0 10px 40px rgba(184, 92, 182, 0.3);
    color: #fff !important;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.btn-outline-custom:hover {
    background: var(--gradient-vibrant);
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(34, 126, 253, 0.4);
}

.btn-filter {
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--gradient-vibrant);
    color: #fff;
    border-color: transparent;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(34, 126, 253, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 92, 182, 0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(34, 126, 253, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 92, 182, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.6s;
}

.title-line:nth-child(2) {
    animation-delay: 0.7s;
}

.title-line:nth-child(3) {
    animation-delay: 0.8s;
}

.title-outline {
    -webkit-text-stroke: 3px var(--secondary);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 1s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    padding-top: 120%;
    background: var(--gradient-hero);
    border: 2px solid var(--primary);
}

.hero-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    z-index: -1;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -2;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.3;
        top: 20px;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
/* Hero Stats - Bottom right of hero-visual */
.hero-stats {
    gap: 1.5rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.stat-item {
    padding: 0 0.75rem;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D47DD2 0%, #4D9AFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.25rem;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    background: var(--gradient-vibrant);
    padding: 1.2rem 0;
    overflow: hidden;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.marquee-dot {
    color: var(--accent) !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-vibrant);
    color: #fff;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(34, 126, 253, 0.4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
}

.title-accent {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(34, 126, 253, 0.5));
}

.title-accent-white {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 255, 204, 0.6);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(34, 126, 253, 0.03) 0%, rgba(184, 92, 182, 0.03) 100%);
}

.service-card.premium {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.service-card.concept {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(184, 92, 182, 0.05) 0%, rgba(184, 92, 182, 0.02) 100%);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover {
    border-color: var(--primary);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.view-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ABOUT SECTION - Dark Theme
   ============================================ */
.about-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.about-features {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-image-item {
    height: 200px;
    background: var(--gradient-hero);
    border: 2px solid var(--primary);
    transition: var(--transition-smooth);
}

.about-image-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.mt-n4 {
    margin-top: -1.5rem !important;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: var(--transition-smooth);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: var(--gradient-secondary);
}

.blog-title {
    font-weight: 700;
    color: #fff;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-link {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   BOOKING CTA
   ============================================ */
.booking-cta {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(34, 126, 253, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(184, 92, 182, 0.15) 0%, transparent 50%);
}

.booking-cta .container {
    position: relative;
    z-index: 1;
}

.booking-title {
    font-family: var(--font-display);
}

/* ============================================
   FOOTER - Maximalism Dark
   ============================================ */
.footer {
    background: #050505;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-vibrant);
}

.footer .logo-text {
    font-size: 1.75rem;
}

.footer-heading {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    transition: color var(--transition-fast);
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-links a:hover {
    color: var(--primary) !important;
}

.footer-social .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.footer-social .btn:hover {
    background: var(--gradient-vibrant);
    border-color: transparent;
    color: #fff;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #B85CB6 0%, #227EFD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
#lightboxModal .modal-content {
    border: 2px solid var(--primary);
    border-radius: 0;
}

#lightboxModal .modal-body img {
    max-height: 70vh;
    object-fit: contain;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.service-card,
.blog-card,
.section-header,
.about-content,
.about-image-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible,
.blog-card.visible,
.section-header.visible,
.about-content.visible,
.about-image-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991.98px) {
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .title-line {
        font-size: 2.5rem;
    }

    .hero-image-frame {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .marquee-content span {
        font-size: 1rem;
    }

    .py-lg-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BOOTSTRAP DARK THEME OVERRIDES
   ============================================ */
/* Override text-muted for dark theme */
.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Override text-dark for dark theme */
.text-dark {
    color: #fff !important;
}

/* Override card backgrounds */
.card {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-body {
    color: rgba(255, 255, 255, 0.85);
}

/* Override form controls for dark theme */
.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(34, 126, 253, 0.25);
}

/* Override badges */
.badge.bg-info-subtle {
    background-color: rgba(34, 126, 253, 0.2) !important;
}

.badge.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.2) !important;
}

.badge.bg-warning-subtle {
    background-color: rgba(255, 193, 7, 0.2) !important;
}

/* Override small text */
small,
.small {
    color: rgba(255, 255, 255, 0.6);
}

/* Override paragraphs in sections */
p {
    color: rgba(255, 255, 255, 0.75);
}

/* Ensure headings are white */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #fff;
}

/* Override Bootstrap list styles */
ul,
ol {
    color: rgba(255, 255, 255, 0.8);
}

/* Override address color */
address {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MAXIMALISM HERO SECTION - FULL COLOR
   ============================================ */
.hero-maximalism {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #0a0a1f 50%, #1a0a2e 100%);
}

.hero-bg-maximalism {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(147, 112, 219, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-subtitle-max {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

.hero-title-max {
    margin-bottom: 2rem;
}

.title-line-max {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 105, 180, 0.5);
    animation: textShimmer 3s ease-in-out infinite;
}

.title-outline-max {
    -webkit-text-stroke: 3px transparent;
    -webkit-text-stroke-color: var(--max-pink);
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.8);
}

@keyframes textShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-description-max {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.8;
}

.btn-primary-max {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-rainbow);
    color: #fff !important;
    border: 3px solid var(--max-pink);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6), 0 0 60px rgba(147, 112, 219, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary-max:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 105, 180, 0.8), 0 0 100px rgba(147, 112, 219, 0.6);
    border-color: var(--max-purple);
}

.btn-outline-max {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: transparent;
    color: #fff !important;
    border: 3px solid var(--max-blue);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline-max:hover {
    background: var(--gradient-ocean);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.8);
    border-color: var(--max-cyan);
}

/* ============================================
   FILTER SECTION - MAXIMALISM
   ============================================ */
.filter-section {
    background: linear-gradient(180deg, #0a0a1f 0%, #1a0a2e 100%);
    border-bottom: 3px solid var(--max-pink);
}

.filter-bar-maximalism {
    text-align: center;
}

.filter-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
}

.filter-count {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 1px;
}

.filter-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.filter-btn:hover {
    background: var(--gradient-neon);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.filter-btn.active {
    background: var(--gradient-rainbow);
    color: #fff;
    border-color: var(--max-pink);
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.7);
}

.filter-icon {
    font-size: 1.5rem;
}

/* ============================================
   ALBUMS MASONRY GRID - NO GAP
   ============================================ */
.albums-section {
    background: #0a0a0a;
    padding: 0;
}

.albums-masonry-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* CATEGORY SECTION - Mỗi danh mục */
.category-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-section:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    font-size: 2rem;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.category-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--max-pink);
    color: var(--max-pink);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background: var(--max-pink);
    color: #fff;
    transform: translateX(5px);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

/* Category Albums Grid - 4 cột với Bootstrap 5 spacing */
.category-albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0 1rem;
}

@media (max-width: 1200px) {
    .category-albums-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-albums-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 0.5rem;
    }
    
    .category-header {
        padding: 0 1rem 1rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .category-albums-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
        padding: 0 0.25rem;
    }
    
    .album-card {
        margin: 2px;
    }
}

.albums-masonry-grid.filtering {
    opacity: 0.5;
    pointer-events: none;
}

/* ============================================
   ALBUM CARD - Bootstrap 5 Compatible
   Info displayed at BOTTOM (always visible)
   ============================================ */
.album-card {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    animation: albumFadeIn 0.5s ease forwards;
    cursor: pointer;
    background: rgba(20, 20, 30, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 8px;
}

.album-card:hover {
    transform: translateY(-8px) scale(1);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.25), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.album-card.show {
    opacity: 1;
    transform: scale(1);
}

@keyframes albumFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Album Image Container */
.album-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border-radius: 12px 12px 0 0;
}

.album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.album-card:hover .album-image img {
    transform: scale(1.08);
}

/* Overlay - only show on hover for "View Album" button */
.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay-content {
    text-align: center;
    padding: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.album-card:hover .album-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

/* Hidden on overlay - title/stats now at bottom */
.album-overlay .album-title,
.album-overlay .album-category,
.album-overlay .album-stats {
    display: none;
}

.btn-view-album {
    padding: 0.875rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FF69B4 0%, #9370DB 50%, #00BFFF 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-view-album:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.6);
}

/* ============================================
   ALBUM INFO - Always visible at bottom
   ============================================ */
.album-info {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.98) 0%, rgba(20, 20, 35, 0.98) 100%);
    border-top: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.album-title-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.album-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.album-views {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.album-views i {
    color: rgba(255, 105, 180, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .album-card {
        margin: 4px;
    }
    
    .album-info {
        padding: 0.875rem 1rem;
    }
    
    .album-title-text {
        font-size: 0.9rem;
    }
    
    .album-category-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
}

/* ============================================
   ABOUT SECTION - MAXIMALISM
   ============================================ */
.about-section-max {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
    padding: 6rem 0;
}

.section-header-max {
    position: relative;
}

.section-tag-max {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gradient-sunset);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    text-transform: uppercase;
}

.section-title-max {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
}

.title-accent-max {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.section-desc-max {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid-max {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item-max {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item-max:hover {
    border-color: var(--max-pink);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-weight: 600;
}

.about-image-max {
    position: relative;
    height: 400px;
}

.about-shape-1,
.about-shape-2,
.about-shape-3 {
    position: absolute;
    border: 3px solid;
    animation: floatShape 6s ease-in-out infinite;
}

.about-shape-1 {
    width: 200px;
    height: 200px;
    border-color: var(--max-pink);
    top: 0;
    left: 0;
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.5);
}

.about-shape-2 {
    width: 180px;
    height: 180px;
    border-color: var(--max-blue);
    top: 50px;
    right: 50px;
    animation-delay: -2s;
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.5);
}

.about-shape-3 {
    width: 150px;
    height: 150px;
    border-color: var(--max-yellow);
    bottom: 0;
    left: 100px;
    animation-delay: -4s;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   BOOKING SECTION - MAXIMALISM
   ============================================ */
.booking-section-max {
    background: linear-gradient(135deg, #1a0a2e 0%, #0a0a1f 100%);
    padding: 6rem 0;
}

.booking-card-max {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 3px solid var(--max-pink);
    padding: 3rem;
    box-shadow: 0 0 50px rgba(255, 105, 180, 0.3);
}

.booking-header-max {
    margin-bottom: 2rem;
}

.form-group-max {
    margin-bottom: 1.5rem;
}

.form-label-max {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 0.75rem;
    display: block;
}

.form-control-max {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.form-control-max::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control-max:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--max-pink);
    outline: none;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
}

/* Select dropdown styling */
select.form-control-max {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF69B4' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
    cursor: pointer;
}

select.form-control-max option {
    background: #1a1a2e;
    color: #fff;
    padding: 1rem;
    font-size: 1rem;
}

select.form-control-max option:hover,
select.form-control-max option:focus,
select.form-control-max option:checked {
    background: linear-gradient(135deg, #FF69B4 0%, #9370DB 100%);
    color: #fff;
}

/* ============================================
   FOOTER - MAXIMALISM
   ============================================ */
.footer-max {
    background: #050505;
    border-top: 3px solid var(--max-purple);
    box-shadow: 0 -10px 30px rgba(147, 112, 219, 0.3);
}

.footer-logo-max {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.footer-desc-max {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 1rem;
}

.social-links-max {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link-max {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-max:hover {
    background: var(--gradient-rainbow);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
    color: #fff;
}

.footer-title-max {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links-max {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-max li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-bottom-max {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-max p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ============================================
   LIGHTBOX - MAXIMALISM BLUE BACKGROUND
   ============================================ */
.lightbox-max {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 100, 200, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-max.active {
    opacity: 1;
}

.lightbox-content-max {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content-max img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border: 5px solid #fff;
}

.lightbox-close-max {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #fff;
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close-max:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
}

.lightbox-nav-max {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #fff;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev-max {
    left: 2rem;
}

.lightbox-next-max {
    right: 2rem;
}

.lightbox-nav-max:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter-max {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #fff;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 10000;
}

/* ============================================
   PRICING SECTION - BẢNG GIÁ
   ============================================ */
.pricing-section-max {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section-max::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Pricing Tabs */
.pricing-tabs {
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-tabs .nav-link {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-tabs .nav-link:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: #FF69B4;
    color: #fff;
}

.pricing-tabs .nav-link.active {
    background: linear-gradient(135deg, #FF6347 0%, #FF69B4 50%, #9370DB 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.4);
}

/* Pricing Card */
.pricing-card-max {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card-max::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6347 0%, #FF69B4 50%, #9370DB 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.pricing-card-max:hover {
    transform: translateY(-10px);
    border-color: #FF69B4;
    box-shadow: 0 10px 40px rgba(255, 105, 180, 0.4);
}

.pricing-card-max:hover::before {
    opacity: 1;
}

/* Featured Card */
.pricing-card-max.featured {
    border-color: #FF69B4;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(147, 112, 219, 0.1) 100%);
}

.pricing-card-max.featured::before {
    opacity: 1;
}

/* Addon Card */
.pricing-card-max.addon {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-card-max.addon:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

/* Badge */
.pricing-badge-max {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FF6347 50%, #DC143C 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Pricing Header */
.pricing-header-max {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-tag-max {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #FF69B4;
    margin-bottom: 0.5rem;
}

.pricing-name-max {
    font-family: 'Montserrat', 'Be Vietnam Pro', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin: 0.5rem 0;
}

.pricing-price-max {
    margin-top: 1rem;
}

.price-amount-max {
    font-family: 'Montserrat', 'Be Vietnam Pro', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6347 0%, #FF69B4 50%, #9370DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #FF69B4; /* Fallback color */
}

.price-per-max {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Pricing Features */
.pricing-features-max {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features-max li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features-max li i {
    color: #FF69B4;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-features-max li strong {
    color: #fff;
}

/* Addon List */
.pricing-features-max.addon-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.pricing-features-max.addon-list li i {
    color: #FFD700;
}

.pricing-features-max .note-item {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features-max .note-item i {
    color: #00CED1;
}

/* Buttons */
.btn-outline-max {
    background: transparent;
    border: 2px solid #FF69B4;
    color: #FF69B4;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-max:hover {
    background: #FF69B4;
    color: #fff;
}

/* Pricing Note */
.pricing-note {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-note p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   FLOATING CONTACT ICONS - GÓC PHẢI DƯỚI
   ============================================ */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.contact-icon:hover::before {
    opacity: 1;
}

/* Facebook */
.contact-icon.facebook {
    background: linear-gradient(135deg, #9370DB 0%, #7B5FC7 100%);
}

.contact-icon.facebook:hover {
    box-shadow: 0 6px 25px rgba(147, 112, 219, 0.5);
}

/* Instagram */
.contact-icon.instagram {
    background: linear-gradient(135deg, #FF69B4 0%, #FF7F50 100%);
}

.contact-icon.instagram:hover {
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.5);
}

/* Phone */
.contact-icon.phone {
    background: linear-gradient(135deg, #00BFFF 0%, #00CED1 100%);
    animation: pulse-phone 2s infinite;
}

.contact-icon.phone:hover {
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.5);
    animation: none;
}

@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 191, 255, 0.6);
    }
}

/* Email */
.contact-icon.email {
    background: linear-gradient(135deg, #FF7F50 0%, #FFD700 100%);
}

.contact-icon.email:hover {
    box-shadow: 0 6px 25px rgba(255, 127, 80, 0.5);
}

/* Tooltip on hover - bên trái icon */
.contact-icon::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-icon:hover::after {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-icon::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVE - MAXIMALISM
   ============================================ */
@media (max-width: 991.98px) {
    .albums-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .filter-buttons-wrapper {
        justify-content: flex-start;
    }
    
    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .pricing-tabs .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .pricing-card-max {
        padding: 2rem;
    }
    
    .price-amount-max {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .albums-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .album-title {
        font-size: 1.2rem;
    }
    
    .filter-icon {
        font-size: 1.2rem;
    }
    
    .lightbox-close-max {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-nav-max {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev-max {
        left: 1rem;
    }
    
    .lightbox-next-max {
        right: 1rem;
    }
    
    .booking-card-max {
        padding: 2rem 1.5rem;
    }
    
    .pricing-tabs {
        gap: 0.5rem;
    }
    
    .pricing-tabs .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .pricing-card-max {
        padding: 1.5rem;
    }
    
    .pricing-name-max {
        font-size: 1.25rem;
    }
    
    .price-amount-max {
        font-size: 2rem;
    }
}