:root {
    --primary: #2ed3b7;
    --primary-dark: #24b29a;
    --bg-dark: #0a0d14;
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(at 0% 0%, hsla(170, 65%, 41%, 0.15) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(170, 65%, 41%, 0.1) 0, transparent 50%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 211, 183, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--text-light);
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* Header */
.header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    width: 100%;
    max-width: 1200px;
    border-radius: 9999px;
}

.logo img {
    height: 32px;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.login-link {
    font-size: 0.85rem;
    font-weight: 500;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 13, 20, 0.4) 0%, rgba(10, 13, 20, 0.8) 100%);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(46, 211, 183, 0.1);
    border: 1px solid rgba(46, 211, 183, 0.2);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon img {
    width: 30px;
    height: 30px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.icon-wa {
    animation-delay: 0s;
}

.icon-ig {
    animation-delay: 1s;
}

.icon-msgr {
    animation-delay: 2s;
}

.icon-emoji1 {
    animation-delay: 3s;
    font-size: 2rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.icon-emoji2 {
    animation-delay: 4s;
    font-size: 2rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.icon-emoji3 {
    animation-delay: 5s;
    font-size: 2rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

/* Footer Refined */
.footer {
    padding: 10rem 2rem 4rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 13, 20, 1) 0%, transparent 100%);
    z-index: -2;
}

.footer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: brightness(0.5);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #111820;
    border-radius: 40px;
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 6rem;
}

.newsletter {
    flex: 0 0 350px;
}

.newsletter h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.input-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.mail-icon {
    font-size: 1rem;
    margin-left: 1rem;
    opacity: 0.5;
}

.input-group input {
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    flex: 1;
    outline: none;
    font-size: 0.9rem;
}

.btn-icon {
    background: var(--primary);
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--bg-dark);
}

.footer-grid {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.link-col h4 {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.link-col a {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.community-col {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo {
    height: 28px;
    margin-bottom: 1.5rem;
}

.community-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-icons img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.footer-locations {
    margin-bottom: 5rem;
}

.footer-locations h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-card {
    height: 220px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
}

.country {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.country img {
    width: 20px;
    height: auto;
}

.location-card p {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 300px;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 1200px) {
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .newsletter {
        flex: none;
    }

    .footer-grid {
        justify-content: flex-start;
        gap: 4rem;
    }

    .community-col {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-container {
        padding: 4rem 2rem;
    }
}