:root {
    --primary: #0b0f17;
    --secondary: #131827;
    --accent: #22c55e;
    /* Happy green */
    --accent-light: #4ade80;
    /* Lighter happy green */
    --text: #f8fafc;
    --text-secondary: #cbd5e1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background-color: rgba(11, 15, 23, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    vertical-align: middle;
}

.logo-accent {
    color: var(--accent);
    margin-right: 5px;
}

nav ul {
    /* Remove display: flex here, let .desktop-nav handle it */
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at 50% 50%, var(--secondary) 0%, var(--primary) 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBzdHJva2ZTb2NrbGV0PSIjZmZmIiBzdHJva2Utb3BhY2l0eT0iMC4xIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMC41Ij48cGF0aCBkPSJNNDUgMTVIMTV2MzBoMzBWMzBINXYtMTVoNDB6Ii8+PC9nPjwvc3ZnPg==');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background-color: var(--secondary);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: linear-gradient(145deg, rgba(19, 24, 39, 0.8) 0%, rgba(11, 15, 23, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.package-header {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-body {
    padding: 25px;
}

.package-features {
    list-style-type: none;
    margin: 20px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin: 25px 0;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(19, 24, 39, 0.5) 0%, rgba(11, 15, 23, 0.5) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Locations Section */
.locations {
    padding: 100px 0;
    background-color: var(--secondary);
    text-align: center;
}

.locations .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.locations .container {
    text-align: center;
}

.location-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.location-card {
    background: linear-gradient(145deg, rgba(19, 24, 39, 0.5) 0%, rgba(11, 15, 23, 0.5) 100%);
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

/* Team Section Styles */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    background: linear-gradient(145deg, rgba(19, 24, 39, 0.5) 0%, rgba(11, 15, 23, 0.5) 100%);
    border-radius: 20px;
    padding: 30px 25px;
    width: 260px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.15);
}

.member-photo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.team-member h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 8px;
}

/* About Cards Design */
.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.about-card {
    background: linear-gradient(145deg, rgba(19, 24, 39, 0.5) 0%, rgba(11, 15, 23, 0.5) 100%);
    border-radius: 20px;
    padding: 30px 25px;
    width: 260px;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 32px rgba(34, 197, 94, 0.15);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.about-card-title {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.core-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.core-values-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: var(--primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-logo {
    height: 50px;
    width: 50px;
    margin-bottom: 10px;
    display: block;
}

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

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Desktop styles */
.desktop-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul {
    /* Remove display: flex here, let .desktop-nav handle it */
    list-style: none;
    margin: 0;
    padding: 0;
}

.hamburger,
.mobile-menu {
    display: none;
}

/* Mobile styles */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 2rem;
        cursor: pointer;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70vw;
        height: 100vh;
        background: #111;
        color: #fff;
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 2rem 1.5rem;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu .close-btn {
        align-self: flex-end;
        font-size: 2rem;
        cursor: pointer;
        margin-bottom: 2rem;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
    }

    .mobile-menu ul li {
        margin: 1.5rem 0;
    }

    .mobile-menu ul li a {
        color: #fff;
        font-size: 1.2rem;
        text-decoration: none;
    }
}