/* ============================================
   Portfolio Redesign — Soulful Blue + Cyan
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Blues */
    --blue-900: #0F172A;
    --blue-800: #1E293B;
    --blue-700: #334155;
    --blue-600: #475569;
    --blue-500: #3B82F6;
    --blue-400: #60A5FA;
    --blue-300: #93C5FD;
    --blue-200: #BFDBFE;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;

    /* Cyan Accent */
    --amber: #06B6D4;
    --amber-light: #22D3EE;
    --amber-dark: #0891B2;

    /* Surfaces */
    --bg-main: #ffffff;
    --bg-section: #F0F4FF;
    --bg-dark: var(--blue-900);
    --white: #ffffff;

    /* Text */
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #94A3B8;
    --text-on-dark: #E2E8F0;

    /* Borders */
    --border-light: #E2E8F0;
    --border-blue: rgba(59, 130, 246, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E3A8A, #3B82F6);
    --gradient-accent: linear-gradient(135deg, #3B82F6, #06B6D4);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #1E40AF 100%);
    --gradient-warm: linear-gradient(135deg, #06B6D4, #3B82F6);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-blue: 0 8px 30px rgba(59, 130, 246, 0.15);
    --shadow-amber: 0 8px 30px rgba(6, 182, 212, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-main);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
}

ul {
    list-style: none;
}

/* ========== Typography ========== */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: inherit;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.btn-dark {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--blue-500);
    color: var(--blue-500);
    background: rgba(59, 130, 246, 0.05);
    opacity: 1;
}

/* ========== Gradient Divider ========== */
.section-divider {
    height: 4px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 2px;
    opacity: 0.3;
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.navbar.at-hero {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.at-hero .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.at-hero .nav-links a:hover {
    color: var(--amber);
}

.navbar.at-hero .logo {
    color: var(--white);
}

.navbar.at-hero .nav-toggle span {
    background: var(--white);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s var(--ease);
}

.logo-img {
    height: 36px;
    width: auto;
    transition: all 0.3s var(--ease);
}

.navbar.at-hero .logo-img {
    filter: brightness(0) invert(1);
}

.footer-logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--blue-500);
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* ========== Hero — Dark Immersive ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    padding: 100px 24px 60px;
    overflow: hidden;
}

/* Animated gradient mesh */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite reverse;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.greeting {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--white);
}

.hero h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter {
    font-size: 18px;
    color: var(--blue-300);
    margin-bottom: 24px;
    height: 28px;
}

.dynamic-text {
    color: var(--amber);
    font-weight: 600;
}

.cursor-blink {
    color: var(--amber);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-desc {
    font-size: 16px;
    color: var(--blue-200);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero .btn-primary {
    background: var(--amber);
    border: none;
    color: var(--blue-900);
    border-radius: 8px;
    font-weight: 700;
    box-shadow: var(--shadow-amber);
}

.hero .btn-primary:hover {
    background: var(--amber-light);
    color: var(--blue-900);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.35);
}

.hero .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    border-color: var(--amber);
    background: rgba(245, 158, 11, 0.15);
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
}

.social-links svg {
    width: 18px;
    height: 18px;
    color: var(--blue-300);
}

.social-links a:hover svg {
    color: var(--amber);
}

/* ========== Hero Image ========== */
.hero-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
}

.image-placeholder {
    width: 280px;
    height: 280px;
    border: 3px solid transparent;
    background: linear-gradient(var(--blue-800), var(--blue-800)) padding-box,
        var(--gradient-accent) border-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.2), 0 0 120px rgba(6, 182, 212, 0.1);
    position: relative;
}

/* Pulsing ring */
.image-placeholder::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: transparent;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.initials {
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating Badges — Glassmorphism */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-1 {
    top: 20px;
    right: -10px;
}

.badge-1 svg {
    width: 16px;
    height: 16px;
    color: var(--amber);
}

.badge-1 span {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.badge-2 {
    bottom: 30px;
    left: -20px;
    flex-direction: column;
    text-align: center;
    animation-delay: 0.5s;
}

.badge-2 .number {
    font-size: 20px;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}

.badge-2 span:last-child {
    font-size: 10px;
    color: var(--blue-300);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-400);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ========== Section Common ========== */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue-500);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.12);
}

/* ========== Work ========== */
.work {
    padding: 100px 0;
    background: var(--bg-main);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.work-card {
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.work-img {
    aspect-ratio: 16/10;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.work-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.work-card:hover .work-img::after {
    opacity: 1;
}

.work-img span {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.work-info {
    padding: 24px;
}

.work-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.work-info h3 {
    margin: 8px 0;
    color: var(--text-dark);
}

.work-info p {
    font-size: 14px;
    color: var(--text-medium);
}

/* ========== Services ========== */
.services {
    padding: 100px 0;
    background: var(--bg-section);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

/* Gradient top bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
    border-color: var(--border-blue);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-card .price {
    font-size: 13px;
    font-weight: 600;
    color: var(--amber-dark);
    margin-top: 12px;
}

/* ========== Process / How I Work ========== */
.process {
    padding: 100px 0;
    background: var(--bg-main);
}

.process h2 {
    margin-bottom: 12px;
}

.process-intro {
    color: var(--text-medium);
    margin-bottom: 48px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Connecting gradient line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    padding: 32px 24px;
    background: var(--bg-section);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease);
    border: 1px solid transparent;
}

.process-step:hover {
    background: var(--white);
    border-color: var(--border-blue);
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-primary);
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-blue);
}

.process-step h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========== About ========== */
.about {
    padding: 100px 0;
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-img .placeholder {
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-img .placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(6, 182, 212, 0.3) 100%);
}

.about-content .lead {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat {
    position: relative;
}

.stat-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s var(--ease);
}

.skill-item:hover {
    border-color: var(--border-blue);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.skill-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    flex-shrink: 0;
}

.skill-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.skill-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ========== Contact — Dark Contrast ========== */
.contact {
    padding: 100px 0;
    background: var(--blue-900);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.contact .section-tag {
    color: var(--amber);
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.15);
}

.contact h2 {
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    color: var(--blue-300);
    margin-bottom: 28px;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-links a,
.contact-links .location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-on-dark);
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.3s var(--ease);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-links a:hover {
    color: var(--amber);
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
    opacity: 1;
    transform: translateX(4px);
}

.contact-links svg {
    width: 18px;
    height: 18px;
    color: var(--amber);
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--blue-400);
    opacity: 0.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form select {
    color: var(--blue-300);
}

.contact-form select option {
    background: var(--blue-800);
    color: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    width: 100%;
    background: var(--amber);
    color: var(--blue-900);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-amber);
}

.contact-form .btn:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
}

/* ========== Footer ========== */
.footer {
    padding: 32px 0;
    background: var(--blue-900);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .logo {
    display: flex;
    align-items: center;
}

.footer p {
    font-size: 13px;
    color: var(--blue-400);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .image-placeholder {
        width: 220px;
        height: 220px;
    }

    .initials {
        font-size: 4rem;
    }

    .floating-badge {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-img {
        display: flex;
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    section {
        padding: 70px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transition: right 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .work-grid,
    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-img .placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .stats {
        gap: 24px;
    }
}

/* ========== Scroll Reveal Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
* {
    scroll-behavior: smooth;
}