:root {
    /* Colors */
    --clr-black: #050505;
    --clr-dark-bg: #0B0B0B;
    --clr-dark-brown: #1A120B;
    --clr-gold: #D4AF37;
    --clr-gold-light: #F3E5AB;
    --clr-gold-dark: #AA8B2C;
    --clr-white: #F8F8F8;
    --clr-gray: #A0A0A0;
    
    /* Gradients */
    --grad-gold: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --grad-dark: linear-gradient(to bottom, var(--clr-dark-bg), var(--clr-dark-brown));
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--clr-black);
}

body {
    font-family: var(--font-body);
    color: var(--clr-white);
    background: var(--grad-dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.text-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--clr-black);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--clr-gold);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
    padding: 0.5rem 1.5rem;
}

.btn-outline:hover {
    background: var(--grad-gold);
    color: var(--clr-black);
    border-color: transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    height: 50px;
    object-fit: contain;
}

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

.nav-links a:not(.btn) {
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--clr-gold);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--clr-gold-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulsing 1.5s infinite;
}

@keyframes pulsing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.brand-name {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--clr-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections General */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--clr-gold);
}

.section-header p {
    color: var(--clr-gray);
    font-size: 1.05rem;
}

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

.service-card {
    background: rgba(26, 18, 11, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--clr-white);
}

/* Coming Soon Message Box */
.coming-soon-message {
    padding: 4rem 0;
}

.coming-soon-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 18, 11, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.coming-soon-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--clr-gold-light);
    margin-bottom: 1rem;
}

.coming-soon-box p {
    color: var(--clr-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Portfolio Highlight */
.portfolio {
    text-align: center;
    position: relative;
}

.portfolio .container {
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.3"/></svg>') repeat;
    background-size: 20px 20px;
    padding: 5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.portfolio h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--clr-gold);
}

.portfolio p {
    color: var(--clr-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(26, 18, 11, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--clr-white);
    text-decoration: none;
    transition: var(--transition);
    gap: 1.5rem;
}

.contact-item:hover {
    background: rgba(26, 18, 11, 0.9);
    border-color: var(--clr-gold);
    transform: translateY(-3px);
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover .icon-circle {
    background: var(--grad-gold);
    color: var(--clr-black);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: white;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.phone-numbers {
    flex-direction: row;
}

.phone-numbers .numbers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.numbers a {
    color: var(--clr-white);
    text-decoration: none;
    transition: color 0.2s;
}

.numbers a:hover {
    color: var(--clr-gold);
}

/* Footer */
footer {
    background: var(--clr-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--clr-gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--clr-gray);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icon:hover {
    background: var(--grad-gold);
    color: var(--clr-black);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    background: #000;
    color: var(--clr-gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
