* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(125deg, #000 0%, #0a0a0a 50%, #1a1a1a 100%);
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #8B0000;
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.8);
}

/* Floating Navbar */
header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    padding: 0.6rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

header .header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.logo span {
    display: inline-block;
    transition: color 0.1s ease;
}

.logo img {
    height: 120px;
    width: 120px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    z-index: 1001;
    margin-top: 0;
    padding: 0.5rem 0;
    animation: dropdownFade 0.3s ease;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    margin: 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #ffffff;
    padding-left: 2rem;
}

.dropdown > a {
    cursor: pointer;
}

/* Section Styling */
section {
    min-height: 100vh;
    padding: 8rem 3rem 4rem 3rem;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Home Section */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

#home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1), transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

#home h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    animation: glow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
}

#home h1 span {
    display: inline-block;
    transition: color 0.1s ease;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(255, 255, 255, 0.5); }
}

#home .subtitle {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
}

#home .description {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 222, 128, 0.8);
    box-shadow: 0 20px 40px rgba(74, 222, 128, 0.3);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.8;
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.section-title span {
    display: inline-block;
    transition: color 0.1s ease;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.8;
}

/* About Section */
#about-us {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-left: 3px solid #4ade80;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.feature-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: #ffffff;
    line-height: 1.7;
    opacity: 0.8;
}

/* Team Section */
#team {
    background: #000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 222, 128, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: rgba(74, 222, 128, 0.8);
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.4);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    height: 250px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

.team-avatar img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.team-avatar.emoji-avatar {
    font-size: 6rem;
}

.team-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.team-card:hover .team-avatar::after {
    left: 100%;
}

.team-info {
    padding: 2rem;
    position: relative;
}

.team-info h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.team-info p {
    color: #ffffff;
    line-height: 1.7;
    opacity: 0.8;
}

/* Maps Section */
#maps {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.map-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 222, 128, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.map-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 222, 128, 0.8);
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.4);
}

.map-card:hover::before {
    opacity: 1;
}

.map-image {
    height: 250px;
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.map-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.map-content h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.map-content p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.8;
}

.tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
#contact {
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reviews-section h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.review-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4ade80;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: #4ade80;
    color: #000000;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.5);
    background: #22c55e;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
}

.star {
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.3);
}

.star:hover,
.star.active {
    color: #ffd700;
    transform: scale(1.2);
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 6rem;
}

.link-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.link-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 222, 128, 0.8);
    box-shadow: 0 20px 60px rgba(74, 222, 128, 0.4);
}

.link-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.link-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: #ffffff;
}

.link-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.link-overlay p {
    opacity: 0.9;
}

/* Footer */
footer {
    background: #000;
    color: #ffffff;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    header .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    nav a, .dropdown > a {
        margin: 0;
        font-size: 0.9rem;
    }

    .dropdown-content {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
    }

    #home h1 {
        font-size: 3rem;
    }

    #home .subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .maps-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 6rem 1.5rem 3rem 1.5rem;
    }
}