@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #0a0f1e;
    --bg-card: rgba(15, 23, 42, 0.65);
    --primary: #38bdf8;
    --primary-glow: rgba(56, 189, 248, 0.4);
    --border-glow: rgba(56, 189, 248, 0.25);
    --text-light: #f1f5f9;
    --text-dim: #94a3b8;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
}

/* Premium Orb Background */
.orb-bg {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
    filter: blur(90px);
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
    animation: orbMove 20s infinite alternate;
}

@keyframes orbMove {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(10%, 15%) scale(1.2); opacity: 0.8; }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-glow);
    transition: all 0.3s;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    background: none;
    color: #38bdf8;
    text-shadow: 0 0 8px #38bdf8;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 28px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
}

nav a:hover {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-badge {
    background: rgba(56, 189, 248, 0.15);
    padding: 6px 18px;
    border-radius: 40px;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#typing {
    color: #38bdf8;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.cursor-blink {
    color: #38bdf8;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.btn {
    padding: 14px 34px;
    background: linear-gradient(95deg, #38bdf8, #a855f7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px rgba(56, 189, 248, 0.4);
    letter-spacing: 0.5px;
}

.container {
    padding: 100px 8%;
}

h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.glass-card, .card, .skill-card, .pay-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    padding: 35px 20px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    backdrop-filter: blur(10px);
}

.card:hover, .skill-card:hover, .pay-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    background: rgba(20, 30, 55, 0.8);
    box-shadow: 0 20px 35px -12px rgba(56, 189, 248, 0.3);
}

.skill-card i {
    font-size: 3.2rem;
    margin-bottom: 12px;
    transition: transform 0.2s;
}

.skill-card:hover i {
    transform: scale(1.05);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 15px 0;
}

.premium-highlight {
    border: 1px solid #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
}

.modal-content {
    background: #111827;
    margin: 12% auto;
    padding: 35px;
    width: 90%;
    max-width: 400px;
    border-radius: 40px;
    text-align: center;
    border: 1px solid #38bdf8;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}

.modal-icon i {
    font-size: 48px;
    color: #38bdf8;
    margin-bottom: 15px;
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #94a3b8;
}

/* Contact Form Premium */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #38bdf8;
    font-size: 18px;
}

.input-group textarea ~ i {
    top: 28px;
    transform: none;
}

input, textarea {
    width: 100%;
    padding: 16px 20px 16px 48px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid #334155;
    border-radius: 24px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.2s;
}

input:focus, textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

textarea {
    padding-left: 48px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

footer {
    text-align: center;
    padding: 45px 8%;
    background: #030617;
    border-top: 1px solid #1e293b;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links-footer a {
    color: #64748b;
    margin: 0 12px;
    font-size: 20px;
    transition: 0.2s;
}

.social-links-footer a:hover {
    color: #38bdf8;
}

/* Telegram Float Button - Premium Interactive */
.telegram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(145deg, #0088cc, #005f8c);
    color: white;
    padding: 14px 22px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1100;
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
    animation: pulse-blue 2s infinite, floating 3s ease-in-out infinite;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.telegram-float i {
    font-size: 26px;
}

.telegram-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.5s ease;
}

.telegram-float:hover span {
    max-width: 160px;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
    70% { box-shadow: 0 0 0 18px rgba(0, 136, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0); }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.telegram-float:hover {
    animation: none;
    transform: scale(1.08);
    background: #00a2f3;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    nav { display: none; }
    .menu-toggle { display: block; }
    .footer-content { flex-direction: column; text-align: center; }
    .container { padding: 80px 5%; }
    h2 { font-size: 2rem; }
    .telegram-float { padding: 12px; bottom: 20px; right: 20px; }
    .telegram-float span { display: none; }
}