/* ============================================
   USAMA IQBAL — AWSMD-INSPIRED CREATIVE SITE
   ============================================ */

/* ---- Variables ---- */
:root {
    --bg: #0d0d0d;
    --bg-alt: #141414;
    --bg-card: #1a1a1a;
    --white: #ffffff;
    --white-90: rgba(255,255,255,0.9);
    --white-70: rgba(255,255,255,0.7);
    --white-50: rgba(255,255,255,0.5);
    --white-30: rgba(255,255,255,0.3);
    --white-15: rgba(255,255,255,0.15);
    --white-08: rgba(255,255,255,0.08);
    --white-04: rgba(255,255,255,0.04);
    --accent: #c8ff00;
    --accent-dim: rgba(200,255,0,0.15);
    --neon-shadow: 0 4px 20px rgba(200, 255, 0, 0.35), 0 0 12px rgba(200, 255, 0, 0.2);
    --neon-shadow-hover: 0 6px 30px rgba(200, 255, 0, 0.75), 0 0 40px rgba(200, 255, 0, 0.5);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --container: 1320px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
/* ---- Lazy Loading & Hardware Acceleration for Smooth Scrolling ---- */
.lazy-img {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    will-change: opacity, transform;
    backface-visibility: hidden;
}
.lazy-img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
ul, li { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.section {
    padding: 140px 0; position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}
.hero {
    content-visibility: visible;
    contain-intrinsic-size: auto;
}

/* ---- Preloader ---- */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg); display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
    width: 90px; height: 120px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.preloader-logo-img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(200, 255, 0, 0.5));
    animation: preloader-glow 1.6s ease-in-out infinite alternate;
}
@keyframes preloader-glow {
    0% { transform: scale(0.96); filter: drop-shadow(0 0 16px rgba(200, 255, 0, 0.35)); }
    100% { transform: scale(1.04); filter: drop-shadow(0 0 32px rgba(200, 255, 0, 0.85)); }
}
.preloader-bar { width: 200px; height: 2px; background: var(--white-08); border-radius: 1px; overflow: hidden; }
.preloader-fill { height: 100%; width: 0; background: var(--accent); box-shadow: 0 0 12px var(--accent); border-radius: 1px; animation: preload-fill 1.8s var(--ease) forwards; }
@keyframes preload-fill { to { width: 100%; } }

/* ---- Custom Cursor ---- */
.custom-cursor {
    position: fixed; width: 8px; height: 8px; border-radius: 50%;
    background: var(--white); pointer-events: none; z-index: 99998;
    transition: transform 0.1s ease, opacity 0.3s;
    transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.custom-cursor-follower {
    position: fixed; width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--white-30); pointer-events: none; z-index: 99997;
    transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
}

/* ---- Fixed Bar (CTA + Menu) ---- */
.fixed-bar {
    position: fixed; top: 24px; right: 24px; z-index: 9999;
    display: none; align-items: center; gap: 12px;
}
.become-client-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 24px; border-radius: 100px;
    background: var(--white); color: var(--bg);
    font-size: 14px; font-weight: 600;
    overflow: hidden; transition: all 0.4s var(--ease);
    box-shadow: var(--neon-shadow);
}
.become-client-btn:hover {
    background: var(--accent); color: var(--bg);
    transform: scale(1.03);
    box-shadow: var(--neon-shadow-hover);
}
.btn-text-slide { display: flex; flex-direction: column; overflow: hidden; height: 18px; }
.btn-text-slide span { transition: transform 0.4s var(--ease); font-size: 14px; line-height: 18px; }
.become-client-btn:hover .btn-text-slide span { transform: translateY(-18px); }

.menu-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--white-08); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 16px rgba(200, 255, 0, 0.25);
}
.menu-btn:hover { background: var(--white-15); box-shadow: var(--neon-shadow-hover); }
.menu-btn-lines { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.menu-btn-lines span {
    display: block; height: 2px; background: var(--white);
    border-radius: 1px; transition: all 0.4s var(--ease);
}
.menu-btn-lines span:nth-child(2) { width: 14px; margin-left: auto; }
.menu-btn.active .menu-btn-lines span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active .menu-btn-lines span:nth-child(2) { opacity: 0; }
.menu-btn.active .menu-btn-lines span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Full Screen Menu ---- */
.fullscreen-menu {
    position: fixed; inset: 0; z-index: 9998;
    background: var(--bg); display: flex; flex-direction: column;
    justify-content: center; padding: 80px;
    transform: translateY(-100%); transition: transform 0.8s var(--ease);
    opacity: 0; visibility: hidden;
}
.fullscreen-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.fs-menu-nav { display: flex; flex-direction: column; gap: 8px; }
.fs-menu-link {
    font-family: var(--font-heading); font-size: clamp(36px, 6vw, 72px);
    font-weight: 700; color: var(--white-30); transition: color 0.3s;
    display: flex; align-items: center; gap: 24px;
    padding: 8px 0; border-bottom: 1px solid var(--white-04);
}
.fs-menu-link::before { content: attr(data-index); font-size: 14px; font-weight: 400; color: var(--white-30); }
.fs-menu-link:hover { color: var(--white); }
.fs-menu-footer { margin-top: auto; padding-top: 40px; display: flex; justify-content: space-between; align-items: flex-end; }
.fs-menu-social { display: flex; gap: 24px; }
.fs-menu-social a { font-size: 14px; color: var(--white-50); transition: color 0.3s; }
.fs-menu-social a:hover { color: var(--white); }
.fs-menu-email { font-size: 14px; color: var(--white-50); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image { width: 100%; height: 100%; }
.hero-bg-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: none; }
.hero-bg-overlay { display: none; }

.header {
    position: relative; z-index: 10; display: flex;
    align-items: center; justify-content: space-between;
    padding: 28px 40px;
}
.logo-btn { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-icon {
    width: 32px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
}
.logo-img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(200, 255, 0, 0.4));
    transition: all 0.3s var(--ease);
}
.logo-btn:hover .logo-img, .footer-logo:hover .logo-img {
    filter: drop-shadow(0 0 24px rgba(200, 255, 0, 0.9));
    transform: scale(1.1);
}
.logo-icon.large { width: 44px; height: 60px; }
.logo-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; }

.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav-item {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 20px; border-radius: 100px;
    background: var(--white); color: var(--bg);
    font-size: 13px; font-weight: 600;
    overflow: hidden; transition: all 0.4s var(--ease);
    text-decoration: none;
    box-shadow: var(--neon-shadow);
}
.header-nav-item:hover {
    background: var(--accent); color: var(--bg);
    transform: scale(1.04);
    box-shadow: var(--neon-shadow-hover);
}
.header-nav-item .btn-text-slide { display: flex; flex-direction: column; overflow: hidden; height: 18px; }
.header-nav-item .btn-text-slide span {
    transition: transform 0.4s var(--ease);
    font-size: 13px; line-height: 18px; font-weight: 600;
}
.header-nav-item:hover .btn-text-slide span { transform: translateY(-18px); }

/* Hero Content */
.hero-content {
    flex: 1; display: flex; justify-content: space-between;
    padding: 0 40px 60px; position: relative; z-index: 10;
    align-items: center;
}
.hero-left {
    max-width: 420px; display: flex; flex-direction: column; justify-content: center;
}
.hero-title-line1 {
    font-family: var(--font-heading); font-size: clamp(28px, 3.6vw, 56px);
    font-weight: 300; color: var(--white); line-height: 1.1;
    margin-bottom: -2px;
}
.hero-title-line2 {
    font-family: var(--font-heading); font-size: clamp(28px, 3.6vw, 56px);
    font-weight: 300; color: var(--white); line-height: 1.1;
    margin-bottom: -2px;
}

.hero-typing {
    font-family: var(--font-heading); font-size: clamp(34px, 4.2vw, 68px);
    font-weight: 800; color: var(--accent);
    line-height: 1.05; min-height: 1.2em;
}

.hero-rating { margin-top: 0; }
.rating-box {
    background: var(--white-08); backdrop-filter: blur(20px);
    border: 1px solid var(--white-08); border-radius: 16px;
    padding: 20px 24px; max-width: 340px;
}
.rating-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 8px; }
.rating-stars span { color: #facc15; font-size: 16px; }
.rating-number { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--white); margin-left: 8px; }
.rating-label { font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.rating-text { font-size: 13px; color: var(--white-50); line-height: 1.5; }

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    align-self: stretch;
    min-height: 460px;
}

.hero-right .become-client-btn {
    margin-top: auto;
    margin-bottom: auto;
}

/* ---- MARQUEE ---- */
.marquee-section { padding: 28px 0; background: var(--white); overflow: hidden; }
.marquee { overflow: hidden; width: 100%; }
.marquee-track {
    display: flex; white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
}
.marquee-text {
    font-family: var(--font-heading); font-size: 18px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 4px; color: var(--bg);
    padding-right: 60px; flex-shrink: 0;
}
.marquee-text.dark { color: var(--white-15); }
.marquee-text .dot { color: var(--accent); margin: 0 8px; font-size: 10px; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.smart-marquee { padding: 28px 0; background: transparent; }

/* ---- SECTION HEADERS ---- */
.section-number {
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    color: var(--white-50); letter-spacing: 1px;
    margin-bottom: 40px; text-transform: uppercase;
}
.section-number.light { color: var(--white-70); }
.section-subtext { max-width: 600px; margin-bottom: 60px; }
.section-subtext p {
    font-family: var(--font-heading); font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400; color: var(--white-70); line-height: 1.5;
}

/* ---- SERVICES ---- */
.services { background: var(--bg); }
.services-list { display: flex; flex-direction: column; gap: 24px; }
.service-card {
    display: flex; position: relative; border-radius: 24px;
    overflow: hidden; min-height: 420px; background: var(--card-bg, #E4E3DF);
    transition: transform 0.6s var(--ease);
}
.service-card:hover { transform: scale(0.98); }
.service-card-bg {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0.2; transition: opacity 0.6s;
}
.service-card:hover .service-card-bg { opacity: 0.35; }
.service-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-card-content {
    position: relative; z-index: 1; padding: 48px 56px;
    display: flex; flex-direction: column; justify-content: flex-end;
    flex: 1;
}
.service-card-title {
    font-family: var(--font-heading); font-size: clamp(32px, 4vw, 52px);
    font-weight: 700; color: var(--bg); line-height: 1.1; margin-bottom: 20px;
}
.service-card-text {
    font-size: 15px; line-height: 1.7; color: rgba(0,0,0,0.6);
    max-width: 480px; margin-bottom: 24px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags li {
    padding: 6px 16px; border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.15); font-size: 13px;
    font-weight: 500; color: rgba(0,0,0,0.7);
}

/* ---- ABOUT ---- */
.about { background: var(--bg); }
.about-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 60px; gap: 40px;
}
.about-title {
    font-family: var(--font-heading); font-size: clamp(36px, 4vw, 56px);
    font-weight: 700; line-height: 1.2;
}

/* CTA Button (AWSMD style) */
.cta-button {
    display: flex; align-items: center; gap: 0;
    font-size: 14px; font-weight: 600; transition: all 0.4s var(--ease);
}
.cta-text {
    padding: 14px 28px; background: var(--white); color: var(--bg);
    border-radius: 100px 0 0 100px;
    display: flex; flex-direction: column; overflow: hidden; height: 20px;
}
.cta-text span { line-height: 20px; transition: transform 0.4s var(--ease); }
.cta-button:hover .cta-text span { transform: translateY(-20px); }
.cta-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--white); color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.cta-icon svg { width: 14px; height: 12px; position: relative; z-index: 1; }
.cta-circle {
    position: absolute; inset: 0; background: var(--accent);
    border-radius: 50%; transform: scale(0);
    transition: transform 0.5s var(--ease);
}
.cta-button:hover .cta-circle { transform: scale(1); }

.submit-btn .cta-text { border-radius: 100px 0 0 100px; }
.submit-btn .cta-icon { border-radius: 0 100px 100px 0; margin-left: -1px; }

/* About Content */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.about-statement { margin-bottom: 48px; }
.about-statement p { font-size: 18px; line-height: 1.7; color: var(--white-50); }
.about-statement strong { color: var(--white); }
.about-stats-title {
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    color: var(--white-50); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 24px;
}
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--white-08);
    border-radius: 20px; overflow: hidden;
    transition: border-color 0.3s, transform 0.4s var(--ease);
}
.stat-card:hover { border-color: var(--white-15); transform: translateY(-4px); }
.stat-card-visual { height: 120px; overflow: hidden; }
.stat-card-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(1.3); }
.stat-card-info { padding: 20px; }
.stat-card-number {
    font-family: var(--font-heading); font-size: 32px; font-weight: 800;
    color: var(--white); margin-bottom: 8px;
}
.stat-card-desc { font-size: 13px; color: var(--white-50); line-height: 1.5; }

/* About Circle Graph */
.about-right { display: flex; align-items: center; justify-content: center; }
.about-circle-graph { position: relative; width: 420px; height: 420px; }
.circle-orbit {
    position: absolute; border-radius: 50%;
    border: 1px solid var(--white-08);
}
.orbit-1 {
    width: 60px; height: 60px; top: 50%; left: 50%;
    transform: translate(-50%, -50%); background: var(--white-04);
}
.orbit-2 {
    width: 180px; height: 180px; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 40s linear infinite;
}
.orbit-3 {
    width: 300px; height: 300px; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 60s linear infinite reverse;
}
.orbit-4 {
    width: 420px; height: 420px; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 80s linear infinite;
}
@keyframes orbit-rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.orbit-point {
    position: absolute; width: 8px; height: 8px;
    background: var(--white-30); border-radius: 50%;
}
.orbit-point.main { background: var(--accent); width: 12px; height: 12px; box-shadow: 0 0 12px var(--accent-dim); }
.orbit-point::after {
    content: attr(data-label); position: absolute;
    white-space: nowrap; font-size: 11px; color: var(--white-30);
    left: 16px; top: 50%; transform: translateY(-50%);
}
.orbit-2 .orbit-point:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-2 .orbit-point:nth-child(2) { right: 0; top: 50%; transform: translate(50%, -50%); }
.orbit-2 .orbit-point:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.orbit-2 .orbit-point:nth-child(4) { left: 0; top: 50%; transform: translate(-50%, -50%); }
.orbit-3 .orbit-point:nth-child(1) { top: 10%; left: 10%; }
.orbit-3 .orbit-point:nth-child(2) { top: 10%; right: 10%; }
.orbit-3 .orbit-point:nth-child(3) { right: 0; top: 50%; transform: translate(50%, -50%); }
.orbit-3 .orbit-point:nth-child(4) { bottom: 10%; right: 10%; }
.orbit-3 .orbit-point:nth-child(5) { bottom: 10%; left: 10%; }
.orbit-4 .orbit-point:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-4 .orbit-point:nth-child(2) { right: 5%; top: 30%; }
.orbit-4 .orbit-point:nth-child(3) { right: 5%; bottom: 30%; }
.orbit-4 .orbit-point:nth-child(4) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }

/* Partners Marquee */
.partners-marquee {
    margin-top: 80px; padding: 32px 0;
    border-top: 1px solid var(--white-08); border-bottom: 1px solid var(--white-08);
}
.partners-track { animation-duration: 25s; }
.partner-item {
    font-family: var(--font-heading); font-size: 20px; font-weight: 600;
    color: var(--white-15); text-transform: uppercase; letter-spacing: 4px;
    padding-right: 80px; flex-shrink: 0;
}

/* ---- SMART DEVELOPMENT ---- */
.smart-dev { background: var(--bg-alt); padding: 100px 0 0; overflow: hidden; }
.smart-dev-line { position: absolute; inset: 0; pointer-events: none; }
.smart-dev-svg { width: 100%; height: 100%; }
.smart-dev-container { position: relative; z-index: 1; }
.smart-dev-content { text-align: center; padding: 60px 0; }
.smart-dev-title {
    font-family: var(--font-heading); font-size: clamp(40px, 6vw, 80px);
    font-weight: 800; line-height: 1.1; margin-bottom: 32px;
}
.sd-bracket { color: var(--accent); }
.sd-stars { color: var(--accent); font-size: 0.5em; vertical-align: super; }
.smart-dev-bottom { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.smart-dev-text { font-size: 16px; color: var(--white-50); max-width: 400px; line-height: 1.6; }
.smart-dev-buttons { display: flex; gap: 12px; }
.sd-btn {
    padding: 14px 32px; border-radius: 100px; font-size: 14px;
    font-weight: 600; transition: all 0.3s var(--ease);
}
.sd-btn-white { background: var(--white); color: var(--bg); box-shadow: var(--neon-shadow); }
.sd-btn-white:hover { background: var(--accent); transform: scale(1.03); box-shadow: var(--neon-shadow-hover); }
.sd-btn-gray {
    background: var(--white-08); color: var(--white);
    border: 1px solid var(--white-15);
    box-shadow: 0 0 14px rgba(200, 255, 0, 0.15);
}
.sd-btn-gray:hover {
    background: rgba(200, 255, 0, 0.08); border-color: var(--accent); color: var(--accent);
    box-shadow: var(--neon-shadow-hover);
}

.smart-dev-screens { position: relative; padding: 60px 0; }
.screens-row {
    display: flex; gap: 16px; margin-bottom: 16px;
    animation: screens-scroll 40s linear infinite;
}
.screens-row.reverse { animation-direction: reverse; }
.screen-item {
    flex-shrink: 0; width: 280px; height: 200px;
    border-radius: 16px; overflow: hidden;
}
.screen-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes screens-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- PORTFOLIO ---- */
.portfolio { background: var(--bg); }
.portfolio-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 60px; gap: 60px;
}
.portfolio-head-right { max-width: 500px; }
.portfolio-head-title {
    font-family: var(--font-heading); font-size: clamp(28px, 3vw, 40px);
    font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}
.portfolio-grid { display: flex; flex-direction: column; gap: 24px; }
.portfolio-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.portfolio-row:nth-child(even) { grid-template-columns: 1fr 1.3fr; }
.portfolio-item {
    position: relative; border-radius: 20px; overflow: hidden;
    height: 400px; cursor: pointer;
}
.portfolio-item-image { position: absolute; inset: 0; }
.portfolio-item-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.portfolio-item:hover .portfolio-item-image img { transform: scale(1.06); }
.portfolio-item-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    pointer-events: none;
}
.portfolio-item-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 32px; display: flex;
    justify-content: space-between; align-items: center; z-index: 1;
}
.portfolio-item-info h3 {
    font-family: var(--font-heading); font-size: 20px; font-weight: 600;
}
.portfolio-item-arrow {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--white-30); display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s; flex-shrink: 0;
    box-shadow: 0 0 14px rgba(200, 255, 0, 0.2);
}
.portfolio-item-arrow svg { width: 19px; height: 12px; color: var(--white); }
.portfolio-item:hover .portfolio-item-arrow {
    background: var(--accent); border-color: var(--accent);
    box-shadow: var(--neon-shadow-hover);
}
.portfolio-item:hover .portfolio-item-arrow svg { color: var(--bg); }

/* ---- BANNER ---- */
.banner { background: var(--bg-alt); padding: 120px 0; overflow: hidden; }
.banner-display {
    background: var(--bg-card); border-radius: 32px;
    padding: 80px 60px; text-align: center;
}
.banner-title {
    font-family: var(--font-heading); font-size: clamp(32px, 5vw, 64px);
    font-weight: 700; line-height: 1.2;
}
.banner-title span { display: block; }
.banner-title em {
    font-style: italic; color: var(--accent);
    font-family: Georgia, 'Times New Roman', serif; font-weight: 400;
}

/* ---- REVIEWS ---- */
.reviews { background: var(--bg); position: relative; overflow: hidden; }
.reviews-bg { position: absolute; inset: 0; pointer-events: none; }
.reviews-bg span {
    position: absolute; border-radius: 50%;
    background: var(--accent); opacity: 0.03; filter: blur(100px);
}
.reviews-bg span:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.reviews-bg span:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.reviews-bg span:nth-child(3) { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.reviews-head { margin-bottom: 48px; }
.reviews-title {
    font-family: var(--font-heading); font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
}
.reviews-slider { position: relative; }
.review-card { display: none; animation: review-fade-in 0.6s var(--ease); }
.review-card.active { display: block; }
@keyframes review-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.review-card-inner {
    background: var(--bg-card); border: 1px solid var(--white-08);
    border-radius: 24px; padding: 48px; max-width: 700px;
}
.review-stars { color: #facc15; font-size: 20px; letter-spacing: 2px; margin-bottom: 24px; }
.review-text {
    font-size: 18px; line-height: 1.8; color: var(--white-70);
    font-style: italic; margin-bottom: 32px;
}
.review-author { display: flex; align-items: center; gap: 16px; }
.review-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent); color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 16px; font-weight: 700;
}
.review-name { font-family: var(--font-heading); font-size: 16px; font-weight: 600; }
.review-role { font-size: 13px; color: var(--white-50); }

.reviews-controls { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.review-nav-btn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--white-15);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 14px rgba(200, 255, 0, 0.18);
}
.review-nav-btn:hover {
    border-color: var(--accent); color: var(--accent);
    background: rgba(200, 255, 0, 0.08);
    box-shadow: var(--neon-shadow-hover);
}
.review-nav-btn:hover svg { color: var(--accent); }
.review-nav-btn svg { width: 14px; height: 12px; color: var(--white); }
.review-dots { display: flex; gap: 8px; }
.review-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--white-15); transition: all 0.3s; cursor: pointer;
}
.review-dot.active { width: 24px; border-radius: 4px; background: var(--accent); }

/* ---- CONTACT ---- */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-title {
    font-family: var(--font-heading); font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}
.contact-text { font-size: 15px; color: var(--white-50); line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
    display: flex; flex-direction: column; gap: 4px;
    padding: 16px 0; border-bottom: 1px solid var(--white-08);
}
.cd-label {
    font-size: 11px; font-weight: 600; color: var(--white-30);
    text-transform: uppercase; letter-spacing: 1px;
}
.cd-value { font-size: 16px; font-weight: 500; color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { position: relative; margin-bottom: 32px; }
.form-field input, .form-field textarea {
    width: 100%; padding: 16px 0; border: none;
    border-bottom: 1px solid var(--white-08);
    background: transparent; color: var(--white);
    font-family: var(--font-body); font-size: 15px;
    outline: none; transition: border-color 0.3s; resize: none;
}
.form-field input:focus, .form-field textarea:focus { border-bottom-color: var(--accent); }
.form-field label {
    position: absolute; top: 16px; left: 0;
    font-size: 14px; color: var(--white-30);
    pointer-events: none; transition: all 0.3s var(--ease);
}
.form-field input:focus + label, .form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label, .form-field textarea:not(:placeholder-shown) + label {
    top: -10px; font-size: 11px; color: var(--accent);
}

/* ---- FOOTER ---- */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--white-08); }
.footer-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-brand { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { font-size: 14px; color: var(--white-50); transition: color 0.3s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid var(--white-08);
}
.footer-bottom p { font-size: 13px; color: var(--white-30); }
.footer-social { display: flex; gap: 24px; }
.footer-social-link { font-size: 13px; color: var(--white-30); transition: color 0.3s; }
.footer-social-link:hover { color: var(--accent); }

/* ---- ANIMATIONS ---- */
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-animate="reveal"] { opacity: 0; transform: translateY(30px); }
[data-animate="fade-up"] { opacity: 0; transform: translateY(40px); }
[data-animate].visible { opacity: 1; transform: translateY(0) translateX(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1180px) {
    .container { padding: 0 24px; }
    .hero-content { flex-direction: column; align-items: flex-start; gap: 40px; }
    .hero-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; flex-wrap: wrap; gap: 20px; min-height: auto; align-self: auto; }
    .hero-right .become-client-btn { margin: 0; }
    .about-content { grid-template-columns: 1fr; }
    .about-right { display: none; }
    .portfolio-head { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-head { flex-direction: column; }
    .header-nav { display: none; }
    .fixed-bar { display: flex; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .portfolio-row { grid-template-columns: 1fr; }
    .portfolio-item { height: 280px; }
    .about-stats-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .showreel-preview { width: 200px; height: 130px; }
    .service-card { min-height: 320px; }
    .service-card-content { padding: 32px; }
    .footer-top { flex-direction: column; gap: 24px; }
    .footer-nav { flex-wrap: wrap; gap: 16px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .banner-display { padding: 48px 32px; }
    .review-card-inner { padding: 32px; }
    .custom-cursor, .custom-cursor-follower { display: none; }
    .fullscreen-menu { padding: 40px; }
    .screens-row { gap: 12px; }
    .screen-item { width: 200px; height: 140px; }
}

@media (max-width: 480px) {
    .hero-title-line1 { font-size: 26px; }
    .hero-title-line2 { font-size: 26px; }
    .hero-typing { font-size: 32px; }
    .fixed-bar { top: 16px; right: 16px; }
    .header { padding: 20px 16px; }
}
