/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #03060b;
    --bg-secondary: #0a1420;
    --bg-card: rgba(8, 18, 28, 0.8);
    --accent: #0d6efd;
    --accent-glow: rgba(13, 110, 253, 0.5);
    --accent-light: #4a9eff;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-muted: #888;
    --border: rgba(13, 110, 253, 0.2);
    --border-hover: rgba(13, 110, 253, 0.4);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --gradient-1: linear-gradient(135deg, #0d6efd, #4a9eff);
    --gradient-2: linear-gradient(45deg, #0d6efd, #10b981);
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 10px 30px rgba(13, 110, 253, 0.3);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

@media (max-width: 768px) {
    .cursor {
        display: none;
    }
}

/* ===== PROGRESS BAR ===== */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1000;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--accent);
}

/* ===== FLOATING SHAPES ===== */
.floating-shape {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    left: -100px;
    animation: float1 20s infinite;
}

.shape-2 {
    bottom: 20%;
    right: -100px;
    animation: float2 25s infinite;
}

.shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.02;
    animation: pulse 8s infinite;
}

.shape-4 {
    top: 80%;
    left: 30%;
    width: 200px;
    height: 200px;
    animation: rotate 15s infinite linear;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-50px) translateX(50px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(50px) translateX(-50px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.02; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.04; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(3, 6, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(3, 6, 11, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    position: relative;
}

.logo-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    filter: blur(20px);
    opacity: 0.5;
    animation: glowPulse 3s infinite;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 100;
        border-left: 1px solid var(--border);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-number {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.5;
    font-weight: 400;
}

.title-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    animation: widthPulse 3s infinite;
}

@keyframes widthPulse {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 150px; opacity: 0.7; }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* ===== HOME SECTION ===== */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
    animation: orbFloat 20s infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, #10b981 0%, transparent 70%);
    right: 10%;
    bottom: 10%;
    animation: orbFloat2 25s infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-30%, -30%) scale(1.2); opacity: 0.15; }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.1); }
}

.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.glitch-text {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
}

.glitch-layer {
    position: relative;
    color: #fff;
    text-shadow: 0.05em 0 0 var(--accent), -0.05em -0.025em 0 var(--accent-light);
    animation: glitch 5s infinite;
}

.glitch-layer::before,
.glitch-layer::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-layer::before {
    animation: glitchTop 5s infinite;
    color: var(--accent);
    z-index: -1;
}

.glitch-layer::after {
    animation: glitchBottom 5s infinite;
    color: var(--accent-light);
    z-index: -2;
}

@keyframes glitch {
    2%, 64% { transform: skew(0deg, 0deg); }
    4%, 60% { transform: skew(0deg, 0deg); }
    62% { transform: skew(0deg, 0deg); }
}

@keyframes glitchTop {
    2%, 64% { transform: translate(2px, -2px); }
    4%, 60% { transform: translate(-2px, 2px); }
    62% { transform: translate(13px, -1px) skew(-13deg); }
}

@keyframes glitchBottom {
    2%, 64% { transform: translate(-2px, 2px); }
    4%, 60% { transform: translate(2px, -2px); }
    62% { transform: translate(-13px, 1px) skew(13deg); }
}

.typewriter-container {
    font-size: 1.8rem;
    margin-bottom: 30px;
    min-height: 60px;
}

.typewriter-text {
    color: var(--accent);
    font-weight: 600;
    border-right: 3px solid var(--accent);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--accent); }
}

.home-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.home-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: #03060b;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #03060b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.home-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 3.5rem;
    }
    
    .typewriter-container {
        font-size: 1.4rem;
    }
    
    .home-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.image-wrapper:hover .image-glow {
    opacity: 0.3;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: badgeFloat 3s infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exp-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.exp-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills-container h4 {
    color: #fff;
    margin-bottom: 15px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.skill-item {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.skill-item:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.skill-item:hover i,
.skill-item:hover span {
    color: #03060b;
}

.skill-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.skill-item span {
    color: #fff;
    font-size: 0.9rem;
}

.about-quote {
    background: rgba(13, 110, 253, 0.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-quote i {
    color: var(--accent);
    font-size: 1.5rem;
}

.about-quote p {
    color: #fff;
    font-style: italic;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content h3 {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-accent);
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.3s;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #03060b;
    transform: rotate(10deg);
}

.service-card:hover .icon-glow {
    opacity: 0.5;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-list i {
    color: var(--success);
    font-size: 0.8rem;
}

.service-footer {
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.service-tag {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--accent);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #03060b;
    animation: pulse 2s infinite;
}

.promo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.promo-text p {
    color: var(--text-secondary);
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.promo-btn:hover {
    background: var(--accent);
    color: #03060b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 20px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== TOOLS SECTION ===== */
.tools-section {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 110, 253, 0.02) 50%, transparent 100%);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -30px;
    margin-bottom: 50px;
}

.tools-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .tools-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tools-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.showcase-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.showcase-card:hover .card-glow {
    opacity: 0.2;
}

.card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--accent);
    transition: all 0.3s;
}

.showcase-card:hover .card-icon-wrapper {
    background: var(--accent);
    color: #03060b;
    transform: rotate(10deg) scale(1.1);
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.card-tags span {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--accent);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.card-features span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-features i {
    color: var(--success);
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    transition: all 0.2s;
}

.showcase-card:hover .card-footer {
    color: #fff;
    transform: translateX(5px);
}

.card-stats {
    background: rgba(13, 110, 253, 0.1);
    border-top: 1px solid var(--border);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tools-cta {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 110, 253, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-content i {
    font-size: 2.5rem;
    color: var(--accent);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.cta-text p {
    color: var(--text-secondary);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #03060b;
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

@media (max-width: 768px) {
    .tools-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.project-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 6, 11, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.project-card:hover .project-links {
    transform: translateY(0);
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03060b;
    text-decoration: none;
    transition: all 0.3s;
}

.project-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--accent);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-desc {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tech span {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--accent);
}

.projects-more {
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(13, 110, 253, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--accent);
    background: rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.method-detail {
    flex: 1;
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.method-value {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.method-value:hover {
    color: var(--accent);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    padding: 12px 25px;
    border-radius: 40px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.card-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.1;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10%, 10%); }
}

.contact-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-icon-large {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.contact-card h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #03060b;
    padding: 15px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-bottom: 20px;
    border: 2px solid transparent;
}

.contact-telegram-btn:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.card-footer-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 500;
}

.card-footer-text i {
    font-size: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    color: #03060b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
    }
}

.built-with i {
    margin: 0 5px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03060b;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    border: 2px solid transparent;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* ===== PARTICLES ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ===== AOS CUSTOM ===== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

.text-accent {
    color: var(--accent);
}

.glow-text {
    text-shadow: 0 0 10px var(--accent-glow);
}

.glow-box {
    box-shadow: 0 0 20px var(--accent-glow);
}