/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Sleek Clean Light Theme)
   ========================================================================== */
:root {
    /* Colors (Clean Light Theme with Green Accents) */
    --color-bg: #faf8f5;
    --color-bg-alt: #ffffff;
    --color-text: #1c2826;
    --color-text-muted: #596562;
    --color-primary: #2d9667; /* Green accent for buttons and subtexts only */
    --color-primary-glow: rgba(45, 150, 103, 0.1);
    --color-secondary: #247852;
    --color-secondary-glow: rgba(36, 120, 82, 0.1);
    --color-cyan: #4db6ac;
    --color-glass-bg: rgba(255, 255, 255, 0.75);
    --color-glass-border: rgba(45, 150, 103, 0.08);
    --color-glass-hover-bg: rgba(255, 255, 255, 0.9);
    --color-glass-hover-border: rgba(45, 150, 103, 0.25);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #e5dfd9;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================================================
   CUSTOM CURSOR (Desktop Only)
   ========================================================================== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-cyan);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s, 
                background-color 0.3s;
}

/* Hover States for Custom Cursor */
body.cursor-hover .cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--color-secondary);
}

body.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--color-secondary);
    background-color: rgba(236, 72, 153, 0.05);
}

/* Hide default cursor only if device supports hover (desktop) */
@media (hover: hover) and (pointer: fine) {
    html, body, a, button, input, textarea, select {
        cursor: none !important;
    }
}

/* Disable Custom Cursor on Touch Devices */
@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline {
        display: none !important;
    }
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background-color: var(--color-bg-alt);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: var(--color-primary-glow);
    border: 1px solid var(--color-glass-border);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 600px;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

/* ==========================================================================
   BACKGROUND SOFT PASTEL TECH BLOBS
   ========================================================================== */
.blob-c {
    min-height: 100vh;
    overflow: hidden;
    position: absolute;
    width: 100%;
    filter: blur(95px);
    z-index: 0;
    pointer-events: none;
}

.blob {
    background: rgba(212, 122, 143, 0.07);
    height: 45vw;
    position: absolute;
    width: 45vw;
    border-radius: 93% 30% 95% 30% / 30% 30% 90% 90%;
    opacity: 0.35;
}

.blob-1 {
    left: -10%;
    top: 5%;
    animation: transform 20s ease-in-out infinite alternate;
}

.blob-2 {
    right: -10%;
    top: 40%;
    background: rgba(136, 176, 75, 0.06);
    animation: transform 25s ease-in-out infinite alternate;
}

.blob-3 {
    left: 20%;
    bottom: -10%;
    background: rgba(212, 122, 143, 0.05);
    animation: transform 18s ease-in-out infinite alternate;
}

@keyframes transform {
    0%, 100% { border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 80% 20% 65% 35% / 20% 75% 25% 80%; }
}

/* ==========================================================================
   GLASSMORPHISM COMPONENT
   ========================================================================== */
.card-glass {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.card-glass:hover {
    background: var(--color-glass-hover-bg);
    border-color: var(--color-glass-hover-border);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #7e81ff 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
    filter: brightness(1.05);
}

.btn-secondary {
    background: var(--color-glass-bg);
    border-color: rgba(99, 102, 241, 0.12);
    color: var(--color-text);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--color-glass-hover-bg);
    border-color: var(--color-primary);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 12px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 122, 143, 0.08);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

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

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02rem;
}

.logo-accent {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cyan));
    transition: var(--transition-fast);
    border-radius: 4px;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(212, 122, 143, 0.08);
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav a {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.5rem 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding-top: 8rem;
    min-height: calc(100vh - 100px);
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 6rem;
        text-align: center;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-text);
    letter-spacing: -0.04em;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 576px) {
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

.hero-description {
    color: var(--color-text-muted);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

@media (max-width: 992px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.profile-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: rgba(255,255,255,0.85);
    border-color: var(--color-glass-border);
}

.profile-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    pointer-events: none;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.profile-title {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: rgba(99,102,241,0.04);
    border: 1px solid rgba(99,102,241,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

/* ==========================================================================
   VIDEO CV SECTION
   ========================================================================== */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    padding: 0.75rem;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    border-color: rgba(99, 102, 241, 0.1);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.05);
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
    border: none;
    border-radius: 16px;
    background: #000;
}

/* ==========================================================================
   ABOUT ME SECTION
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(99, 102, 241, 0.08);
}

.about-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.card-shifted {
    transform: translateX(30px);
}

.about-content {
    position: relative;
}

.about-text {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   CLIENTS LOGO WALL (Company style)
   ========================================================================== */
.logo-wall {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(212, 122, 143, 0.08);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    filter: grayscale(100%);
    opacity: 0.45; /* Slightly more transparent to blend in beautifully */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 0.95;
    transform: translateY(-3px);
}

.logo-item:hover .logo-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    font-size: 1.6rem;
    transition: var(--transition-fast);
}

.logo-img {
    height: 2rem; /* Uniform size match with Fanzone */
    width: auto;
    max-width: 32px; /* Ensure square logos don't stretch too wide */
    object-fit: contain;
    border-radius: 6px; /* Smooth corners for blocky logos (like JPG Store or Alpaca) */
    transition: var(--transition-fast);
}

.logo-text {
    letter-spacing: -0.02em;
}

/* ==========================================================================
   PORTFOLIO LIST WITH MOCKUPS
   ========================================================================== */
.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.portfolio-list-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(99, 102, 241, 0.08);
    padding: 3rem;
}

.portfolio-item-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-tag {
    color: var(--color-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 0.25rem;
}

.portfolio-item-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.1;
}

.portfolio-item-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Simple large embedded Canva iframes */
.project-meta {
    margin-bottom: 1.5rem;
}

.project-embed {
    width: 100%;
    height: 800px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.06);
}

.project-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Custom Image Slider */
.project-slider {
    position: relative;
    width: 100%;
    height: 850px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.06);
    background: rgba(255,255,255,0.5);
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Para no recortar las diapositivas */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.slider-img.active {
    opacity: 1;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15, 23, 42, 0.5);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(15, 23, 42, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background: var(--color-cyan);
    transform: scale(1.3);
}


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(99, 102, 241, 0.08);
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    opacity: 0.08;
    color: var(--color-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-role {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.testimonial-action {
    margin-top: 3rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.contact-desc {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.contact-method-item:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.method-icon {
    width: 54px;
    height: 54px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.contact-method-item span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.contact-method-item strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-text);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(99, 102, 241, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 1rem;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.08);
}

.form-status {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
}

.form-status.success {
    color: var(--color-primary);
}

.form-status.error {
    color: var(--color-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    border-top: 1px solid rgba(212, 122, 143, 0.08);
    padding: 3rem 0;
    background: #ffffff;
}

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

footer p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: var(--color-bg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: #fff;
    border-color: var(--color-primary);
    background: var(--color-primary);
}

/* ==========================================================================
   SCROLL REVEAL STYLES
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Layout */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 6rem;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .card-shifted {
        transform: translateX(0);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .portfolio-list-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .logo-wall {
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .device-mockup.phone {
        width: 100%;
        max-width: 290px;
        height: 520px;
    }
    
    .device-mockup.browser {
        height: 380px;
    }
    
    .display-container-phone,
    .display-container-browser {
        padding: 1rem;
    }
}

.form-group input,
.form-group textarea {
    background: #fff;
    border: 1px solid rgba(212, 122, 143, 0.15);
    border-radius: 12px;
    padding: 1rem;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

/* ==========================================================================
   CLIENT POPUP MODAL
   ========================================================================== */
.client-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 40, 38, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.client-modal.open {
    opacity: 1;
    pointer-events: all;
}

.client-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-glass-border);
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(191, 54, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-modal.open .client-modal-content {
    transform: scale(1);
}

.client-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.25rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.client-modal-close:hover {
    color: var(--color-primary);
}

.client-modal-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.client-modal-icon-container {
    width: 70px;
    height: 70px;
    background: rgba(212, 122, 143, 0.08);
    border: 1px solid rgba(212, 122, 143, 0.15);
    color: var(--color-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

#client-modal-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
}

#client-modal-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */
