﻿:root {
    --bg-dark: #050508;
    --accent-yellow: #facc15;
    --accent-yellow-glow: rgba(250, 204, 21, 0.5);
    --blue-glow: rgba(37, 99, 235, 0.4);
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-heading: 'Poppins', sans-serif;
    --font-context: 'Poppins', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.5rem;
    --text-xl: 2rem;
    --text-2xl: 2.75rem;
    --text-3xl: clamp(2.2rem, 5vw, 3.5rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: none;
}
@media (hover: none) {
    * { cursor: auto; }
    .custom-cursor { display: none; }
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-context);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em; /* Less tracking */
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .logo, .nav-link, button.filter-btn, .btn {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.05em; /* Less tracking for headings */
}

strong {
    font-weight: 600;
}

/* Typography Overrides */
.italic-text {
    font-family: var(--font-context);
    font-style: italic;
    font-weight: 400;
}

/* Background Texture */
.halftone-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}
.custom-cursor.hovering {
    width: 40px;
    height: 40px;
    background-color: rgba(250, 204, 21, 0.1);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    font-size: 3rem;
    text-transform: uppercase;
    animation: pulseGlow 2s infinite;
    background: linear-gradient(to right, #8bb4b5, #e0d588);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    margin: 1rem auto;
    border-radius: 2px;
    overflow: hidden;
}
.loader-progress {
    height: 100%;
    width: 0%;
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow-glow);
    transition: width 0.1s linear;
}
.loader-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-yellow-glow); }
    50% { text-shadow: 0 0 25px var(--accent-yellow-glow), 0 0 10px var(--accent-yellow); }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 20px;
    width: 90%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.85rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,8,0.9), rgba(255,255,255,0.03));
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(250, 204, 21, 0.05);
}
.logo {
    font-size: 1.35rem;
    background: linear-gradient(to right, #8bb4b5, #e0d588);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    display: inline-block;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
}
.nav-link:hover {
    color: var(--accent-yellow);
    transform: translateY(-3px);
    text-shadow: 0 0 12px var(--accent-yellow-glow);
}

/* Shining Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: none;
}
.shine-effect:hover::after {
    animation: shine 0.7s forwards;
}
@keyframes shine {
    100% { left: 200%; }
}

/* Audio Toggle Button */
.audio-btn {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: none;
    transition: transform 0.3s, color 0.3s;
}
.audio-btn:hover {
    transform: scale(1.1);
    color: var(--accent-yellow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

/* Camera Viewfinder Overlay Styles */
.viewfinder-overlay {
    position: absolute;
    top: 130px;
    bottom: 50px;
    left: 5%;
    right: 5%;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
    .viewfinder-overlay {
        top: 110px;
        bottom: 30px;
        left: 4%;
        right: 4%;
    }
    .viewfinder-format, .viewfinder-audio-level {
        display: none !important; /* Hide extra info on mobile to keep it clean */
    }
}

.viewfinder-corner {
    width: 20px;
    height: 20px;
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    position: absolute;
}
.viewfinder-corner.top-left { border-width: 2px 0 0 2px; top: 0; left: 0; }
.viewfinder-corner.top-right { border-width: 2px 2px 0 0; top: 0; right: 0; }
.viewfinder-corner.bottom-left { border-width: 0 0 2px 2px; bottom: 0; left: 0; }
.viewfinder-corner.bottom-right { border-width: 0 2px 2px 0; bottom: 0; right: 0; }

.viewfinder-top-bar, .viewfinder-bottom-bar {
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
}
.viewfinder-top-bar { top: 15px; }
.viewfinder-bottom-bar { bottom: 15px; }

/* REC Blinking Dot */
.viewfinder-status {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rec-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.7);
    animation: recBlink 1.2s steps(2, start) infinite;
}
.rec-text {
    font-weight: 700;
    color: #ff3b30;
}
@keyframes recBlink {
    to { opacity: 0; }
}

/* Audio Level Simulator */
.viewfinder-audio-level {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: monospace;
    font-size: 0.7rem;
}
.audio-bar-channel {
    display: flex;
    align-items: center;
    gap: 6px;
}
.audio-segments {
    display: flex;
    gap: 2px;
}
.audio-segments span {
    width: 6px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.08);
}
.audio-segments span.green { background-color: rgba(34, 197, 94, 0.4); }
.audio-segments span.yellow { background-color: rgba(234, 179, 8, 0.4); }

/* Flicker animation for dynamic audio level look */
.audio-segments span:nth-child(3) { animation: audioFlicker 0.4s infinite alternate; }
.audio-segments span:nth-child(4) { animation: audioFlicker 0.3s infinite alternate 0.1s; }
.audio-segments span:nth-child(5) { animation: audioFlicker 0.5s infinite alternate 0.2s; }

@keyframes audioFlicker {
    0% { opacity: 0.15; }
    100% { opacity: 1; }
}

.viewfinder-timecode {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}
.hero-title {
    font-size: var(--text-3xl);
    line-height: 1.2;
    margin-bottom: 2.2rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px var(--blue-glow);
}
.hero-subtitle {
    font-size: var(--text-md);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.hero-social-proof {
    font-size: 0.9rem;
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px var(--accent-yellow-glow);
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary {
    background: linear-gradient(45deg, var(--accent-yellow), #d97706);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-yellow-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--accent-yellow-glow);
}
.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

.navbar-cta {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
}

/* Deep Blue Glow background effect */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Sections Global */
section {
    padding: 6.5rem 5%;
    position: relative;
    z-index: 10;
}
.section-title {
    font-size: var(--text-2xl);
    margin: 0 auto 2rem auto;
    text-align: center;
    background: linear-gradient(to right, #8bb4b5, #e0d588);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

/* Portfolio Section */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.filter-btn:hover, .filter-btn.active {
    background: rgba(250, 204, 21, 0.1);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 15px var(--accent-yellow-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(5,5,8,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
}

.portfolio-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 2;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(5,5,8,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.portfolio-item:hover .portfolio-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/9;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
}
.portfolio-item:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 30px var(--accent-yellow-glow);
    transform: translateY(-5px);
}
.portfolio-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}
.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
@media (hover: none) {
    .portfolio-item-overlay {
        opacity: 1;
    }
}
.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-meta-line {
    font-size: var(--text-xs, 0.75rem);
    color: var(--text-muted);
    margin-top: 0.2rem;
}
.portfolio-item h3 {
    margin-bottom: 0.5rem;
}
.portfolio-category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-yellow);
    background: rgba(250, 204, 21, 0.15);
    border: 1px solid var(--accent-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    font-weight: 600;
    width: fit-content;
}
.portfolio-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 100%;
}

/* Glassmorphism Utilities */
.glassmorphism {
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Modal Popup */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}
.modal.show {
    opacity: 1;
    display: flex;
}
.modal-content {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}
.modal.show .modal-content {
    transform: translateY(0);
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    z-index: 10;
    transition: color 0.3s;
}
.close-modal:hover {
    color: var(--accent-yellow);
}
.modal-body {
    padding: 0;
}
.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}
.video-container video {
    width: 100%;
    height: 100%;
}
.project-details {
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.project-details h3 {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}
.meta-info {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
}
.engagement {
    margin-top: 1.5rem;
}
.like-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.like-btn:hover, .like-btn.liked {
    background: rgba(250, 204, 21, 0.2);
    color: var(--accent-yellow);
}
.like-btn.liked svg {
    fill: var(--accent-yellow);
}

.comments-section {
    padding: 2rem;
}
.comments-section h4 {
    margin-bottom: 1.5rem;
}
#comments-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
#comments-list li {
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}
#comment-form {
    display: flex;
    gap: 1rem;
}
#comment-input {
    flex: 1;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
}
#comment-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
}
#comment-form button {
    padding: 0 2rem;
    border-radius: 10px;
    background: var(--accent-yellow);
    border: none;
    color: var(--bg-dark);
    font-weight: bold;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
    box-shadow: 0 0 30px var(--accent-yellow-glow);
}
.pricing-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}
.price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
}
.price span {
    font-size: 1rem;
    color: var(--text-muted);
}
.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}
.features li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}
.pricing-card.featured {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
}

/* FAQ / Questions Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.faq-item {
    padding: 1.1rem 1.6rem;
    border-radius: 15px;
    transition: all 0.3s;
    overflow: hidden;
}
.faq-item:hover {
    border-color: var(--accent-yellow);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: var(--text-lg, 1.1rem);
    padding: 0;
}
.faq-toggle-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(250, 204, 21, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--accent-yellow);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: rgba(250, 204, 21, 0.15);
    color: var(--accent-yellow);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 0.9rem;
}
.faq-item p {
    font-weight: 300;
}
.faq-title {
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#questions {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

/* My Page Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    border-radius: 20px;
    padding: 3rem;
}
.about-text h3 {
    font-size: var(--text-xl);
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
}
.about-opener {
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--accent-yellow);
    padding-left: 1rem;
}
.about-desc {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}
.about-stats-list {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}
@media (max-width: 480px) {
    .about-stats-list {
        flex-direction: column;
        gap: 0.8rem;
    }
}
.about-stats-list li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: border-color 0.3s;
}
.about-stats-list li:hover {
    border-color: var(--accent-yellow-glow);
}
.stat-num {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px var(--accent-yellow-glow);
}
.stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    font-style: normal;
}
.about-closing {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 500;
}
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: var(--text-sm);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    transition: all 0.3s;
}
.social-link:hover {
    background: rgba(250, 204, 21, 0.1);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 15px var(--accent-yellow-glow);
}
.about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    max-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.08) saturate(1.05);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}
.about-image-caption {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* Stretch both columns to match height */
}

/* Left side tabs */
.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.service-tab {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.01);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.service-tab:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}
.service-tab.active {
    border-color: var(--accent-yellow);
    background: rgba(250, 204, 21, 0.04);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.08);
}
.tab-thumb {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.2);
}
.tab-info h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}
.tab-info p {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-style: normal;
    font-weight: 400;
}

/* Right side showcase */
.service-showcase {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    height: 100%; /* Stretch height to match left tabs column */
}
.showcase-visual {
    position: relative;
    height: 190px; /* Fixed height on desktop to keep everything aligned */
    background: #020205;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    flex-shrink: 0;
}
.showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: opacity 0.4s ease;
}
.showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(5,5,8,0.9), rgba(5,5,8,0.2) 60%, transparent);
}
.showcase-overlay-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(0,0,0,0.9), 0 0 35px var(--accent-yellow-glow);
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.45);
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.12em;
    transform: rotate(-1.5deg);
    font-style: normal;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}
.showcase-details {
    padding: 1.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
    justify-content: space-between; /* Space details out inside the showcase height */
}
.showcase-details h3 {
    font-size: var(--text-xl);
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
}
.showcase-tagline {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin: 0;
}
.showcase-description {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}
.showcase-outcome-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.2rem;
    border-radius: 14px;
    font-size: var(--text-sm);
    color: var(--text-white);
    line-height: 1.5;
    margin: 0;
}
.showcase-outcome-box strong {
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.2rem;
}

@media (max-width: 900px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .services-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.8rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .services-tabs::-webkit-scrollbar {
        display: none;
    }
    .service-tab {
        flex-shrink: 0;
        min-width: 260px;
    }
    .showcase-visual {
        height: auto;
        aspect-ratio: 16/9;
    }
    .showcase-details {
        padding: 1.5rem;
        gap: 1.2rem;
    }
}

/* Credibility Stats Bar */
.credibility-bar {
    padding: 4.5rem 5%;
    background: linear-gradient(180deg, transparent, rgba(250, 204, 21, 0.02), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.credibility-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}
.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    border-radius: 20px;
}
.cred-stat {
    text-align: center;
    padding: 0.5rem;
    border-right: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}
.cred-stat:last-child {
    border-right: none;
}
.cred-stat:hover {
    transform: translateY(-4px);
}
.cred-stat .stat-num {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-yellow);
    line-height: 1;
    text-shadow: 0 0 20px var(--accent-yellow-glow);
    display: block;
    margin-bottom: 0.3rem;
}
.cred-stat .stat-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.5rem;
}
.cred-stat .stat-micro {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.4;
    font-style: italic;
    max-width: 160px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    .cred-stat {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 1rem;
    }
    .cred-stat:nth-child(3), .cred-stat:nth-child(4) {
        border-bottom: none;
    }
    .cred-stat .stat-num {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .cred-stat {
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 1rem;
    }
    .cred-stat:last-child {
        border-bottom: none;
    }
    .cred-stat .stat-num {
        font-size: 2.2rem;
    }
    .credibility-intro {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* Why Work With Me Section */
.why-me-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.why-me-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s;
}
.why-me-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.08);
}
.why-me-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}
.why-me-card h3 {
    font-size: var(--text-lg);
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}
.why-me-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Launch Offer Banner Section */
.launch-banner-container {
    padding: 6rem 5% 4rem 5%;
    display: flex;
    justify-content: center;
}
.launch-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    width: 100%;
    padding: 3rem 4rem;
    border-radius: 24px;
    border: 1px solid rgba(250, 204, 21, 0.3);
    gap: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(250, 204, 21, 0.03);
    position: relative;
    overflow: hidden;
}
.launch-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(250, 204, 21, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.launch-banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
}
.launch-badge {
    display: inline-block;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 0.7rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 5px var(--accent-yellow-glow);
}
.launch-banner-content h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.8rem;
    color: var(--text-white);
}
.launch-banner-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.launch-banner-action {
    position: relative;
    z-index: 2;
}
.launch-banner-action .btn {
    white-space: nowrap;
    padding: 1.1rem 2.8rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .launch-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    .launch-banner-content p {
        margin: 0 auto;
    }
    .launch-banner-action {
        width: 100%;
    }
    .launch-banner-action .btn {
        width: 100%;
    }
}

/* Contact Section */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}
.contact-info {
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}
.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
.info-list {
    list-style: none;
    padding: 0;
    width: 100%;
}
.info-list li {
    margin-bottom: 1rem;
    color: var(--text-white);
}
.info-list li strong {
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 0.2rem;
}
.contact-form {
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}
.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: none;
}

/* Hamburger & Navbar Right */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger:hover {
    transform: translateY(-2px);
}
.hamburger:hover span {
    background: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow-glow);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Large viewport increase */
@media (min-width: 1400px) {
    section {
        padding-left: 8%;
        padding-right: 8%;
    }
}

/* === RESPONSIVE BREAKPOINTS === */

/* Tablet (900px) */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-height: 350px;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .modal-content {
        max-width: 95vw;
    }
    .meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop links */
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(5,5,8,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 99;
        list-style: none;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links .nav-link {
        font-size: 2rem;
    }
    /* Navbar adjustments */
    .navbar {
        top: 12px;
        width: 92%;
        padding: 0.7rem 1.4rem;
    }
    /* Hero */
    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    /* Section */
    section {
        padding: 3.5rem 5%;
    }
    .section-title {
        font-size: 2rem;
    }
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    /* About */
    .about-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .social-links {
        flex-wrap: wrap;
    }
    /* Modal */
    .modal {
        padding: 0.5rem;
        align-items: flex-end;
    }
    .modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
    }
    .project-details {
        padding: 1.2rem;
    }
    .project-details h3 {
        font-size: 1.4rem;
    }
    .comments-section {
        padding: 1.2rem;
    }
    #comment-form {
        flex-direction: column;
    }
    /* Contact */
    .contact-form {
        padding: 1.5rem;
    }
    .contact-info {
        padding: 1.5rem;
    }
}

/* Small phones (400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 2rem;
    }
    .navbar {
        padding: 0.7rem 1.2rem;
    }
    .logo {
        font-size: 1.1rem;
    }
    .filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
}




