/* =========================================
   KISJAN HOXHA - PERSONAL WEBSITE
   Theme: Premium Dark & Orange
========================================= */

:root {
    --bg-main: #0a0a0c;
    --bg-secondary: #131318;
    --bg-card: #1c1c24;
    --text-main: #ffffff;
    --text-muted: #a0a0ab;
    --accent-orange: #ff6b00;
    --accent-orange-hover: #e56000;
    --accent-glow: rgba(255, 107, 0, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --glass-bg: rgba(28, 28, 36, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Luxury Minimalist Background */
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-color: #030303;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    animation: pulseOrb 10s infinite alternate ease-in-out;
}

.glow-orb.top-left {
    width: 600px;
    height: 600px;
    background: var(--accent-orange);
    top: -300px;
    left: -300px;
}

.glow-orb.bottom-right {
    width: 700px;
    height: 700px;
    background: #1a1a24;
    bottom: -350px;
    right: -350px;
    animation-delay: -5s;
}

@keyframes pulseOrb {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.2); opacity: 0.4; }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    z-index: -1;
}

/* Glassmorphism Cards Override */
.service-card, .audience-box, .method-card, .contact-form-container, .wizardedu-wrapper, .experience-badge {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b00, #ffb347);
    z-index: 10000;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    transition: width 0.1s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.accent {
    color: var(--accent-orange);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.line-accent {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    border-radius: 2px;
    margin-top: 1rem;
}

.section-header.center .line-accent {
    margin: 1rem auto 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--accent-orange);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    color: var(--accent-orange);
    border: 1px solid var(--accent-orange);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent-orange);
    color: #fff;
}

.w-100 {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:not(.btn-outline):hover {
    color: var(--accent-orange);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-content .title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content .description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-links-hero {
    display: flex;
    gap: 1.5rem;
}

.social-links-hero a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links-hero a:hover {
    color: var(--accent-orange);
    transform: translateY(-3px);
}

/* Hero Image & Glow */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-orange);
    filter: blur(80px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.15; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

.image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item h4 {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    margin: 0;
}

.rounded-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Services */
.services {
    padding: 8rem 0;
}

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

.service-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(255, 107, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* WizardEDU */
.wizardedu {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.wizardedu-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.wizard-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.wizard-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: rgba(255, 107, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.w-icon {
    background: var(--accent-orange);
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.8rem;
}

.wizard-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.wizard-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    transition: var(--transition);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255,255,255,0.02);
}

.feature-item.active {
    background: rgba(255, 107, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.2);
}

.feature-item.active i,
.feature-item.active h4 {
    color: var(--accent-orange);
}

.feature-item.active p {
    color: var(--text-muted);
}

/* Mac OS Style Window */
.mac-window {
    background: var(--bg-main);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mac-header {
    background: #1e1e24;
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mac-body {
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
}

.mac-body img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

/* Target Audience */
.target-audience {
    padding: 6rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.audience-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.audience-box.positive {
    border-top: 3px solid #27c93f;
}

.audience-box.negative {
    border-top: 3px solid #ff5f56;
}

.audience-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.audience-box ul {
    list-style: none;
}

.audience-box li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.positive li i { color: #27c93f; }
.negative li i { color: #ff5f56; }

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.method-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.icon.telegram { background: rgba(0, 136, 204, 0.1); color: #0088cc; }
.icon.email { background: rgba(255, 107, 0, 0.1); color: var(--accent-orange); }

.method-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Form */
.contact-form-container {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: #111115;
}

/* Footer Redesign */
footer {
    background: #020202;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-cta {
    margin-bottom: 5rem;
    max-width: 800px;
}

.footer-quote {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.footer-quote-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    width: 100%;
    text-align: center;
    padding-top: 2rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   ULTRA PREMIUM INTERACTIVITY
========================================= */

/* Custom Cursor */
body {
    cursor: none;
}
a, button, input, select, textarea, .feature-item {
    cursor: none;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s, transform 0.1s;
}

.cursor-hover .custom-cursor-dot {
    width: 0;
    height: 0;
}

.cursor-hover .custom-cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 0, 0.1);
    border-color: transparent;
    backdrop-filter: blur(2px);
}

/* 3D Tilt Cards */
.tilt-wrapper {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tilt-element {
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.1s;
    will-change: transform;
    transform-style: preserve-3d;
}

.tilt-element > * {
    transform: translateZ(30px);
}

/* Magnetic Button Wrapper */
.magnetic-wrap {
    display: inline-block;
}

/* Floating Elements Animation for Hero */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Text Reveal Gradient */
.title .accent {
    background: linear-gradient(90deg, var(--accent-orange), #ff9900, var(--accent-orange));
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* End of Styles */

@media (max-width: 1024px) {
    .hero-content .title { font-size: 3.5rem; }
    .wizardedu-wrapper { padding: 3rem; }
    .features-showcase { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero { padding-top: 100px; text-align: center; }
    .hero-container, .about-content, .contact-wrapper, .audience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content .description { max-width: 100%; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .social-links-hero { justify-content: center; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #0a0a0c;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        transition: 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger { display: block; }
    
    .stats { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1.5rem; }
    .wizard-header h2 { font-size: 2rem; }
    .footer-quote { font-size: 2rem; }
    
    .custom-cursor-dot, .custom-cursor-outline { display: none; }
}

@media (max-width: 480px) {
    .hero-content .title { font-size: 2.5rem; }
    .wizardedu-wrapper { padding: 1.5rem; }
    .audience-box, .contact-form-container { padding: 1.5rem; }
    .method-card { flex-direction: column; text-align: center; }
}
