/* SPARKD Atlanta - Premium CSS */
/* Color Scheme: Black, Gold, White */

:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8960C;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-medium: #2D2D2D;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --gray: #888888;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    --gradient-premium: linear-gradient(135deg, #D4AF37 0%, #E6C547 25%, #D4AF37 50%, #B8960C 75%, #D4AF37 100%);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);
    --shadow-gold-strong: 0 10px 60px rgba(212, 175, 55, 0.5);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
body.light-theme {
    --black: #FFFFFF;
    --black-light: #F8F8F8;
    --black-medium: #EFEFEF;
    --white: #1A1A1A;
    --white-off: #333333;
    --gray: #555555;
    --text-dark: #1A1A1A;
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
}

body.light-theme .logo-text {
    color: #1A1A1A !important;
}

body.light-theme .logo-text span {
    color: var(--gold) !important;
}

body.light-theme .nav-link {
    color: #333 !important;
}

body.light-theme .nav-link:hover {
    color: var(--gold) !important;
}

body.light-theme .service-card {
    background: #FFFFFF !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
}

body.light-theme .service-title {
    color: #1A1A1A !important;
}

body.light-theme .service-desc {
    color: #555 !important;
}

body.light-theme .service-price {
    color: var(--gold-dark) !important;
}

body.light-theme .section-title {
    color: #1A1A1A !important;
}

body.light-theme .section-title .gold-text {
    color: var(--gold) !important;
}

body.light-theme .section-subtitle {
    color: #555 !important;
}

body.light-theme .hero-title {
    color: #1A1A1A !important;
}

body.light-theme .hero-description {
    color: #555 !important;
}

body.light-theme .hero-subtext {
    color: #666 !important;
}

body.light-theme .package-card {
    background: #FFFFFF !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
}

body.light-theme .package-name {
    color: #1A1A1A !important;
}

body.light-theme .package-desc {
    color: #555 !important;
}

body.light-theme .package-features li {
    color: #333 !important;
    border-color: rgba(0,0,0,0.1) !important;
}

body.light-theme .review-card {
    background: #FFFFFF !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
}

body.light-theme .review-text {
    color: #333 !important;
}

body.light-theme .review-info h4 {
    color: #1A1A1A !important;
}

body.light-theme .step-title {
    color: #1A1A1A !important;
}

body.light-theme .step-desc {
    color: #555 !important;
}

body.light-theme .gallery-title {
    color: #FFF !important;
}

body.light-theme .cta-title {
    color: #1A1A1A !important;
}

body.light-theme .cta-subtitle {
    color: #555 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

/* Premium Glow Effects */
@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 20px var(--gold-glow), 0 0 40px transparent; }
    50% { box-shadow: 0 0 30px var(--gold-glow), 0 0 60px var(--gold-glow); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes rotate-glow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(30deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
    border: 2px solid var(--black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gradient-text {
    background: var(--gradient-premium);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.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: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-premium);
    background-size: 200% auto;
    color: var(--black);
    box-shadow: var(--shadow-gold);
    animation: shimmer 4s linear infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-gold-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-gold);
    border-radius: 55px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-secondary:hover::after {
    opacity: 0.3;
    animation: goldPulse 2s infinite;
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

/* Header Theme Toggle Button */
.theme-toggle-header {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #1A1A1A;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.theme-toggle-header:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.theme-toggle-header .fa-moon { display: none; }
.theme-toggle-header .fa-sun { display: block; }

body.light-theme .theme-toggle-header .fa-moon { display: block; }
body.light-theme .theme-toggle-header .fa-sun { display: none; }

body.light-theme .theme-toggle-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: var(--gold);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    background-size: 200% auto;
    color: #0A0A0A !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background-position: right center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

body.light-theme .hero {
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 50%, #FAFAFA 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

/* Enhanced Hero Background Glow Animation */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: hero-glow 8s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 1;
    padding: 0 15px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--gold);
    animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-badge span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 8vw, 80px);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.1;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(212, 175, 55, 0.3);
    z-index: -1;
    transform: skewX(-5deg);
}

.hero-subtext {
    font-size: clamp(14px, 2.5vw, 22px);
    color: var(--gray);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: 2px;
}

.hero-subtext .divider {
    color: var(--gold);
    margin: 0 12px;
}

.hero-description {
    font-size: clamp(15px, 3vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.5s both;
    line-height: 1.7;
}

body.light-theme .hero-description {
    color: #555;
}

body.light-theme .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(250, 250, 250, 0.85) 0%,
        rgba(250, 250, 250, 0.7) 50%,
        rgba(250, 250, 250, 0.95) 100%
    );
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Sparkle Effects */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--gradient-dark);
}

.section-darker {
    background: var(--black-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 50px);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--black-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--black);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-title {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--black-light);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: var(--gold);
    transform: scale(1.02);
}

.package-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 8px 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.package-name {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--white);
}

.package-desc {
    color: var(--gray);
    margin-bottom: 25px;
}

.package-price {
    margin-bottom: 30px;
}

.package-price .starting {
    font-size: 14px;
    color: var(--gray);
}

.package-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
}

.package-features {
    list-style: none;
    margin-bottom: 35px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.package-features li i {
    color: var(--gold);
    font-size: 14px;
}

.package-btn {
    width: 100%;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #2a2a2a;
}

.gallery-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 10px;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateX(5px);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin: 0 auto 25px;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -40px;
    width: 80px;
    height: 3px;
    background: var(--gold);
    opacity: 0.3;
}

.step-title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.step-desc {
    color: var(--gray);
    font-size: 15px;
}

/* Reviews Section */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 400px;
    background: var(--black-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.review-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 17px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.review-info h4 {
    color: var(--white);
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.review-info span {
    color: var(--gold);
    font-size: 14px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--black-medium);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gold);
    font-size: 18px;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 55px);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray);
}

.footer-contact i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* =====================================================
   MOBILE SERVICE CARDS - HORIZONTAL SCROLL
   ===================================================== */
@media (max-width: 768px) {
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px 30px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        margin: 0;
    }
    
    /* Mobile Package Cards - Horizontal */
    .packages-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 5px 30px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .packages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .package-card {
        flex: 0 0 300px;
        scroll-snap-align: center;
        margin: 0;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    /* Mobile Gallery Grid - Masonry style */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    /* Swipe indicator */
    .section-header::after {
        content: 'Swipe to see more →';
        display: block;
        margin-top: 15px;
        font-size: 12px;
        color: var(--gold);
        opacity: 0.7;
    }
    
    #gallery .section-header::after,
    #reviews .section-header::after,
    #how-it-works .section-header::after {
        display: none;
    }
}

/* Mobile Bottom Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 0;
    z-index: 1000;
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--gray);
    font-size: 11px;
    padding: 8px 15px;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-nav-item i {
    font-size: 22px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-nav-item.cta-item {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 25px;
    margin-top: -25px;
    box-shadow: var(--shadow-gold);
}

.mobile-nav-item.cta-item i {
    font-size: 24px;
}

/* Quote Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--black-light);
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 28px;
    color: var(--white);
}

.modal-close {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
}

.modal-body {
    padding: 40px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
}

.form-group label span {
    color: var(--gold);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-item:hover,
.checkbox-item.checked {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.checkbox-item input {
    display: none;
}

.checkbox-item .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: var(--transition);
}

.checkbox-item.checked .checkmark {
    background: var(--gold);
    color: var(--black);
}

.checkbox-item span {
    color: var(--white);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
}

/* =====================================================
   MOBILE HERO IMAGE SLIDER & MOBILE-SPECIFIC STYLES
   ===================================================== */

/* Hide mobile elements on desktop */
.hero-images-mobile,
.hero-mobile-content {
    display: none;
}

/* Desktop content visible by default */
.hero-desktop-content {
    display: block;
}

@media (max-width: 768px) {
    /* Show mobile content, hide desktop */
    .hero-desktop-content {
        display: none;
    }
    
    .hero-mobile-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-images-mobile {
        display: block;
        position: relative;
        width: 100%;
        max-width: 340px;
        margin: 0 auto 30px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                    0 0 40px rgba(212, 175, 55, 0.2);
    }
    
    body.light-theme .hero-images-mobile {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 
                    0 0 40px rgba(212, 175, 55, 0.1);
    }
    
    /* Hero Slider */
    .hero-slider {
        position: relative;
        width: 100%;
        height: 280px;
        overflow: hidden;
    }
    
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: scale(1.1);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .hero-slide.active {
        opacity: 1;
        transform: scale(1);
    }
    
    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-slide .slide-label {
        position: absolute;
        bottom: 15px;
        left: 15px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 150, 12, 0.95) 100%);
        color: #000;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    /* Slider Dots */
    .hero-slider-dots {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    
    .hero-slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .hero-slider-dots .dot.active {
        background: var(--gold);
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    
    /* Mobile Hero Badge */
    .hero-badge-mobile {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: 30px;
        margin-bottom: 20px;
    }
    
    .hero-badge-mobile i {
        color: var(--gold);
        font-size: 18px;
    }
    
    .hero-badge-mobile span {
        color: var(--gold);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    body.light-theme .hero-badge-mobile {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    }
    
    /* Mobile Hero Title */
    .hero-title-mobile {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
        color: var(--white);
    }
    
    body.light-theme .hero-title-mobile {
        color: #1A1A1A;
    }
    
    /* Service Tags */
    .hero-services-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 5px;
    }
    
    .service-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 20px;
        color: var(--white);
        font-size: 12px;
        font-weight: 500;
    }
    
    .service-tag i {
        color: var(--gold);
        font-size: 12px;
    }
    
    body.light-theme .service-tag {
        background: rgba(0, 0, 0, 0.05);
        color: #333;
    }
    
    /* Mobile Hero Buttons - Side by Side Full Width */
    .hero-buttons-mobile {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        padding: 0 10px;
        margin-top: 25px;
    }
    
    .hero-buttons-mobile .btn-mobile {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 15px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 12px !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .hero-buttons-mobile .btn-primary.btn-mobile {
        background: linear-gradient(135deg, var(--gold) 0%, #E5C158 50%, var(--gold) 100%);
        color: #000;
        border: none;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    
    .hero-buttons-mobile .btn-secondary.btn-mobile {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(212, 175, 55, 0.6);
    }
    
    body.light-theme .hero-buttons-mobile .btn-secondary.btn-mobile {
        color: #333;
        border-color: rgba(212, 175, 55, 0.8);
    }
    
    .hero-buttons-mobile .btn-mobile i {
        font-size: 14px;
    }
    
    .mobile-nav {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    /* Enhanced Hero Mobile Styles */
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
        padding: 100px 20px 120px;
        align-items: flex-start;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-badge {
        padding: 8px 18px;
        margin-bottom: 25px;
    }
    
    .hero-badge span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: clamp(32px, 10vw, 48px);
        line-height: 1.15;
        margin-bottom: 20px;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-title .highlight::after {
        height: 10px;
        bottom: 5px;
    }
    
    .hero-subtext {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 15px;
        line-height: 1.8;
    }
    
    .hero-subtext .divider {
        margin: 0 8px;
        opacity: 0.7;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    /* Hide old hero-buttons on mobile, we use hero-buttons-mobile now */
    .hero-buttons {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .modal-header,
    .modal-body {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile Hero Enhancements */
    .hero {
        padding: 100px 15px 110px;
    }
    
    .hero-images-mobile {
        max-width: 300px;
        margin-bottom: 25px;
    }
    
    .hero-slider {
        height: 240px;
    }
    
    .hero-title-mobile {
        font-size: 24px;
    }
    
    .hero-badge-mobile {
        padding: 8px 16px;
    }
    
    .hero-badge-mobile span {
        font-size: 12px;
    }
    
    .service-tag {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-badge {
        padding: 6px 14px;
        gap: 6px;
    }
    
    .hero-badge i {
        font-size: 12px;
    }
    
    .hero-badge span {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: clamp(28px, 9vw, 40px);
        margin-bottom: 18px;
    }
    
    .hero-subtext {
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    
    .hero-subtext .divider {
        display: none;
    }
    
    .hero-subtext span {
        position: relative;
        padding: 4px 0;
    }
    
    .hero-subtext span::after {
        content: '✦';
        position: absolute;
        right: -20px;
        color: var(--gold);
        font-size: 8px;
        opacity: 0;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .hero-buttons .btn {
        padding: 14px 8px;
        font-size: 12px;
        flex: 1;
    }
    
    /* Keep hero-buttons hidden at 480px too */
    .hero-buttons {
        display: none;
    }
    
    .hero-buttons-mobile {
        gap: 8px;
        padding: 0 8px;
    }
    
    .hero-buttons-mobile .btn-mobile {
        padding: 14px 10px;
        font-size: 13px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .package-card {
        padding: 35px 25px;
    }
    
    .review-card {
        min-width: 280px;
        padding: 30px;
    }
    
    /* Mobile Services Section */
    .services-grid {
        gap: 20px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    /* Mobile Packages Section */
    .packages-grid {
        gap: 25px;
    }
    
    .package-name {
        font-size: 22px;
    }
    
    .package-price .amount {
        font-size: 36px;
    }
    
    /* Mobile Gallery */
    .gallery-grid {
        gap: 10px;
    }
    
    .gallery-title {
        font-size: 12px;
    }
    
    /* Mobile Steps */
    .steps-container {
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    /* Mobile Reviews */
    .review-text {
        font-size: 14px;
    }
    
    /* Mobile CTA */
    .cta-title {
        font-size: 24px;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-title {
        font-size: 16px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero {
        padding: 90px 12px 100px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtext span {
        font-size: 12px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    /* Keep hero-buttons hidden at 375px */
    .hero-buttons {
        display: none;
    }
    
    .hero-buttons-mobile .btn-mobile {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .hero-buttons-mobile {
        gap: 6px;
        padding: 0 5px;
    }
    
    /* Extra small hero images */
    .hero-images-mobile {
        max-width: 280px;
    }
    
    .hero-slider {
        height: 200px;
    }
    
    .hero-title-mobile {
        font-size: 22px;
    }
    
    .hero-badge-mobile span {
        font-size: 11px;
    }
    
    .service-tag {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .hero-services-tags {
        gap: 8px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 100px 30px 30px;
}

body.light-theme .mobile-menu-overlay {
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-menu-overlay .nav-link {
    font-size: 22px;
    color: #fff;
}

body.light-theme .mobile-menu-overlay .nav-link {
    color: #333;
}

.mobile-menu-overlay .nav-cta {
    margin-top: 30px;
}

/* Mobile Menu Theme Toggle */
.mobile-menu-overlay .theme-toggle-header {
    margin-top: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FAFAFA;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body:not(.light-theme) .page-loader {
    background: #0A0A0A;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spark {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ============================================
   PREMIUM ENHANCEMENTS
   ============================================ */

/* Animated Gold Border */
.gold-border-glow {
    position: relative;
}

.gold-border-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-premium);
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    animation: shimmer 3s linear infinite;
}

/* Sparkle Cursor Effect */
.sparkle-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    animation: sparkle 0.8s ease-out forwards;
}

/* Premium Card Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, rgba(212, 175, 55, 0.1));
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--black-light);
    border-radius: inherit;
    z-index: -1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Premium Section Headers */
.section-header {
    position: relative;
    display: inline-block;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-premium);
    background-size: 200% auto;
    border-radius: 3px;
    animation: shimmer 2s linear infinite;
}

/* Floating Animation for Icons */
.float-icon {
    animation: float 3s ease-in-out infinite;
}

/* Premium Package Cards */
.package-card.featured {
    position: relative;
    overflow: hidden;
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-premium);
    background-size: 200% auto;
    animation: shimmer 2s linear infinite;
}

/* Light Theme Specific Styles */
body.light-theme {
    background: #FAFAFA;
}

body.light-theme .section {
    background: #FAFAFA;
}

body.light-theme .service-card,
body.light-theme .package-card,
body.light-theme .review-card {
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.light-theme .service-card::after {
    background: #FFFFFF;
}

body.light-theme .footer {
    background: #1A1A1A;
    color: #FFFFFF;
}

body.light-theme .modal-content {
    background: #FFFFFF;
}

body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .form-group textarea {
    background: #F5F5F5;
    border-color: #E0E0E0;
    color: #0A0A0A;
}

body.light-theme .mobile-bottom-nav {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .bottom-nav-item {
    color: #555;
}

body.light-theme .bottom-nav-item:hover,
body.light-theme .bottom-nav-item.active {
    color: var(--gold-dark);
}

/* Premium Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: goldPulse 3s infinite;
}

/* Animated Underline */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-premium);
    background-size: 200% auto;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Logo Glow */
.logo-text {
    position: relative;
}

.logo-text::after {
    content: 'SPARKD';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    filter: blur(10px);
    opacity: 0;
    transition: var(--transition);
}

.logo:hover .logo-text::after {
    opacity: 0.5;
}

.logo-sub {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Theme Toggle Premium */
.theme-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--black);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover {
    transform: scale(1.15) rotate(180deg);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.8);
}

.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: block; }

body.light-theme .theme-toggle .fa-sun { display: block; }
body.light-theme .theme-toggle .fa-moon { display: none; }

body.light-theme .theme-toggle {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: var(--gold);
}

@media (max-width: 768px) {
    .theme-toggle {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Particle Effect Container */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

body.light-theme .glass-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Image Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: var(--transition-slow);
}

.shine-effect:hover::after {
    left: 100%;
}

/* Stats Counter Animation */
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Magnetic Button Effect (applied via JS) */
.magnetic-btn {
    transition: transform 0.3s ease-out;
}

/* Service Icon Pulse */
.service-icon {
    animation: goldPulse 3s infinite;
}

.service-card:hover .service-icon {
    animation: float 1s ease-in-out infinite;
}

/* Gallery Masonry Enhancements */
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Review Stars Glow */
.stars {
    display: flex;
    gap: 5px;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Form Focus Effects */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), var(--shadow-gold);
}

/* Success Animation */
@keyframes success-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-icon {
    animation: success-bounce 0.5s ease;
}

/* Error Shake */
@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-shake {
    animation: error-shake 0.3s ease;
}
