@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;family=Poppins:wght@300;400;500;600&amp;display=swap');

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

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --primary-purple: #8b4789;
    --gold: #d4af37;
    --gold-light: #f4cf47;
    --light-gold: #f0e6d2;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --shadow-light: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-dark: 0 10px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 50px rgba(212, 175, 55, 0.3);

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--primary-dark);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav a:hover, .nav a.active {
    color: var(--gold);
}

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


/* Hero Section ENHANCED */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(139, 71, 137, 0.15) 0%, transparent 70%);
}

/* Animated gradient background */
.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(212, 175, 55, 0.05) 50%, 
        transparent 70%);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Floating particles */
.hero-premium::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 71, 137, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(1deg); }
    75% { transform: translateY(20px) rotate(-1deg); }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: scale(1.1);
}

.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    animation: zoomPan 20s ease-in-out infinite alternate;
}

@keyframes zoomPan {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.2) translateX(-5%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, 
            rgba(10,10,10,0.7) 0%, 
            rgba(10,10,10,0.3) 50%, 
            rgba(10,10,10,0.9) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(10,10,10,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: heroEntry 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroEntry {
    from { 
        opacity: 0; 
        transform: translateY(60px) scale(0.9);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

.hero-title-premium {
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: goldShine 3s linear infinite;
    filter: drop-shadow(0 5px 25px rgba(212, 175, 55, 0.5));
}

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

.hero-subtitle-premium {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-description-premium {
    font-size: 1.1rem;
    color: var(--text-primary);
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

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

.btn-premium-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 5px 20px rgba(212, 175, 55, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

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

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

.btn-premium-gold:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 40px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.3);
}

/* Intro Section ENHANCED */
.intro-section {
    padding: 120px 0;
    background: var(--primary-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: lineGrow 2s ease-out;
}

@keyframes lineGrow {
    from { height: 0; }
    to { height: 100px; }
}

.intro-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
    position: relative;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out forwards;
}

@keyframes fadeInScale {
    to { 
        opacity: 1; 
        transform: scale(1);
    }
    from { 
        opacity: 0; 
        transform: scale(0.95);
    }
}

.intro-text::before,
.intro-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
}

.intro-text::before {
    top: -20px;
    left: -40px;
}

.intro-text::after {
    bottom: -40px;
    right: -40px;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.intro-feature-item {
    font-size: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    padding: 15px 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.intro-feature-item:nth-child(1) { animation-delay: 0.2s; }
.intro-feature-item:nth-child(2) { animation-delay: 0.4s; }
.intro-feature-item:nth-child(3) { animation-delay: 0.6s; }
.intro-feature-item:nth-child(4) { animation-delay: 0.8s; }

.intro-feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.intro-feature-item span {
    color: var(--gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Services Section ENHANCED */
.services-premium {
    padding: 120px 0;
    background: var(--secondary-dark);
    position: relative;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 20%, 
        var(--gold) 80%, 
        transparent 100%);
    opacity: 0.5;
}

.section-header-premium {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title-premium {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: transparent;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle-premium {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 30px;
    letter-spacing: 1px;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card-premium {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(18, 18, 18, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.3),
        0 0 100px rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.service-card-img-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.service-card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 100%);
    z-index: 1;
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9);
}

.service-card-premium:hover .service-card-img-wrapper img {
    transform: scale(1.1);
    filter: brightness(1);
}

.service-card-content {
    padding: 25px;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.service-card-duration {
    background: var(--gold);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 10px;
}

.service-card-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-service-book {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.btn-service-book:hover {
    color: var(--white);
}

/* Why Choose Us Section ENHANCED */
.why-premium {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gold) 0%, #f5f0e6 100%);
    position: relative;
    overflow: hidden;
}

.why-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.why-premium-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-premium-image {
    position: relative;
}

.why-premium-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.why-premium-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.2),
        0 0 100px rgba(212, 175, 55, 0.2);
    transition: transform 0.5s ease;
}

.why-premium-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.section-title-premium-dark {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle-premium-dark {
    font-size: 1.1rem;
    color: #5c5c5c;
    margin-bottom: 2.5rem;
}

.why-premium-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.why-premium-item h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-premium-item p {
    color: #5c5c5c;
    font-size: 0.95rem;
}

.btn-premium-gold-outline {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s;
}

.btn-premium-gold-outline:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--primary-dark);
    text-align: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
}

/* Footer Premium Redesign */
.footer-premium {
    position: relative;
    background: linear-gradient(180deg, var(--primary-dark) 0%, #000 100%);
    margin-top: 100px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 50px var(--gold);
}

/* Main Footer */
.footer-main {
    padding: 80px 0 60px;
    position: relative;
}

.footer-brand {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.footer-stars {
    font-size: 1.2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Footer CTA */
.footer-cta {
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-cta h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-cta p {
    color: var(--text-primary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-btn-call,
.footer-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.footer-btn-call {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.footer-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.footer-btn-call:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.footer-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
}

.footer-phone-display {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Info Grid */
.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.footer-info-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.footer-info-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.footer-info-card h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.service-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.footer-areas,
.footer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-item,
.feature-item {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.area-item:hover,
.feature-item:hover {
    color: var(--text-primary);
}

/* Bottom Bar */
.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-link,
.footer-link-special {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-link-special {
    color: var(--gold);
    font-weight: 500;
    padding: 5px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
}

.footer-link-special:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Animated Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particles span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
    opacity: 0;
}

.particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particles span:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particles span:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particles span:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particles span:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 14s;
}

@keyframes particleFloat {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(100px) scale(0.5);
    }
}

/* Letter Animation */
.hero-title-premium .letter {
    display: inline-block;
    animation: letterFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.hero-title-premium .letter:nth-child(1) { --index: 0; }
.hero-title-premium .letter:nth-child(2) { --index: 1; }
.hero-title-premium .letter:nth-child(3) { --index: 2; }
.hero-title-premium .letter:nth-child(4) { --index: 3; }
.hero-title-premium .letter:nth-child(5) { --index: 4; }
.hero-title-premium .letter:nth-child(6) { --index: 5; }
.hero-title-premium .letter:nth-child(7) { --index: 6; }
.hero-title-premium .letter:nth-child(8) { --index: 7; }
.hero-title-premium .letter:nth-child(9) { --index: 8; }
.hero-title-premium .letter:nth-child(10) { --index: 9; }
.hero-title-premium .letter:nth-child(11) { --index: 10; }
.hero-title-premium .letter:nth-child(12) { --index: 11; }
.hero-title-premium .letter:nth-child(13) { --index: 12; }
.hero-title-premium .letter:nth-child(14) { --index: 13; }
.hero-title-premium .letter:nth-child(15) { --index: 14; }
.hero-title-premium .letter:nth-child(16) { --index: 15; }
.hero-title-premium .letter:nth-child(17) { --index: 16; }
.hero-title-premium .letter:nth-child(18) { --index: 17; }
.hero-title-premium .letter:nth-child(19) { --index: 18; }
.hero-title-premium .letter:nth-child(20) { --index: 19; }

@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-10px) rotateZ(-3deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
    100% { top: 8px; opacity: 1; }
}

/* WhatsApp Enhanced */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 
        0 5px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 
            0 5px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 
            0 5px 20px rgba(37, 211, 102, 0.4),
            0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 
            0 5px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-icon-svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Page Transitions */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.hero-premium {
    position: relative;
}

.hero-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 10;
    animation: revealPage 1.5s ease-out forwards;
    pointer-events: none;
}

@keyframes revealPage {
    0% {
        transform: scaleY(1);
        transform-origin: top;
    }
    100% {
        transform: scaleY(0);
        transform-origin: top;
    }
}

/* Service Cards Stagger Animation */
.service-card-premium {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-premium.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card-premium:nth-child(1) { transition-delay: 0.1s; }
.service-card-premium:nth-child(2) { transition-delay: 0.2s; }
.service-card-premium:nth-child(3) { transition-delay: 0.3s; }
.service-card-premium:nth-child(4) { transition-delay: 0.4s; }

/* Mouse Glow Effect */
body {
    cursor: none;
}

.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-premium-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title-premium .letter {
        animation: none;
    }
    
    /* Footer adjustments */
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container-wide { padding: 0 25px; }
    .header .container { flex-direction: column; gap: 1rem; }
    
    .hero-premium { min-height: 600px; }
    .hero-title-premium { font-size: 2.5rem; }
    .hero-subtitle-premium { font-size: 1rem; letter-spacing: 1px; }
    .hero-description-premium { font-size: 0.95rem; }

    .intro-features { gap: 1rem; flex-direction: column; }
    .intro-text { font-size: 1.3rem; }
    .intro-text::before, .intro-text::after { font-size: 2.5rem; }
    
    .services-premium-grid { grid-template-columns: 1fr; }
    .section-title-premium, .section-title-premium-dark { font-size: 2rem; }
    
    .particles { display: none; }
    .cursor-glow { display: none; }
    body { cursor: auto; }
    
    .btn-premium-gold { padding: 16px 35px; font-size: 1rem; }
    
    /* Footer Mobile */
    .footer-logo { font-size: 2.5rem; }
    .footer-tagline { font-size: 1rem; }
    
    .footer-cta {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .footer-cta h3 { font-size: 1.5rem; }
    .footer-cta p { font-size: 1rem; }
    
    .footer-contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-btn-call,
    .footer-btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
    
    .footer-phone-display {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .footer-info-card {
        padding: 25px;
        text-align: center;
    }
    
    .footer-service-tags {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-separator {
        display: none;
    }
    
    .footer-link-special {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}
