:root {
    --bg-color: #050505;
    --neon-yellow: #FFEE00;
    --neon-gold: #FFD700;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-outfit: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-outfit);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-radial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
nav {
    padding: 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.logo-mini {
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--neon-gold);
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.crown-icon {
    color: var(--neon-gold);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    animation: bounce 3s infinite ease-in-out;
}

.neon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 2rem;
}

.line-1 {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--neon-yellow);
    text-shadow: 
        0 0 10px rgba(255, 238, 0, 0.5),
        0 0 40px rgba(255, 238, 0, 0.3),
        0 0 80px rgba(255, 238, 0, 0.2);
    animation: flicker 4s infinite alternate;
}

.line-2 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 15px;
    margin-top: -10px;
}

.line-3 {
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 5px;
    color: var(--text-muted);
}

.subtitle {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-glow {
    padding: 1rem 2.5rem;
    background: var(--neon-gold);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: var(--glass-bg);
}

/* Services Section */
.glass-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--neon-gold);
    margin: 0 auto;
    border-radius: 2px;
}

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

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Animations */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 238, 0, 0.5),
            0 0 40px rgba(255, 238, 0, 0.3),
            0 0 80px rgba(255, 238, 0, 0.2);
    }
    20%, 24%, 55% {
        text-shadow: none;
        color: rgba(255, 238, 0, 0.3);
    }
}

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

/* Ultra-Premium Pricing Section */
.pricing-premium {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle.bottom-text {
    text-align: center;
    color: var(--neon-gold);
    font-size: 1.2rem;
    margin-top: 4rem;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    perspective: 1000px;
}

.pricing-group.full-width {
    grid-column: 1 / -1;
}

.group-title {
    color: var(--neon-gold);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 4px;
}

/* Price Cards (Top Tier) */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
}

.price-card.vip {
    border-color: rgba(255, 215, 0, 0.2);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0.2));
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.price-card:hover .card-glow { opacity: 1; }

.price-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--neon-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.2);
}

.icon-wrap {
    font-size: 2.5rem;
    color: var(--neon-gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.price-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.price-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-yellow);
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 15px rgba(255, 238, 0, 0.4);
}

/* Price Rows (Standard Tiers) */
.price-rows {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s;
}

.price-row:last-child { border-bottom: none; }

.price-row .service-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.price-row .service-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-row .price-value {
    font-weight: 700;
    color: var(--neon-gold);
    font-size: 1.2rem;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 12px;
}

.price-row.highlighted {
    color: var(--neon-yellow);
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* Social Section */
.social-section {
    max-width: 1200px;
    margin: 2rem auto 6rem;
    padding: 0 2rem;
}

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

.social-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.social-card i {
    font-size: 2rem;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.social-card.instagram:hover { color: #E1306C; border-color: #E1306C; box-shadow: 0 0 20px rgba(225, 48, 108, 0.2); }
.social-card.whatsapp:hover { color: #25D366; border-color: #25D366; box-shadow: 0 0 20px rgba(37, 211, 102, 0.2); }
.social-card.location:hover { color: #ff3e3e; border-color: #ff3e3e; box-shadow: 0 0 20px rgba(255, 62, 62, 0.2); }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

footer {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.02);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review-form-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
}

.review-form-box h3 {
    color: var(--neon-gold);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.form-note {
    color: #00ff88;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-style: italic;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-form .form-group {
    display: flex;
    gap: 15px;
}

.review-form input, 
.review-form select, 
.review-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.4);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.review-form select {
    appearance: none;
    cursor: pointer;
}

.review-form input:focus, 
.review-form select:focus, 
.review-form textarea:focus {
    outline: none;
    border-color: var(--neon-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.review-form button {
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    max-width: 250px;
    margin-top: 10px;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,0,0,0.3));
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-author {
    font-weight: bold;
    color: white;
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--neon-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 5rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .neon-text .line-1 { font-size: 4rem; }
    .neon-text .line-2 { font-size: 3rem; letter-spacing: 5px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
    .social-cards { grid-template-columns: repeat(2, 1fr); }
}
