* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #050510;
    background-image: radial-gradient(circle at 10% 20%, rgba(128, 0, 128, 0.08) 0%, rgba(0, 0, 0, 0.9) 90%);
    color: #f0f0f0;
    line-height: 1.5;
    overflow-x: hidden;
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
      border-radius: 50%;
    border: 2px solid #ffcc00;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.5);
    background: #111;
}

.logo-text-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 40px;

    animation: pulseGlow 2s infinite alternate;
}

.circle-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #1e1a2f;
    text-shadow: 0 0 2px white;
    background: rgba(0,0,0,0.2);
    padding: 0.4rem;
    border-radius: 40px;
    text-align: center;
}

/* Hamburger */
.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    z-index: 200;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffcc00;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 0 6px #ffcc00;
}

/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: rgba(10, 5, 25, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -5px 0 25px rgba(255, 204, 0, 0.2);
    border-left: 2px solid #ffcc00;
    padding: 2rem 1.8rem;
}

.overlay-menu.active {
    right: 0;
}

.menu-close {
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffcc00;
    text-align: right;
    cursor: pointer;
    margin-bottom: 3rem;
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-links li a {
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #f5f5f5;
    letter-spacing: 1px;
    transition: 0.2s;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.menu-links li a:hover, .menu-links li a.active {
    color: #ffcc00;
    text-shadow: 0 0 12px #ffcc00;
    border-bottom-color: #9b30ff;
    transform: translateX(6px);
}

/* BUTTON GLOW */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ffcc00, #b35ef0);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    color: #0a0a2a;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 12px #ffcc00;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 28px #ffcc00, 0 0 12px #b35ef0;
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.glow-text {
    text-shadow: 0 0 8px #ffcc00, 0 0 2px #9b30ff;
}

.highlight {
    color: #ffcc00;
    text-shadow: 0 0 12px #ffcc00;
}

.hero-content p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    opacity: 0.9;
}

.hero-stats {
    flex: 0.8;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.stat-card {
    background: rgba(20, 15, 45, 0.7);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    border-radius: 28px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.4);
    box-shadow: 0 0 15px rgba(155, 48, 255, 0.3);
    transition: 0.2s;
}

.stat-card i {
    font-size: 2rem;
    color: #ffcc00;
}

.stat-card h3 {
    font-size: 1.9rem;
    margin: 0.5rem 0;
}

/* Preview & Grids */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.glow-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #9b30ff);
    margin: 0.8rem auto;
    border-radius: 3px;
    box-shadow: 0 0 10px #ffcc00;
}

.preview-grid, .service-grid, .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: rgba(12, 8, 28, 0.7);
    backdrop-filter: blur(8px);
    padding: 1.8rem;
    border-radius: 28px;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.2);
    transition: 0.25s ease;
}

.service-card i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 1rem;
}

.service-card:hover, .glow-hover:hover {
    transform: translateY(-8px);
    border-color: #ffcc00;
    box-shadow: 0 0 28px rgba(255, 204, 0, 0.4);
}

/* Page Title */
.page-title {
    text-align: center;
    margin: 1rem 0 2.5rem;
}

.page-title h1 {
    font-size: 2.8rem;
}

/* Partner Cards */
.partner-card {
    background: rgba(0,0,0,0.45);
    border-radius: 30px;
    padding: 1.8rem;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid #9b30ff60;
    transition: 0.2s;
}

.partner-card i {
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 0.8rem;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(20,15,45,0.7);
    padding: 1.2rem;
    border-radius: 24px;
    border-left: 5px solid #ffcc00;
}

.contact-form {
    flex: 1.5;
    background: rgba(10,5,25,0.6);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input, .contact-form textarea {
    background: #0c0a1a;
    border: 1px solid #9b30ff;
    padding: 0.9rem;
    border-radius: 40px;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #ffcc00;
    outline: none;
    box-shadow: 0 0 12px #ffcc00;
}

/* Footer */
footer {
    margin-top: 4rem;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    text-align: center;
}

.social-links a {
    color: #ffcc00;
    font-size: 1.4rem;
    margin: 0 0.8rem;
    transition: 0.2s;
    display: inline-block;
}

.social-links a:hover {
    text-shadow: 0 0 12px #ffcc00;
    transform: scale(1.2);
}

/* Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 8px #ffcc00, 0 0 4px #9b30ff inset;
    }
    100% {
        box-shadow: 0 0 28px #ffcc00, 0 0 14px #b35ef0 inset;
    }
}

@media (max-width: 780px) {
    .site-wrapper {
        padding: 0 1rem;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .logo-text-circle {
        width: 100px;
        height: 100px;
    }
    .circle-text {
        font-size: 0.8rem;
    }
    .contact-section {
        flex-direction: column;
    }
}