* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --neon-blue: #00f0ff;
    --neon-green: #39ff14;
    --neon-pink: #ff00ff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav .container {
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    min-height: 70px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    min-height: 70px;
    position: relative;
}

.logo {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: bold;
    background: linear-gradient(270deg, #00f0ff, #ff00ff, #39ff14, #00f0ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--neon-blue);
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--neon-blue);
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes wave {
    0%, 100% { d: path("M 0 50 Q 25 40, 50 50 T 100 50"); }
    50% { d: path("M 0 50 Q 25 60, 50 50 T 100 50"); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.rotate-animation {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.slideIn-animation {
    animation: slideIn 1s ease-out forwards;
}

.bounceIn-animation {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.fadeInUp-animation {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slideInLeft-animation {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slideInRight-animation {
    animation: slideInRight 0.8s ease-out forwards;
}

.scaleIn-animation {
    animation: scaleIn 0.6s ease-out forwards;
}

.textGlow-animation {
    animation: textGlow 3s ease-in-out infinite;
}

.borderGlow-animation {
    animation: borderGlow 2s ease-in-out infinite;
}

.shimmer-animation {
    position: relative;
    overflow: hidden;
}

.shimmer-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.gradient-bg {
    background: linear-gradient(270deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1), rgba(57, 255, 20, 0.1));
    background-size: 600% 600%;
    animation: gradientShift 8s ease infinite;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.05), transparent 70%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.8));
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 0 0 40px rgba(255, 0, 255, 0.4), 0 0 60px rgba(255, 0, 255, 0.2);
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.3), inset 0 0 10px rgba(0, 240, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.2);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes orbitalRotate {
    from {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-blue);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.8), 0 0 100px rgba(0, 240, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(0, 240, 255, 0.8);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.geometric-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.1;
}

.line-1 {
    width: 100%;
    height: 1px;
    top: 20%;
    animation: slide-right 10s linear infinite;
}

.line-2 {
    width: 100%;
    height: 1px;
    top: 60%;
    animation: slide-left 12s linear infinite;
}

.line-3 {
    width: 1px;
    height: 100%;
    left: 30%;
    animation: slide-down 8s linear infinite;
}

@keyframes slide-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

@keyframes slide-left {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

@keyframes slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(100%); }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card:not(:has(.card-image-wrapper)) .card-content {
    padding: 2.5rem;
}

.card:not(:has(.card-image-wrapper)):not(:has(.neon-icon)) {
    padding: 2.5rem;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: all 0.5s ease;
    display: block;
}

.card-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.1) 0%, transparent 50%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.card:hover .card-image-wrapper::before {
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.2) 0%, transparent 50%, rgba(10, 10, 10, 0.2) 100%);
}

.card:hover .card-image-wrapper::after {
    left: 100%;
}

.card:hover .card-image {
    transform: scale(1.05);
    filter: brightness(1.15) saturate(1.2);
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.neon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
    animation: iconPulse 3s ease-in-out infinite;
}

.flag-icon {
    width: 90px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.4);
    animation: flagWave 4s ease-in-out infinite;
    border: 2px solid rgba(0, 240, 255, 0.3);
    position: relative;
}

.flag-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(0, 240, 255, 0.3), rgba(57, 255, 20, 0.3), rgba(255, 0, 255, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover .flag-icon::before {
    opacity: 1;
}

@keyframes flagWave {
    0%, 100% {
        transform: perspective(500px) rotateY(-8deg) rotateX(2deg) scale(1);
        box-shadow: 0 5px 20px rgba(0, 240, 255, 0.4);
    }
    25% {
        transform: perspective(500px) rotateY(0deg) rotateX(-2deg) scale(1.03);
        box-shadow: 0 7px 25px rgba(57, 255, 20, 0.5);
    }
    50% {
        transform: perspective(500px) rotateY(8deg) rotateX(2deg) scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 240, 255, 0.6), 0 0 20px rgba(57, 255, 20, 0.3);
    }
    75% {
        transform: perspective(500px) rotateY(0deg) rotateX(-2deg) scale(1.03);
        box-shadow: 0 7px 25px rgba(255, 0, 255, 0.5);
    }
}

.card:hover .flag-icon {
    animation: flagWave 2s ease-in-out infinite, flagFloat 3s ease-in-out infinite;
}

@keyframes flagFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.9)) drop-shadow(0 0 35px rgba(57, 255, 20, 0.5));
        transform: scale(1.08);
    }
}

.card:hover .neon-icon {
    animation: iconPulse 1.5s ease-in-out infinite, iconRotate 2s ease-in-out;
}

@keyframes iconRotate {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0);
    z-index: 0;
}

.card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.4), 0 0 30px rgba(0, 240, 255, 0.2);
}

.card:hover h3 {
    text-shadow: 0 0 15px currentColor;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.card h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '✓';
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--neon-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
    border-color: var(--neon-green);
}

.feature-item:hover .feature-icon::after {
    width: 100%;
    height: 100%;
}

.feature-item:hover .feature-icon::before {
    color: var(--bg-dark);
}

.feature-item h3 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.stat-card:hover::before {
    width: 300px;
    height: 300px;
}

.stat-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5), inset 0 0 20px rgba(255, 0, 255, 0.1);
    transform: scale(1.05) rotateZ(2deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.contact-form {
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form:hover::before {
    opacity: 1;
}

.contact-form:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    flex: 1;
}

.contact-form .form-group:has(textarea) {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group:has(textarea) textarea {
    flex: 1;
    min-height: 200px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.submit-button:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.6);
}

.map-container {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-green), var(--neon-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover::before {
    opacity: 1;
}

.map-container:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.2);
}

.map-container iframe {
    width: 100%;
    flex: 1;
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 10px;
    min-height: 450px;
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    border-color: var(--neon-green);
    box-shadow: 0 5px 25px rgba(57, 255, 20, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.info-item h3 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.info-item p {
    color: var(--text-secondary);
}

footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 50%, #0d0d0d 100%);
    padding: 4rem 0 1rem;
    border-top: 2px solid rgba(0, 240, 255, 0.3);
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-green), var(--neon-pink), transparent);
    opacity: 0.6;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), transparent);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-section p::before,
.footer-section a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover::before {
    opacity: 1;
    left: 5px;
}

.footer-section a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    padding-left: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    margin: 0.5rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 25px;
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-links a:hover::before {
    width: 200px;
    height: 200px;
}

.footer-links a:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: translateY(-3px);
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.footer-links a:active {
    transform: translateY(-1px);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.popup-overlay.hidden {
    display: none;
}

.popup-content {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
    max-height: 80vh;
    overflow-y: auto;
}

.popup-content h2 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.popup-button {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--neon-green);
    background: transparent;
    color: var(--neon-green);
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-button:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 120px;
}

.policy-content h2 {
    color: var(--neon-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    list-style-position: inside;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--neon-green);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}

.success-container h1 {
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.success-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    nav .container {
        padding: 0 25px;
        gap: 20px;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .menu-toggle {
        margin-left: auto;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: 2rem 1.5rem;
        gap: 0;
        transition: left 0.3s ease;
        border-bottom: 2px solid rgba(0, 240, 255, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-svg {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .cards-grid,
    .features-list,
    .stats-grid,
    .contact-info,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        width: 80%;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    nav .container {
        padding: 0 20px;
        gap: 15px;
    }
    
    nav {
        padding: 1rem 0;
        min-height: 60px;
    }
    
    header {
        min-height: 60px;
    }
    
    .nav-links {
        top: 60px;
        padding: 1.5rem 1rem;
        max-height: calc(100vh - 60px);
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.9rem 0;
    }
    
    .menu-toggle {
        padding: 6px;
        gap: 4px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
}

@media (max-width: 360px) {
    nav .container {
        padding: 0 15px;
        gap: 12px;
    }
    
    .logo {
        font-size: 1.1rem;
        max-width: 55%;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 320px) {
    nav .container {
        padding: 0 12px;
        gap: 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1rem;
        max-width: 50%;
    }
    
    nav {
        padding: 0.8rem 0;
        min-height: 55px;
    }
    
    header {
        min-height: 55px;
    }
    
    .nav-links {
        top: 55px;
        padding: 1.5rem 1rem;
        max-height: calc(100vh - 55px);
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }
    
    .menu-toggle {
        padding: 5px;
        gap: 3px;
    }
    
    .menu-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: 1.2rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .footer-links a {
        width: 90%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}
