/* Ultra-Vibrant Color Variables */
:root {
    --neon-purple: #8b45ff;
    --neon-purple-dark: #6d28d9;
    --neon-purple-darker: #4c1d95;
    --neon-orange: #ff6b35;
    --neon-orange-dark: #e55a2b;
    --neon-teal: #06b6d4;
    --neon-green: #10b981;
    --neon-pink: #ec4899;
    --neon-blue: #3b82f6;
    --neon-yellow: #fbbf24;
    --gradient-neon: linear-gradient(135deg, #8b45ff 0%, #ff6b35 25%, #06b6d4 50%, #ec4899 75%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #8b45ff 0%, #ff6b35 20%, #06b6d4 40%, #ec4899 60%, #fbbf24 80%, #10b981 100%);
    --gradient-nav: linear-gradient(135deg, #8b45ff 0%, #6d28d9 30%, #4c1d95 70%, #1e1b4b 100%);
    --shadow-neon: 0 0 20px rgba(139, 69, 255, 0.5), 0 0 40px rgba(255, 107, 53, 0.3), 0 0 60px rgba(6, 182, 212, 0.2);
    --shadow-neon-hover: 0 0 30px rgba(139, 69, 255, 0.8), 0 0 60px rgba(255, 107, 53, 0.5), 0 0 90px rgba(6, 182, 212, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-20px) translateY(-10px) rotate(1deg); }
    50% { transform: translateX(20px) translateY(10px) rotate(-1deg); }
    75% { transform: translateX(-10px) translateY(20px) rotate(0.5deg); }
}

/* Enhanced Animation Keyframes */
@keyframes neonGlow {
    0%, 100% {
        text-shadow: 
            0 0 5px var(--neon-purple),
            0 0 10px var(--neon-purple),
            0 0 15px var(--neon-purple),
            0 0 20px var(--neon-purple);
        box-shadow: 
            0 0 5px var(--neon-purple),
            0 0 10px var(--neon-purple),
            0 0 15px var(--neon-purple),
            0 0 20px var(--neon-purple);
    }
    25% {
        text-shadow: 
            0 0 5px var(--neon-orange),
            0 0 10px var(--neon-orange),
            0 0 15px var(--neon-orange),
            0 0 20px var(--neon-orange);
        box-shadow: 
            0 0 5px var(--neon-orange),
            0 0 10px var(--neon-orange),
            0 0 15px var(--neon-orange),
            0 0 20px var(--neon-orange);
    }
    50% {
        text-shadow: 
            0 0 5px var(--neon-teal),
            0 0 10px var(--neon-teal),
            0 0 15px var(--neon-teal),
            0 0 20px var(--neon-teal);
        box-shadow: 
            0 0 5px var(--neon-teal),
            0 0 10px var(--neon-teal),
            0 0 15px var(--neon-teal),
            0 0 20px var(--neon-teal);
    }
    75% {
        text-shadow: 
            0 0 5px var(--neon-pink),
            0 0 10px var(--neon-pink),
            0 0 15px var(--neon-pink),
            0 0 20px var(--neon-pink);
        box-shadow: 
            0 0 5px var(--neon-pink),
            0 0 10px var(--neon-pink),
            0 0 15px var(--neon-pink),
            0 0 20px var(--neon-pink);
    }
}

@keyframes rainbowGlow {
    0% { filter: hue-rotate(0deg) brightness(1.2); }
    100% { filter: hue-rotate(360deg) brightness(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatCenter {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--gradient-nav);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-neon);
    backdrop-filter: blur(20px);
    animation: slideInFromTop 0.8s ease-out;
    border-bottom: 2px solid rgba(139, 69, 255, 0.3);
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.tagline {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    display: block;
    margin-top: -5px;
    text-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}


.nav-link:hover,
.nav-link.active {
    color: var(--neon-orange);
    background: rgba(255, 107, 53, 0.2);
    text-shadow: 0 0 10px var(--neon-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-orange));
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 100px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp 1.2s ease-out 0.6s both;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease-out 0.8s both;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-neon);
    animation: shimmer 3s ease-in-out infinite;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: var(--neon-orange);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-orange);
    text-shadow: 0 0 20px var(--neon-orange);
    margin-bottom: 0.3rem;
    animation: pulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out 1s both;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.trust-indicators {
    animation: fadeInUp 1.2s ease-out 1.2s both;
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.trust-logos {
    display: flex;
    gap: 1rem;
}

.trust-logo {
    font-size: 2.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.trust-logo:hover {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px var(--neon-orange));
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-visual {
    position: relative;
    width: 450px;
    height: 450px;
    overflow: visible;
}

.central-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 5rem;
    color: #ffffff;
    animation: floatCenter 3s ease-in-out infinite, neonGlow 2s ease-in-out infinite;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px var(--neon-teal), 0 0 60px var(--neon-teal);
    filter: drop-shadow(0 0 15px var(--neon-teal));
    margin: 0;
    padding: 0;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.floating-card:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.floating-card i {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px var(--neon-teal), 0 0 30px var(--neon-purple);
    filter: drop-shadow(0 0 10px var(--neon-teal));
}

.card-1 {
    top: 2%;
    left: 2%;
    animation-delay: 0s;
}

.card-2 {
    top: 2%;
    right: 2%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 2%;
    left: 2%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 2%;
    right: 2%;
    animation-delay: 3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-orange-dark) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--neon-orange-dark) 0%, #d44d1f 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 3px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--neon-purple);
    border: 3px solid var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.btn-outline:hover {
    background-color: var(--neon-purple);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(139, 69, 255, 0.5);
}

.btn-full {
    width: 100%;
}

.btn-discord {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752c4 0%, #3c45a5 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(88, 101, 242, 0.6);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 900;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-orange) 50%, var(--neon-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 69, 255, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-neon);
    animation: shimmer 3s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-neon-hover);
    border-color: var(--neon-orange);
}

.service-icon {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px var(--neon-purple), 0 0 45px var(--neon-teal);
    filter: drop-shadow(0 0 12px var(--neon-purple));
}

.service-card:hover .service-icon {
    animation: rotate 2s ease-in-out infinite, neonGlow 1s ease-in-out infinite;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px var(--neon-teal), 0 0 60px var(--neon-purple);
    filter: drop-shadow(0 0 15px var(--neon-teal));
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.service-card p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-card li {
    padding: 0.8rem 0;
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.service-card li:before {
    content: "✓";
    color: var(--neon-green);
    font-weight: bold;
    margin-right: 0.8rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.service-card.featured {
    border: 3px solid var(--neon-orange);
    transform: scale(1.05);
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.service-badge {
    position: absolute;
    top: -2px;
    right: 25px;
    background: var(--gradient-neon);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-orange);
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    border: 2px solid var(--neon-orange);
    margin-top: 1.5rem;
    text-shadow: 0 0 15px var(--neon-orange);
    animation: pulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    animation: float 12s ease-in-out infinite;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 900;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, var(--neon-teal) 0%, var(--neon-pink) 50%, var(--neon-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-neon-hover);
    border-color: var(--neon-teal);
}

.feature-item i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: float 5s ease-in-out infinite;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px var(--neon-teal), 0 0 45px var(--neon-purple);
    filter: drop-shadow(0 0 12px var(--neon-teal));
}

.feature-item:hover i {
    animation: bounce 1s ease-in-out infinite, neonGlow 1s ease-in-out infinite;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px var(--neon-pink), 0 0 60px var(--neon-teal);
    filter: drop-shadow(0 0 15px var(--neon-pink));
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-item p {
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* About Section */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 69, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-orange) 50%, var(--neon-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 69, 255, 0.5);
}

.about-text p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.3);
    border-color: var(--neon-purple);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-shadow: 0 0 20px var(--neon-purple);
    animation: pulse 2s ease-in-out infinite;
}

.stat p {
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-center {
    font-size: 12rem;
    color: var(--neon-purple);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 0 50px var(--neon-purple);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    animation: float 14s ease-in-out infinite;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 900;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, var(--neon-teal) 0%, var(--neon-pink) 50%, var(--neon-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    position: relative;
    z-index: 1;
}

.contact .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: fadeInLeft 1s ease-out;
    border: 2px solid rgba(255,255,255,0.1);
}

.contact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: var(--shadow-neon-hover);
    border-color: var(--neon-teal);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--neon-teal);
    width: 60px;
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 0 20px var(--neon-teal);
}

.contact-item:hover i {
    animation: bounce 1s ease-in-out infinite;
    color: var(--neon-pink);
    text-shadow: 0 0 30px var(--neon-pink);
}

.contact-item h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.contact-item p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    font-weight: 500;
}

.discord-item {
    border-color: #5865f2 !important;
    background: rgba(88, 101, 242, 0.1) !important;
}

.discord-item:hover {
    border-color: #4752c4 !important;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4) !important;
}

.discord-item i {
    color: #5865f2 !important;
    text-shadow: 0 0 20px #5865f2 !important;
}

.discord-item:hover i {
    color: #4752c4 !important;
    text-shadow: 0 0 30px #4752c4 !important;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752c4 0%, #3c45a5 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    color: white;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.form-section {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.form-section:nth-child(1) {
    animation-delay: 0.1s;
}

.form-section:nth-child(2) {
    animation-delay: 0.2s;
}

.form-section:nth-child(3) {
    animation-delay: 0.3s;
}

.form-section:nth-child(4) {
    animation-delay: 0.4s;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon);
    animation: shimmer 4s ease-in-out infinite;
}

.form-section h3 {
    margin-bottom: 2rem;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-teal);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    background: rgba(255,255,255,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    animation: float 18s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--neon-orange);
    font-weight: 700;
    text-shadow: 0 0 15px var(--neon-orange);
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    display: inline-block;
    margin: 0.2rem 0;
}

.footer-section a:hover {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--gradient-nav);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-neon);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 90%;
        margin: 0 auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0.8rem 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        flex: 1 1 auto;
        min-width: 150px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 100px;
        padding: 1rem 0.8rem;
        flex: 1 1 auto;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .hero {
        overflow: visible;
        padding: 80px 0 60px;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
        min-width: 320px;
        height: 320px;
        margin: 0 auto;
        padding: 10px;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .central-icon {
        font-size: 3.5rem;
    }

    .floating-card {
        padding: 0.8rem;
        font-size: 0.75rem;
        min-width: 0;
        max-width: calc(50% - 10px);
    }

    .floating-card i {
        font-size: 1.2rem;
    }

    .floating-card span {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .card-1,
    .card-3 {
        left: 5px !important;
        right: auto !important;
    }

    .card-2,
    .card-4 {
        right: 5px !important;
        left: auto !important;
    }

    .card-1,
    .card-2 {
        top: 5px !important;
        bottom: auto !important;
    }

    .card-3,
    .card-4 {
        bottom: 5px !important;
        top: auto !important;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card,
    .feature-item {
        padding: 1.5rem;
    }

    .service-icon,
    .feature-item i {
        font-size: 3rem;
    }

    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .section-subtitle {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .services h2,
    .features h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .quote-form {
        gap: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0.7rem 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.7rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .hero-visual {
        width: 100%;
        max-width: 100%;
        min-width: 280px;
        height: 280px;
        margin: 0 auto;
        padding: 8px;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .central-icon {
        font-size: 2.5rem;
    }

    .floating-card {
        padding: 0.6rem;
        font-size: 0.65rem;
        border-radius: 12px;
        min-width: 0;
        max-width: calc(50% - 8px);
    }

    .floating-card i {
        font-size: 1rem;
    }

    .floating-card span {
        font-size: 0.6rem;
        white-space: nowrap;
    }

    .card-1,
    .card-3 {
        left: 4px !important;
        right: auto !important;
    }

    .card-2,
    .card-4 {
        right: 4px !important;
        left: auto !important;
    }

    .card-1,
    .card-2 {
        top: 4px !important;
        bottom: auto !important;
    }

    .card-3,
    .card-4 {
        bottom: 4px !important;
        top: auto !important;
    }

    .services,
    .features,
    .about,
    .contact {
        padding: 40px 0;
    }

    .services h2,
    .features h2,
    .about-text h2,
    .contact h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0.7rem 0.9rem;
        margin-bottom: 2rem;
    }

    .service-card,
    .feature-item {
        padding: 1.2rem;
    }

    .service-card h3,
    .feature-item h3 {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

    .service-card p,
    .feature-item p {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .service-icon,
    .feature-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        padding: 1rem;
    }

    .stats {
        gap: 1rem;
    }

    .stat {
        padding: 1.5rem 1rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .stat p {
        font-size: 1rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .form-section {
        padding: 1.2rem;
    }

    .form-section h3 {
        font-size: 1.2rem;
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.9rem;
        padding: 0.4rem 0.7rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section p {
        font-size: 1rem;
    }
}