:root {
    --primary-color: #fdb913;
    --secondary-color: #e8910d;
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --text-main: #ffffff;
    --text-dim: #cccccc;
    --whatsapp-green: #25d366;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
}

.section {
    padding: 100px 0;
}

.grid {
    display: grid;
    gap: 40px;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(253, 185, 19, 0.2);
}

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

#nav-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero h1, .hero p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.hero h1.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero p.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 900px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.scroll-indicator {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out 1.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator.animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Brand Hero Section */
.brand-hero {
    min-height: 80vh;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.brand-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.brand-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.brand-logo-large img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(253, 185, 19, 0.3);
}

.brand-hero h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

/* Legacy & Identity */
.legacy-grid, .identity-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 80px;
}

.legacy-text h3, .identity-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.category {
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.legacy-image img, .identity-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(253, 185, 19, 0.1);
}

/* Why Choose Section */
.why-section {
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
}

.why-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
}

.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.why-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.1);
}

.why-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.why-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.quote-container {
    margin-top: 80px;
    text-align: center;
}

.script-text {
    font-family: 'Satisfy', cursive;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--primary-color);
    text-transform: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(232, 145, 13, 0.1)), url('https://images.unsplash.com/photo-1581291417004-a385f610d24b?auto=format&fit=crop&q=80&w=1920') center/cover;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #050505;
    padding-bottom: 20px;
}

.footer-grid {
    grid-template-columns: 1fr 1.5fr;
}

.footer-logo img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.info-item h5 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.8rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: var(--whatsapp-green);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

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

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .legacy-grid, .identity-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .identity-grid .identity-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .legacy-text h3, .identity-text h3 {
        font-size: 1.8rem;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 15px;
        border-radius: 50%;
    }
}
