:root {
    --primary-bg: #0f172a;
    --secondary-bg: #1e293b;
    --accent-gold: #d4af37;
    --accent-gold-hover: #c5a028;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Background Blobs for Glassmorphism effect */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: #1e3a8a; /* Deep blue */
}

.blob-2 {
    bottom: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.2); /* Goldish */
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: #0ea5e9; /* Light blue accent */
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.fallback-logo {
    width: 50px;
    height: 50px;
    background: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.contact-quick {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.phone-stack {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-quick a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.contact-quick a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.contact-quick i {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 5%;
    position: relative;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle strong {
    color: var(--text-light);
}

/* Action Container (Notify Box) */
.action-container {
    animation: fadeInUp 1s ease-out 0.6s both;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.spam-notice {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer Section */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4rem 5% 1.5rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-item h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }
    
    .brand-logo {
        height: 50px;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .contact-quick a {
        padding: 0.5rem;
        background: transparent;
        border: none;
    }
    
    .contact-quick a span {
        display: none;
    }
    
    .contact-quick i {
        font-size: 1.2rem;
    }

    .hero {
        padding: 4rem 5%;
    }

    .title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.2rem;
    }
    
    .badge {
        font-size: 0.75rem;
    }
}
