:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #cca43b;
    --whatsapp-color: #25D366;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow: hidden;
    overflow-x: hidden;
    height: 100vh;
    max-width: 100%;
    position: relative;
}

/* Main Layout */
.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Left Side: Content */
.content-section {
    position: relative;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-color);
}

.accent {
    color: var(--accent-color);
}

/* Main Content */
.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
    will-change: opacity, transform;
}

.tagline {
    display: inline-block;
    background: rgba(204, 164, 59, 0.2);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(204, 164, 59, 0.3);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(120deg, var(--accent-color), #fcd34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--whatsapp-color);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    will-change: transform;
}

.whatsapp-btn:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

/* Footer Info */
.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-info .item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-info .item i {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: var(--transition);
    opacity: 0.7;
    will-change: transform;
}

.social-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-2px);
}

/* Right Side: Map */
.map-section {
    height: 100%;
    width: 100%;
}

.map-section iframe {
    filter: none;
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    will-change: transform;
}

.scroll-indicator i {
    color: var(--accent-color);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,

    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    body {
        overflow: auto;
        overflow-x: hidden;
        height: auto;
    }

    .content-section {
        min-height: 100vh;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
        padding-top: 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .map-section {
        height: 400px;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 3rem;
        width: 100%;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.4rem;
        white-space: nowrap;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    p {
        font-size: 1rem;
    }
}