/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #050505;
    color: white;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.highlight-red {
    color: #F22626;
}

.stroke-text {
    color: transparent;
    -webkit-text-stroke: 2px #dc2626;
}

.stroke-blue {
    color: transparent;
    -webkit-text-stroke: 2px #3b82f6;
}

.stroke-red {
    color: transparent;
    -webkit-text-stroke: 2px #dc2626;
}

.mobile-break {
    display: block;
}

.desktop-break {
    display: none;
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
.main-container {
    position: relative;
    min-height: 300vh;
    background: #050505;
    overflow-x: hidden;
}

.main-container ::selection {
    background: #F22626;
    color: white;
}

/* ========================================
   BACKGROUND OVERLAYS
   ======================================== */
.bg-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    z-index: 0;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 32px 32px;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.noise-overlay svg {
    width: 100%;
    height: 100%;
}

.spider-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
    mix-blend-mode: color-dodge;
}

.spider-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.1);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 40;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(220,38,38,0.2);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    filter: invert(1);
    opacity: 0.9;
}

.brand-name {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: white;
    text-transform: uppercase;
    display: none;
}

.nav-links {
    display: none;
    gap: 2rem;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.nav-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ef4444;
}

.menu-btn {
    color: white;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    z-index: 50;
    transition: color 0.3s;
}

.menu-btn:hover {
    color: #ef4444;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    z-index: 10;
    width: 100%;
}

/* Welcome Badge */
.welcome-badge {
    position: absolute;
    top: 7rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 35;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    pointer-events: none;
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.5));
}

.welcome-text {
    font-family: 'Arial', sans-serif;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: rgba(220,38,38,0.8);
    padding: 0.25rem 1rem;
    border: 1px solid #ef4444;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(220,38,38,0.5);
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 12vw;
    font-style: italic;
    text-transform: uppercase;
    color: white;
    text-align: center;
    line-height: 0.85;
    letter-spacing: -0.025em;
    -webkit-text-stroke: 1.2px #dc2626;
    text-shadow: 2px 2px 0 #b91c1c, 0 10px 20px rgba(0,0,0,0.8);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    width: 180%;
    max-width: 600px;
    aspect-ratio: 1;
    z-index: 30;
    pointer-events: none;
    order: -1;
    margin-top: -4rem;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(220,38,38,0.3) 0%, transparent 70%);
    filter: blur(3rem);
    border-radius: 50%;
    transform: scale(1.25);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 20px 50px rgba(220,38,38,0.5));
    transform: scale(1.1);
}

/* Hero Left */
.hero-left {
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-tag {
    color: #ef4444;
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-heading {
    font-family: 'Anton', sans-serif;
    font-size: 2.25rem;
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: white;
    text-transform: uppercase;
    font-style: italic;
}

.hero-desc {
    font-family: 'Arial', sans-serif;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    max-width: 280px;
    line-height: 1.625;
    margin-top: 1rem;
}

/* Hero Right */
.hero-right {
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 3rem;
}

.location-box .label,
.project-box .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.4);
    font-family: 'Arial', sans-serif;
}

.location-box .value {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    font-style: italic;
    color: white;
}

.project-box {
    padding: 1rem;
    border-left: 2px solid #dc2626;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    width: 100%;
    max-width: 200px;
}

.project-box .label {
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;
}

.project-box .value {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.project-box:last-of-type {
    border-left-color: #3b82f6;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: #dc2626;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 30;
}

.footer-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: rgba(255,255,255,0.3);
    font-family: 'Arial', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-quote {
    font-size: 0.75rem;
    font-style: italic;
    font-family: serif;
    max-width: 384px;
    color: rgba(255,255,255,0.8);
    line-height: 1.625;
}

.footer-number {
    font-family: 'Anton', sans-serif;
    font-size: 3.75rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.025em;
    color: #dc2626;
    line-height: 1;
}

.footer-era {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
}

/* ========================================
   TICKER
   ======================================== */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 30;
    display: flex;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-family: 'Anton', sans-serif;
    font-size: 1.875rem;
    color: transparent;
    opacity: 0.3;
    text-transform: uppercase;
    padding-right: 3rem;
    -webkit-text-stroke: 1px white;
    cursor: default;
    transition: all 0.3s;
    flex-shrink: 0;
}

.ticker-item:hover {
    opacity: 1;
    color: #F22626;
    filter: drop-shadow(0 0 20px rgba(242,38,38,0.5));
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    position: relative;
    z-index: 30;
    background: #0A0A0A;
    padding: 5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 2.25rem;
    color: white;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.4));
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #F22626;
    white-space: nowrap;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    position: relative;
    z-index: 30;
    min-height: 100vh;
    background: #050505;
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 15%;
    right: 5%;
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    display: none;
}

.about-bg-text span {
    font-family: 'Anton', sans-serif;
    font-size: 120px;
    text-transform: uppercase;
    color: transparent;
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 2px rgba(220,38,38,0.8);
    text-shadow: 0 0 30px rgba(220,38,38,0.3);
    transform: rotate(-90deg);
    white-space: nowrap;
}

.about-image {
    position: absolute;
    right: -20%;
    bottom: -10%;
    width: 400px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    mix-blend-mode: lighten;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 50px rgba(220,38,38,0.3));
}

.about-content {
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    width: 100%;
}

.about-header {
    margin-bottom: 2rem;
}

.about-title {
    font-family: 'Anton', sans-serif;
    font-size: 12vw;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 1rem;
    line-height: 1;
}

.about-desc {
    font-family: 'Arial', sans-serif;
    color: #9ca3af;
    max-width: 672px;
    font-size: 0.875rem;
    mix-blend-mode: screen;
    line-height: 1.625;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Identity Card */
.identity-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border-left: 2px solid #dc2626;
    padding: 1.5rem;
    border-radius: 0 1rem 1rem 0;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.identity-list {
    list-style: none;
    font-family: 'Arial', sans-serif;
    color: #d1d5db;
    font-size: 0.875rem;
}

.identity-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.identity-list .label {
    color: #6b7280;
}

.identity-list .value {
    font-weight: 500;
    color: white;
    text-align: right;
}

.identity-list .highlight-red {
    color: #F22626;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: box-shadow 0.3s;
}

.btn-white {
    background: white;
    color: black;
    box-shadow: 0 5px 20px rgba(255,255,255,0.1);
}

.btn-white:hover {
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.btn-white span {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white .hover-bg {
    position: absolute;
    inset: 0;
    background: #dc2626;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.btn-white:hover .hover-bg {
    transform: translateY(0);
}

.btn-white:hover span {
    color: white;
}

.btn-red {
    background: #dc2626;
    color: white;
    box-shadow: 0 5px 20px rgba(220,38,38,0.2);
}

.btn-red:hover {
    box-shadow: 0 5px 20px rgba(220,38,38,0.5);
}

.btn-red span {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-red .hover-bg {
    position: absolute;
    inset: 0;
    background: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.btn-red:hover .hover-bg {
    transform: translateY(0);
}

.btn-red:hover span {
    color: #b91c1c;
}

/* Quote Card */
.quote-card {
    padding: 1.5rem;
    border-left: 2px solid #3b82f6;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    position: relative;
    border-radius: 0 1rem 1rem 0;
}

.quote-mark {
    font-size: 100px;
    font-family: serif;
    position: absolute;
    top: -2rem;
    left: -1rem;
    color: rgba(242,38,38,0.2);
    line-height: 1;
}

.quote-text {
    font-family: serif;
    font-size: 1.125rem;
    color: #e5e7eb;
    position: relative;
    z-index: 10;
    font-style: italic;
    line-height: 1.625;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    border-top-color: rgba(255,255,255,0.3);
    background: rgba(24,24,27,0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.8);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    position: relative;
    color: white;
}

.social-icon .glow {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1rem;
    filter: blur(15px);
    opacity: 0.4;
    border-radius: 50%;
    transition: opacity 0.3s;
    pointer-events: none;
}

.social-icon:hover .glow {
    opacity: 1;
}

.facebook { color: #1877F2; }
.facebook .glow { background: #1877F2; }

.instagram { color: #E1306C; }
.instagram .glow { background: #E1306C; }

.whatsapp { color: #25D366; }
.whatsapp .glow { background: #25D366; }

.tiktok { color: #ff0050; }
.tiktok .glow { background: #ff0050; }

.email { color: #F22626; }
.email .glow { background: #F22626; }

/* ========================================
   SKILLS SECTION
   ======================================== */
.skills-section {
    position: relative;
    z-index: 30;
    min-height: 100vh;
    background: #0A0A0A;
    padding: 8rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.skills-bg-text {
    position: absolute;
    top: 25%;
    right: 5%;
    opacity: 0.4;
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    display: none;
}

.skills-bg-text span {
    font-family: 'Anton', sans-serif;
    font-size: 120px;
    text-transform: uppercase;
    color: transparent;
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 2px rgba(220,38,38,0.8);
    text-shadow: 0 0 30px rgba(220,38,38,0.3);
    transform: rotate(-90deg);
    white-space: nowrap;
}

.skills-image {
    position: absolute;
    right: -10%;
    top: 0;
    width: 400px;
    height: 500px;
    pointer-events: none;
    z-index: 10;
}

.skills-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    filter: drop-shadow(0 20px 50px rgba(220,38,38,0.4));
}

.skills-content {
    position: relative;
    z-index: 20;
    max-width: 672px;
    margin-top: 300px;
}

.skills-tag {
    color: #ef4444;
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.skills-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 2.5rem;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.skill-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 1.875rem;
    font-weight: 700;
}

.skill-icon:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
    z-index: 20;
    transform: scale(1.05);
}

.skill-name {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 10px;
    font-weight: 500;
    color: white;
    opacity: 0.8;
    transition: all 0.3s;
}

.skill-card:hover .skill-name {
    opacity: 1;
    border-color: rgba(255,255,255,0.3);
}

/* Individual Skill Colors */
.vs-code {
    background: #0A1929;
    border-color: rgba(0,122,204,0.5);
    color: #007ACC;
}
.vs-code:hover { background: #002B4D; }

.react {
    background: #0A1929;
    border-color: rgba(97,218,251,0.5);
    color: #61DAFB;
}
.react:hover { background: #0D1F2D; }

.nextjs {
    background: black;
    border-color: rgba(255,255,255,0.5);
    color: white;
}
.nextjs:hover { background: #1a1a1a; }

.photoshop {
    background: #0A1929;
    border-color: rgba(0,163,255,0.5);
    color: #00A3FF;
}
.photoshop:hover { background: #001E36; }

.lightroom {
    background: #0A1929;
    border-color: rgba(0,128,255,0.5);
    color: #0080FF;
}
.lightroom:hover { background: #001E36; }

.capcut {
    background: black;
    border-color: rgba(255,255,255,0.2);
}
.capcut:hover { background: #1a1a1a; }

.capcut-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capcut-icon .cross {
    position: absolute;
    width: 32px;
    height: 6px;
    background: white;
    border-radius: 9999px;
    transform: rotate(-45deg);
}

.capcut-icon .cross::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 6px;
    background: white;
    border-radius: 9999px;
    transform: rotate(90deg);
}

.capcut-icon .dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #00FFFF;
    border-radius: 50%;
}

.chatgpt {
    background: #202123;
    border-color: rgba(16,163,127,0.5);
    color: #10A37F;
}
.chatgpt:hover { background: #2A2B32; }

.gemini {
    background: #1f1133;
    border-color: rgba(169,129,235,0.5);
    color: #a981eb;
}
.gemini:hover { background: #2A1635; }

.seo {
    background: #2D1B00;
    border-color: rgba(242,169,0,0.5);
    color: #F2A900;
}
.seo:hover { background: #4D2E00; }

.snapseed {
    background: #182a1c;
    border-color: rgba(34,197,94,0.3);
    color: #22c55e;
}
.snapseed:hover { background: #1F2922; }

.picsart {
    background: linear-gradient(to bottom right, #FF007F, #7000FF);
    border-color: rgba(255,255,255,0.2);
    color: white;
    box-shadow: 0 0 15px rgba(255,0,127,0.3);
    font-style: italic;
    font-family: serif;
}

/* ========================================
   VISION SECTION
   ======================================== */
.vision-section {
    position: relative;
    z-index: 30;
    min-height: 100vh;
    background: #050505;
    padding: 8rem 2rem;
    border-top: 1px solid rgba(220,38,38,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.vision-bg-text {
    position: absolute;
    top: 20%;
    left: 5%;
    opacity: 0.4;
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    display: none;
}

.vision-bg-text span {
    font-family: 'Anton', sans-serif;
    font-size: 120px;
    text-transform: uppercase;
    color: transparent;
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 2px rgba(59,130,246,0.8);
    text-shadow: 0 0 30px rgba(59,130,246,0.3);
    transform: rotate(-90deg);
    white-space: nowrap;
}

.vision-image {
    position: absolute;
    left: -20%;
    bottom: 0;
    width: 450px;
    height: 600px;
    pointer-events: none;
    z-index: 10;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 50px rgba(59,130,246,0.5));
}

.vision-content {
    position: relative;
    z-index: 20;
    width: 100%;
    margin-top: 2.5rem;
    margin-bottom: 400px;
    display: flex;
    flex-direction: column;
}

.vision-tag {
    color: #3b82f6;
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.vision-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 2.5rem;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9;
}

.vision-text p {
    font-family: 'Arial', sans-serif;
    color: #d1d5db;
    font-size: 1.125rem;
    max-width: 512px;
    line-height: 1.625;
    background: rgba(10,10,10,0.8);
    padding: 2rem;
    border-radius: 1.5rem;
    border-left: 4px solid #3b82f6;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
    position: relative;
}

.vision-text p::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(59,130,246,0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.vision-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 512px;
    padding-top: 1rem;
}

.vision-tags span {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(59,130,246,0.3);
    background: rgba(59,130,246,0.1);
    color: #93c5fd;
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px rgba(59,130,246,0.1);
    cursor: default;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
    position: relative;
    z-index: 30;
    min-height: 100vh;
    background: #0A0A0A;
    padding: 8rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.gallery-bg-text {
    position: absolute;
    top: 30%;
    right: -15%;
    opacity: 0.4;
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    display: none;
}

.gallery-bg-text span {
    font-family: 'Anton', sans-serif;
    font-size: 120px;
    text-transform: uppercase;
    color: transparent;
    line-height: 1;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 2px rgba(220,38,38,0.8);
    text-shadow: 0 0 30px rgba(220,38,38,0.3);
    transform: rotate(-90deg);
    white-space: nowrap;
}

.gallery-image-main {
    position: absolute;
    right: -20%;
    bottom: 0;
    width: 500px;
    height: 550px;
    pointer-events: none;
    z-index: 10;
}

.gallery-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 50px rgba(220,38,38,0.4));
}

.gallery-image-secondary {
    position: absolute;
    left: -15%;
    top: 10%;
    width: 350px;
    height: 400px;
    pointer-events: none;
    z-index: 10;
}

.gallery-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.6;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 20px 50px rgba(59,130,246,0.3));
}

.gallery-content {
    position: relative;
    z-index: 20;
    width: 100%;
    margin-bottom: 400px;
    display: flex;
    flex-direction: column;
}

.gallery-tag {
    color: #ef4444;
    font-family: monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.gallery-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 2.5rem;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(220,38,38,0.3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
    mix-blend-mode: overlay;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form {
    width: 100%;
    background: rgba(17,17,17,0.8);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 192px;
    height: 192px;
    background: rgba(220,38,38,0.2);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.contact-form h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.875rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.contact-form p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 10;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 10;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s;
    font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(239,68,68,0.5);
    box-shadow: 0 0 0 1px rgba(239,68,68,0.5);
}

.form-group textarea {
    resize: none;
}

.contact-form button {
    width: 100%;
    background: #F22626;
    color: white;
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.contact-form button:hover {
    background: #b91c1c;
}

.contact-form button svg {
    transition: transform 0.3s;
}

.contact-form button:hover svg {
    transform: translate(4px, -4px);
}

/* ========================================
   MEDIA QUERIES
   ======================================== */

/* Tablet and up */
@media (min-width: 640px) {
    .hero-title {
        font-size: 8vw;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .about-title {
        font-size: 10vw;
    }
    
    .skills-title {
        font-size: 3.75rem;
    }
    
    .vision-title {
        font-size: 3.75rem;
    }
    
    .gallery-title {
        font-size: 3.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 768px) {
    .brand-name {
        display: block;
    }
    
    .nav-links {
        display: flex;
    }
    
    .hero-section {
        flex-direction: row;
        padding: 6rem 4rem 3rem;
    }
    
    .hero-image-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 800px;
        aspect-ratio: 1;
        order: 0;
        margin-top: 0;
    }
    
    .hero-image {
        transform: scale(1);
    }
    
    .hero-left {
        width: 33.33%;
        margin-top: 0;
    }
    
    .hero-right {
        width: 33.33%;
        margin-top: 0;
        align-items: flex-end;
        text-align: right;
    }
    
    .hero-heading {
        font-size: 3.75rem;
    }
    
    .project-box {
        margin-left: auto;
    }
    
    .footer {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-title {
        font-size: 5rem;
    }
    
    .about-bg-text {
        display: block;
    }
    
    .about-image {
        width: 600px;
        height: 900px;
        right: -5%;
        opacity: 0.7;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
    
    .social-icon {
        width: 64px;
        height: 64px;
    }
    
    .skills-bg-text {
        display: block;
        right: 10%;
    }
    
    .skills-image {
        width: 600px;
        height: 800px;
        right: 5%;
    }
    
    .skills-content {
        margin-top: 0;
    }
    
    .skills-title {
        font-size: 5rem;
    }
    
    .skill-icon {
        width: 112px;
        height: 112px;
    }
    
    .vision-bg-text {
        display: block;
        left: 8%;
    }
    
    .vision-image {
        width: 700px;
        height: 900px;
        left: -5%;
    }
    
    .vision-content {
        width: 50%;
        margin-left: auto;
        text-align: right;
        margin-top: 0;
        margin-bottom: 0;
        align-items: flex-end;
    }
    
    .vision-title {
        font-size: 5rem;
    }
    
    .desktop-break {
        display: block;
    }
    
    .gallery-bg-text {
        display: block;
        right: -5%;
    }
    
    .gallery-image-main {
        width: 700px;
        height: 750px;
        right: -5%;
        bottom: 10%;
    }
    
    .gallery-image-secondary {
        width: 500px;
        height: 600px;
        left: -5%;
    }
    
    .gallery-content {
        width: 75%;
        margin-bottom: 0;
    }
    
    .gallery-title {
        font-size: 5rem;
    }
    
    .contact-form {
        width: 80%;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .hero-heading {
        font-size: 4.5rem;
    }
    
    .about-title {
        font-size: 6rem;
    }
    
    .about-bg-text span {
        font-size: 180px;
    }
    
    .skills-title {
        font-size: 6rem;
    }
    
    .skills-bg-text span {
        font-size: 180px;
    }
    
    .vision-title {
        font-size: 6rem;
    }
    
    .vision-bg-text span {
        font-size: 180px;
    }
    
    .gallery-title {
        font-size: 6rem;
    }
    
    .gallery-bg-text span {
        font-size: 180px;
    }
}