* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a0033, #330066, #4d0099);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
}

.logo-header {
    margin-bottom: 15px;
}

.logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(77, 0, 153, 0.75), rgba(26, 0, 51, 0.85));
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.primary {
    background: #00ff88;
    color: #1a0033;
    font-weight: bold;
}

.primary:hover {
    transform: scale(1.08);
    background: #00cc6a;
}

.secondary {
    background: transparent;
    border: 3px solid white;
    color: white;
}

.secondary:hover {
    background: white;
    color: #330066;
}

/* Services */
.services {
    padding: 80px 0;
    background: rgba(255,255,255,0.08);
}

.pricing {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.price-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    width: 320px;
    text-align: center;
    transition: transform 0.4s;
    backdrop-filter: blur(10px);
}

.price-card:hover {
    transform: translateY(-15px);
}

.price-card.featured {
    background: linear-gradient(145deg, #6a00ff, #00ff88);
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(106, 0, 255, 0.4);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 15px 0;
    color: #00ff88;
}

.price-card ul {
    list-style: none;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Occasions */
.occasions {
    padding: 80px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 18px;
    transition: 0.3s;
}

.card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 20px;
    color: #00ffcc;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: rgba(0,0,0,0.4);
    text-align: center;
}

.address {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
    max-width: 500px;
}

.map-link {
    display: inline-block;
    margin-top: 20px;
    color: #00ff88;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    background: rgba(0,0,0,0.6);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 90%;
        max-width: 300px;
    }
    .pricing {
        flex-direction: column;
        align-items: center;
    }
}