/* ============================================
   YILMAZ RENT - Premium Landing Page
   Design System & Global Styles
   ============================================ */

/* ============================================
   Splash / Loading Screen
   ============================================ */

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #060a14;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-screen.hide {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

/* Background grid */
.splash-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Ambient glows */
.splash-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.splash-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    top: -150px;
    right: -100px;
    animation: splashFloat 6s ease-in-out infinite;
}

.splash-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.12), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: splashFloat 8s ease-in-out infinite reverse;
}

@keyframes splashFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

/* Splash particles container */
.splash-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.splash-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.4);
    animation: particleFloat var(--dur) linear infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

/* Splash content */
.splash-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

/* Logo wrapper */
.splash-logo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-ring-outer {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #00d4ff;
    border-right-color: rgba(124, 77, 255, 0.5);
    animation: splashSpin 2.5s linear infinite;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.splash-ring-inner {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-bottom-color: #7c4dff;
    border-left-color: rgba(0, 212, 255, 0.5);
    animation: splashSpin 1.8s linear infinite reverse;
    filter: drop-shadow(0 0 6px rgba(124, 77, 255, 0.3));
}

@keyframes splashSpin {
    to {
        transform: rotate(360deg);
    }
}

.splash-logo-icon {
    animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both,
        logoPulse 3s ease-in-out 1.3s infinite;
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* Letter animation */
.splash-text {
    text-align: center;
}

.splash-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash-letter {
    display: inline-block;
    color: #e8ecf1;
    animation: letterIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) calc(0.5s + var(--i) * 0.08s) both;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.splash-letter.accent {
    background: linear-gradient(135deg, #00d4ff, #7c4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
}

.splash-space {
    width: 16px;
}

@keyframes letterIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(90deg) scale(0.5);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        filter: blur(0);
    }
}

.splash-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(0, 212, 255, 0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: subtitleIn 0.8s ease 1.5s both;
}

@keyframes subtitleIn {
    from {
        opacity: 0;
        transform: translateY(15px);
        letter-spacing: 12px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 4px;
    }
}

/* Loading bar */
.splash-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 260px;
    animation: loaderIn 0.6s ease 1.8s both;
}

@keyframes loaderIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-loader-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.splash-loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #7c4dff, #00d4ff);
    background-size: 200% 100%;
    border-radius: 4px;
    transition: width 0.15s ease;
    animation: barShimmer 2s linear infinite;
    position: relative;
}

.splash-loader-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 11px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.8), 0 0 24px rgba(0, 212, 255, 0.4);
}

@keyframes barShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.splash-loader-glow {
    position: absolute;
    inset: -6px 0;
    background: inherit;
    filter: blur(8px);
    opacity: 0.4;
    border-radius: 4px;
}

.splash-loader-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 212, 255, 0.5);
    font-weight: 600;
    letter-spacing: 2px;
}

/* Mobile splash adjustments */
@media (max-width: 600px) {
    .splash-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .splash-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .splash-logo-wrapper {
        width: 110px;
        height: 110px;
    }

    .splash-logo-icon svg {
        width: 50px;
        height: 50px;
    }

    .splash-loader {
        width: 200px;
    }
}


/* CSS Custom Properties */
:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0d1526;
    --bg-card: rgba(13, 21, 38, 0.7);
    --bg-card-hover: rgba(13, 21, 38, 0.9);

    --accent-cyan: #00d4ff;
    --accent-cyan-dim: rgba(0, 212, 255, 0.15);
    --accent-cyan-glow: rgba(0, 212, 255, 0.4);
    --accent-teal: #00bcd4;
    --accent-blue: #2196f3;
    --accent-purple: #7c4dff;

    --telegram-color: #0088cc;
    --telegram-glow: rgba(0, 136, 204, 0.4);
    --whatsapp-color: #25d366;
    --whatsapp-glow: rgba(37, 211, 102, 0.4);

    --text-primary: #e8ecf1;
    --text-secondary: rgba(232, 236, 241, 0.7);
    --text-muted: rgba(232, 236, 241, 0.4);

    --border-color: rgba(0, 212, 255, 0.15);
    --border-glow: rgba(0, 212, 255, 0.3);

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 212, 255, 0.08);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   Background & Ambient Effects
   ============================================ */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
    top: -200px;
    right: -200px;
    animation: floatGlow 12s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.08), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: floatGlow 15s ease-in-out infinite reverse;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.06), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatGlow 18s ease-in-out infinite;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

/* ============================================
   Header
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    height: 70px;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 15, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-primary {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-secondary {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    opacity: 0.7;
    letter-spacing: 4px;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.header-stats {
    display: flex;
    align-items: center;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

.stat-value {
    color: var(--whatsapp-color);
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 99;
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    display: block;
    padding: 14px 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--accent-cyan);
    background: var(--accent-cyan-dim);
}

/* ============================================
   Floating Social Buttons
   ============================================ */

.floating-socials {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 50;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-bounce);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.floating-btn:hover {
    transform: scale(1.15) translateX(4px);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.btn-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: rgba(10, 15, 26, 0.95);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.whatsapp-btn:hover {
    box-shadow: 0 6px 30px var(--whatsapp-glow);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #0062a3);
    box-shadow: 0 4px 20px var(--telegram-glow);
}

.telegram-btn:hover {
    box-shadow: 0 6px 30px var(--telegram-glow);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 680px;
}

/* Main Card */
.main-card {
    position: relative;
    background: linear-gradient(145deg, rgba(13, 21, 38, 0.85), rgba(8, 14, 28, 0.95));
    border: none;
    border-radius: var(--radius-xl);
    padding: 55px 44px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 212, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    animation: cardEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
}

.main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1.5px;
    background: linear-gradient(135deg,
            rgba(0, 212, 255, 0.6),
            rgba(124, 77, 255, 0.3),
            rgba(0, 212, 255, 0.1),
            rgba(124, 77, 255, 0.6));
    background-size: 300% 300%;
    animation: borderGradient 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.main-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(0, 212, 255, 0.03) 60deg,
            transparent 120deg);
    animation: cardSweep 8s linear infinite;
    pointer-events: none;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes cardSweep {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--accent-cyan-glow), transparent 40%, transparent 60%, var(--accent-purple) 100%);
    opacity: 0.25;
    transition: opacity 0.6s ease;
    z-index: -1;
    filter: blur(2px);
}

.main-card:hover .card-glow {
    opacity: 0.5;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
}

.profile-ring {
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan)) border-box;
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 5s linear infinite, ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    inset: -16px;
    opacity: 0.25;
    animation: ringRotate 8s linear infinite reverse, ringPulse 4s ease-in-out infinite;
    border-width: 1px;
}

@keyframes ringRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringPulse {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }

    50% {
        opacity: 0.6;
        filter: brightness(1.3);
    }
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid rgba(0, 212, 255, 0.2);
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.1),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.profile-image:hover {
    transform: scale(1.08);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(0, 212, 255, 0.15),
        0 0 120px rgba(124, 77, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
}

.profile-status {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--whatsapp-color);
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-secondary);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
    }
}

.profile-name {
    font-family: var(--font-primary);
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
}

.name-glow {
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameShimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.2));
}

@keyframes nameShimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.profile-tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.tagline-icon {
    font-size: 1.2rem;
}

/* Badges */
.profile-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
}

.badge:hover {
    background: var(--accent-cyan-dim);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.badge.premium {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.08));
    border-color: rgba(255, 193, 7, 0.35);
    color: #ffc107;
}

.badge.premium:hover {
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.6);
}

/* Description */
.description-section {
    margin-bottom: 32px;
}

.description-card {
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(124, 77, 255, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.12);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.description-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.07), rgba(124, 77, 255, 0.05));
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.06);
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
    background-size: 100% 200%;
    animation: borderFlowVertical 3s ease-in-out infinite;
    border-radius: 3px;
}

.description-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(0, 212, 255, 0.03), transparent);
    pointer-events: none;
}

@keyframes borderFlowVertical {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }
}

.description-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 14px;
    position: relative;
    z-index: 1;
}

/* CTA Buttons */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    border-radius: var(--radius-lg);
    border: 1px solid;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    transition: none;
    animation: ctaShine 4s ease-in-out infinite;
}

@keyframes ctaShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.01);
}

.cta-button.telegram {
    border-color: rgba(0, 136, 204, 0.4);
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.04));
}

.cta-button.telegram::before {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.18), rgba(0, 136, 204, 0.06));
}

.cta-button.telegram:hover {
    border-color: rgba(0, 136, 204, 0.7);
    box-shadow:
        0 8px 30px var(--telegram-glow),
        0 0 60px rgba(0, 136, 204, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-button.whatsapp {
    border-color: rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.04));
}

.cta-button.whatsapp::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 211, 102, 0.06));
}

.cta-button.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.7);
    box-shadow:
        0 8px 30px var(--whatsapp-glow),
        0 0 60px rgba(37, 211, 102, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cta-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.cta-button:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-button.telegram .cta-icon {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25), rgba(0, 136, 204, 0.1));
    color: var(--telegram-color);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.15);
}

.cta-button.whatsapp .cta-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.1));
    color: var(--whatsapp-color);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
}

.cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cta-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.cta-arrow {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.cta-button:hover .cta-arrow {
    transform: translateX(6px);
    color: var(--text-primary);
}

/* ============================================
   About / Features Section
   ============================================ */

.about-section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    justify-content: center;
}

.title-accent {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-cyan), transparent);
    border-radius: 3px;
    display: inline-block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
    width: 80%;
}

.feature-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    background: var(--accent-cyan-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 212, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--accent-cyan-glow);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    padding: 80px 24px 100px;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.service-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan-dim), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-line {
    width: 60px;
    height: 2px;
    margin-top: 20px;
    background: linear-gradient(to right, var(--accent-cyan), transparent);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-line {
    width: 100px;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: 80px 24px 120px;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-xl);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.telegram-card {
    background: rgba(0, 136, 204, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.25);
}

.telegram-card::before {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(0, 136, 204, 0.05));
}

.telegram-card:hover {
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: 0 12px 40px var(--telegram-glow);
}

.whatsapp-card {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.whatsapp-card::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 12px 40px var(--whatsapp-glow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.telegram-card .contact-icon {
    background: rgba(0, 136, 204, 0.15);
    color: var(--telegram-color);
}

.whatsapp-card .contact-icon {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-color);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    transition: var(--transition-fast);
}

.contact-card:hover .contact-action {
    letter-spacing: 1px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(20px);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 60px 24px 40px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    padding: 2px 0;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 24px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-stats {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .floating-socials {
        left: 12px;
        gap: 10px;
    }

    .floating-btn {
        width: 44px;
        height: 44px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }

    .hero {
        padding: 100px 16px 40px;
    }

    .main-card {
        padding: 36px 24px;
    }

    .profile-image-wrapper {
        width: 130px;
        height: 130px;
    }

    .profile-image {
        width: 130px;
        height: 130px;
    }

    .profile-name {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 16px 20px;
    }

    .cta-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .main-card {
        padding: 30px 18px;
        border-radius: var(--radius-lg);
    }

    .profile-image-wrapper {
        width: 110px;
        height: 110px;
    }

    .profile-image {
        width: 110px;
        height: 110px;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-tagline {
        font-size: 0.88rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .description-text {
        font-size: 0.88rem;
    }

    .floating-socials {
        left: 8px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }

    .btn-tooltip {
        display: none;
    }
}

/* ============================================
   Scrollbar Styling
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.4);
}

/* Selection */
::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}