/* =========================================
   LAYTH KARZOUN - CREATIVE PORTFOLIO
   ========================================= */

/* --- Variables --- */
:root {
    --primary: #7C3AED;
    --secondary: #8B5CF6;
    --accent: #A855F7;
    --bg-color: #09090B;
    --bg-secondary: #121214;
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(9, 9, 11, 0.7);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


/* --- RTL (Arabic) Support --- */
html[dir="rtl"] body {
    font-family: 'Cairo', 'Inter', sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .btn,
html[dir="rtl"] .logo {
    font-family: 'Cairo', 'Poppins', sans-serif;
}

html[dir="rtl"] .btn-text i {
    transform: scaleX(-1);
}

html[dir="rtl"] .btn-text:hover i {
    transform: scaleX(-1) translateX(5px);
}

html[dir="rtl"] .section-header {
    text-align: right;
}

html[dir="rtl"] .about-text {
    text-align: right;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
    /* Custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Layout --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: 60px;
    text-align: left;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

/* --- Utilities --- */
.w-100 {
    width: 100%;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #EC4899 100%);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.9), 0 0 22px rgba(236, 72, 153, 0.6);
}

.cursor-outline {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(168, 85, 247, 0.45);
    background: rgba(124, 58, 237, 0.04);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15), inset 0 0 10px rgba(168, 85, 247, 0.08);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s, 
                border-color 0.3s, 
                box-shadow 0.3s;
}

/* Hover state on interactive elements */
.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.6);
    background: linear-gradient(135deg, #EC4899 0%, #A855F7 100%);
    box-shadow: 0 0 16px rgba(236, 72, 153, 1), 0 0 28px rgba(168, 85, 247, 0.85);
}

.cursor-hover .cursor-outline {
    width: 66px;
    height: 66px;
    background-color: rgba(168, 85, 247, 0.14);
    border-color: rgba(168, 85, 247, 0.9);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.45), inset 0 0 20px rgba(168, 85, 247, 0.2);
}

/* Click / Press state */
.cursor-pressed .cursor-dot {
    transform: translate(-50%, -50%) scale(0.7);
}

.cursor-pressed .cursor-outline {
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(236, 72, 153, 0.25);
    border-color: #EC4899;
}

/* --- Loader --- */
#loader {
    position: fixed;
    inset: 0;
    background-color: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
    animation: pulse 2s infinite ease-in-out;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
    display: block;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--card-border);
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.1s ease;
}

/* --- Background Blobs --- */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* --- Components --- */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: none;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 15px 25px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

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

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--card-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);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
    transition: var(--transition);
}

.logo:hover .nav-logo-img {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.8));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-control-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

html[dir="rtl"] .nav-control-btn {
    font-family: 'Cairo', sans-serif;
}

.nav-control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
}

.nav-control-btn i {
    font-size: 0.95rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

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

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

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    margin: 10px 0 20px;
    line-height: 1.1;
}

.hero-titles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 500;
}

.dot {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

.hero-logo-container {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.2) 0%, rgba(9, 9, 11, 0.95) 75%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.2), inset 0 0 30px rgba(124, 58, 237, 0.1);
}

.hero-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    width: 100%;
}

.hero-logo-img {
    max-width: 85%;
    max-height: 280px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.5));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.hero-logo-container:hover .hero-logo-img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 35px rgba(168, 85, 247, 0.85));
}

.hero-logo-tag {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 22px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    animation: float 6s infinite alternate;
}

.badge-1 {
    top: 10%;
    left: -20px;
}

.badge-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: -3s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
}

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

.about-text strong {
    color: var(--text-main);
    font-weight: 500;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 5px;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1) translateY(-5px);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* --- Skills --- */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0;
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.language-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.lang-badge {
    padding: 15px 25px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* --- Industries --- */
.industries-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ind-chip {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: none;
}

.ind-chip:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent);
}

/* --- Projects --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    padding: 20px;
    overflow: hidden;
}

.project-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.05);
}

.project-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img-file {
    transform: scale(1.06);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
    transition: var(--transition);
}

.project-cat {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.project-title {
    font-size: 1.5rem;
    margin: 10px 0 15px;
}

/* Dark background PLATO logo card */
.project-img-dark {
    background: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Light background logo card */
.project-img-light {
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-trigger {
    cursor: pointer;
}

.lightbox-trigger-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin-top: 10px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.15) rotate(90deg);
}

.lightbox-caption {
    margin-top: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}
    object-fit: contain !important;
    padding: 20px;
    width: 100%;
    height: 100%;
}

/* Category-colored placeholder cards */
.proj-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.proj-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1;
}

.proj-placeholder-inner i {
    font-size: 2.8rem;
    opacity: 0.9;
}

.proj-placeholder--marketing {
    background: linear-gradient(135deg, #1a1a4e 0%, #2d1b69 100%);
}

.proj-placeholder--social {
    background: linear-gradient(135deg, #1a3a4e 0%, #0f4c81 100%);
}

.proj-placeholder--motion {
    background: linear-gradient(135deg, #2d1b1b 0%, #7c1f1f 100%);
}

.proj-placeholder--logo {
    background: linear-gradient(135deg, #1a2d1b 0%, #1f5c2a 100%);
}

.proj-placeholder--ad {
    background: linear-gradient(135deg, #2d1b40 0%, #6b1f7c 100%);
}

.proj-placeholder--video {
    background: linear-gradient(135deg, #2d2200 0%, #7c5c00 100%);
}

.proj-placeholder--yt {
    background: linear-gradient(135deg, #2d0000 0%, #9b1c1c 100%);
}

.project-card:hover .proj-placeholder-inner i {
    transform: scale(1.1) translateY(-4px);
    transition: var(--transition);
}

/* Watch Videos on Behance Button */
.btn-watch-behance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(192, 38, 211, 0.18) 100%);
    border: 1.5px solid rgba(124, 58, 237, 0.5);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 4px;
}

.btn-watch-behance i:first-child {
    font-size: 1rem;
    color: var(--accent-1);
}

.btn-watch-behance i:last-child {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.btn-watch-behance:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4) 0%, rgba(192, 38, 211, 0.4) 100%);
    border-color: var(--accent-1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
}

.btn-watch-behance:hover i:last-child {
    transform: translate(2px, -2px);
}

/* Projects Add More CTA */
.projects-add-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px dashed rgba(124, 58, 237, 0.35);
}

.projects-add-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}


/* --- Process --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: var(--card-border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--bg-color);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.timeline-content {
    padding: 25px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--text-main);
}

/* --- Why Choose Me --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
}

.why-card i {
    font-size: 2rem;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* --- Delivery & Vision --- */
.dv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.delivery-card,
.vision-card {
    padding: 50px;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- Testimonials --- */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 50px;
    text-align: center;
    opacity: 0.5;
    transition: var(--transition);
}

.slide.active {
    opacity: 1;
}

.stars {
    color: #FBBF24;
    margin-bottom: 20px;
}

.slide p {
    font-size: 1.25rem;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    cursor: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.8rem;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

.social-links-large {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links-large a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0;
    margin-top: 50px;
}

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

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

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

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

.fade-right {
    transform: translateX(50px);
}

.fade-right.active {
    transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container,
    .about-grid,
    .skills-grid,
    .dv-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    /* Disable custom cursor on mobile */
    body {
        cursor: auto;
    }

    a,
    button,
    .btn {
        cursor: pointer;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}