* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
    display: none;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transition: transform 0.1s ease;
    display: none;
}

@media (min-width: 769px) {
    .cursor,
    .cursor-dot {
        display: block;
    }
    
    body {
        cursor: none;
    }
    
    a, button, .project-card, .nav-link {
        cursor: none;
    }
}

.cursor.hover {
    transform: scale(1.5);
    background: rgba(255, 255, 255, 0.1);
}

/* Animated Background Gradients */
.bg-gradient {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: soft-light;
}

.bg-gradient-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(139, 26, 26, 0.15) 0%, transparent 70%);
    animation: floatGradient1 20s ease-in-out infinite;
}

.bg-gradient-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(26, 26, 139, 0.12) 0%, transparent 70%);
    animation: floatGradient2 18s ease-in-out infinite;
}

.bg-gradient-3 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 26, 139, 0.08) 0%, transparent 70%);
    animation: floatGradient3 25s ease-in-out infinite;
}

@keyframes floatGradient1 {
    0%, 100% {
        opacity: 0.4;
        transform: translate(0, 0) scale(1);
    }
    25% {
        opacity: 0.6;
        transform: translate(-100px, 100px) scale(1.1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-150px, 200px) scale(0.95);
    }
    75% {
        opacity: 0.7;
        transform: translate(-50px, 150px) scale(1.05);
    }
}

@keyframes floatGradient2 {
    0%, 100% {
        opacity: 0.35;
        transform: translate(0, 0) scale(1);
    }
    33% {
        opacity: 0.5;
        transform: translate(120px, -80px) scale(1.08);
    }
    66% {
        opacity: 0.45;
        transform: translate(180px, -120px) scale(0.92);
    }
}

@keyframes floatGradient3 {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    20% {
        opacity: 0.4;
        transform: translate(-45%, -55%) scale(1.15) rotate(90deg);
    }
    40% {
        opacity: 0.5;
        transform: translate(-55%, -50%) scale(0.95) rotate(180deg);
    }
    60% {
        opacity: 0.45;
        transform: translate(-50%, -45%) scale(1.1) rotate(270deg);
    }
    80% {
        opacity: 0.35;
        transform: translate(-52%, -52%) scale(1.05) rotate(315deg);
    }
}

/* Page Transition Overlay */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
    animation: pulseGradient 2s ease infinite;
}

@keyframes pulseGradient {
    0%, 100% {
        background: radial-gradient(circle at center, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    }
    50% {
        background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
    }
}

/* Particle Canvas */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9997;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.particle-canvas.active {
    opacity: 1;
}

/* Premium Morphing Transition */
.morph-shape {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
}

.morph-shape.active {
    opacity: 1;
}

.morph-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    transform: scale(0);
    mix-blend-mode: screen;
}

/* Transition Text */
.transition-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
    letter-spacing: -0.03em;
    text-align: center;
    display: none;
}

.transition-text.active {
    animation: textReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    display: none;
}

/* Logo Silhouette */
.transition-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.3);
    text-stroke: 3px rgba(255, 255, 255, 0.3);
    opacity: 0;
    pointer-events: none;
    letter-spacing: -0.08em;
    text-align: center;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.7));
    font-family: 'Space Grotesk', sans-serif;
}

.transition-logo.active {
    animation: logoSilhouette 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes logoSilhouette {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotateX(90deg);
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    }
    40% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15) rotateX(0deg);
        -webkit-text-stroke: 4px rgba(255, 255, 255, 0.4);
    }
    60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateX(0deg);
        -webkit-text-stroke: 3px rgba(255, 255, 255, 0.3);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3) rotateX(-90deg);
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
        filter: blur(10px);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
        filter: blur(0px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
        filter: blur(10px);
    }
}

/* Curtain Effect */
.curtain-left,
.curtain-right {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.15) 50%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
    z-index: 9999;
    pointer-events: none;
    transform: translateY(0);
    opacity: 0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.curtain-left.active,
.curtain-right.active {
    opacity: 1;
    animation: curtainSlide 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes curtainSlide {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Loading Bar */
.loading-bar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 10002;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    display: none;
}

.loading-bar.active {
    opacity: 1;
    display: none;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff, #888888, #ffffff, transparent);
    transform: translateX(-100%);
    animation: loadingProgress 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

/* Fade In Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.6s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo h1 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.logo h1:hover {
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    z-index: 1;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    padding-top: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

/* Intro Section */
.intro-section {
    margin-top: 2rem;
    margin-bottom: 8rem;
}

.profile-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 600px;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image img:hover {
    filter: grayscale(0%);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.profile-text {
    flex: 1;
    padding-top: 0;
}

.profile-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: #808080;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    margin-bottom: 6rem;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #ffffff;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.and-text {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 800;
    display: inline-block;
    transition: all 0.3s ease;
}

.and-text:hover {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

/* Location Section */
.location-section {
    margin-bottom: 6rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 3rem;
    justify-content: start;
}

.location-label {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 400;
}

.availability-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #4ade80;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.availability-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse 2s ease-in-out infinite;
}

.availability-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.2);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.3);
    }
}

/* About Section */
.about-section {
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 2rem;
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

/* Projects Section */
.projects-section {
    margin-bottom: 8rem;
    position: relative;
    width: 100%;
}

.projects-container {
    width: 100%;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.project-item {
    width: 100%;
}

.project-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.5s ease;
}

.project-card:hover::before {
    left: 100%;
}

.project-card.active {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.project-card.active .arrow-icon {
    transform: rotate(90deg);
}

.project-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateX(12px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.project-card:hover .arrow-icon {
    transform: translateX(6px);
}

.project-card.active:hover .arrow-icon {
    transform: rotate(90deg) translateX(6px);
}

.project-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.project-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.arrow-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.project-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #888888;
    text-transform: uppercase;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
}

/* Project Detail Inline */
.project-detail-inline {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.project-detail-inline.active {
    max-height: 3000px;
    opacity: 1;
    margin-top: 1.5rem;
}

.project-detail-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-detail-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.project-year {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 1rem;
}

.project-tags-detail {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tags-detail span {
    padding: 0.4rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    font-size: 0.8rem;
    color: #cccccc;
}

.project-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-download,
.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-download::before,
.btn-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-download:hover::before,
.btn-link:hover::before {
    width: 300px;
    height: 300px;
}

.btn-download {
    background-color: #ffffff;
    color: #000000;
    border: none;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.btn-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.btn-download svg,
.btn-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-download:hover svg,
.btn-link:hover svg {
    transform: scale(1.1);
}

/* Experience Section */
.experience-section {
    margin-bottom: 8rem;
}

.experience-header {
    margin-bottom: 4rem;
}

.experience-header h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 600;
}

.experience-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.experience-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-item .role {
    color: #888888;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.experience-item .period {
    color: #666666;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    margin-bottom: 8rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.service-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.service-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.service-time {
    font-size: 0.85rem;
    color: #666666;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #888888;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    padding: 4rem 3rem;
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .projects-grid {
        max-width: 700px;
    }
    
    .project-card {
        padding: 1.8rem 2.2rem;
    }
    
    .project-card h3 {
        font-size: 1.15rem;
    }
    
    .project-details-content {
        max-width: 700px;
        padding: 0 2rem;
    }
    
    .project-info h2 {
        font-size: 2.8rem;
    }
    
    .project-description {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .highlight-item p {
        font-size: 1rem;
    }
    
    /* About Page Responsive */
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .main-content {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 6rem;
    }
    
    .profile-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .profile-text p {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-section {
        margin-bottom: 4rem;
    }
    
    .projects-grid {
        max-width: 100%;
        gap: 1rem;
        padding: 0;
    }
    
    .project-card {
        padding: 1.2rem 1rem;
        gap: 1rem;
    }
    
    .project-card h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .project-label {
        font-size: 0.65rem;
    }
    
    .arrow-icon {
        font-size: 1.2rem;
    }
    
    .project-detail-inline.active {
        margin-top: 1rem;
    }
    
    .project-detail-box {
        padding: 1.5rem;
    }
    
    .project-detail-box h3 {
        font-size: 1.5rem;
    }
    
    .project-image {
        margin-bottom: 1.2rem;
        border-radius: 6px;
    }
    
    .project-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-download,
    .btn-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .experience-header h2 {
        font-size: 1.5rem;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    /* About Page Tablet */
    .about-page {
        padding-top: 5rem;
    }
    
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-image {
        order: -1;
    }
    
    .about-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .about-bio-section {
        padding: 3rem 2.5rem;
        margin-bottom: 6rem;
    }
    
    .bio-highlight h2 {
        font-size: 2.2rem;
    }
    
    .bio-lead {
        font-size: 1.15rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-expertise-section {
        margin-bottom: 6rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-journey-section {
        margin-bottom: 6rem;
    }
    
    .journey-header h2 {
        font-size: 2rem;
    }
    
    .journey-item {
        grid-template-columns: 120px 1fr;
        gap: 2rem;
    }
    
    .about-stats-section {
        margin-bottom: 6rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .about-philosophy-section {
        padding: 3.5rem 2.5rem;
        margin-bottom: 6rem;
    }
    
    .philosophy-container h2 {
        font-size: 2rem;
    }
    
    .philosophy-quote {
        font-size: 1.5rem;
    }
    
    .about-cta-section {
        padding: 3rem 2rem;
    }
    
    .about-cta-content h2 {
        font-size: 2rem;
    }
    
    /* Gallery Tablet */
    .gallery-header h2 {
        font-size: 2.2rem;
    }
    
    .gallery-showcase {
        padding: 0 1.5rem;
    }
    
    .gallery-wrapper {
        max-width: 700px;
    }
    
    .gallery-main-image {
        margin-bottom: 1.5rem;
    }
    
    .gallery-main-image img {
        min-height: 380px;
        max-height: 480px;
    }
    
    .gallery-controls {
        flex-wrap: wrap;
    }
    
    .gallery-nav {
        padding: 0.8rem 1.3rem;
        font-size: 0.85rem;
    }
    
    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-copy-btn {
        flex: 1 1 100%;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    /* Gallery Detail Tablet */
    .gallery-detail-inner {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
    
    .gallery-detail-image-section {
        padding: 2rem;
        min-height: 400px;
    }
    
    .gallery-detail-info-section {
        padding: 2rem;
    }
    
    .gallery-detail-title {
        font-size: 2rem;
    }
    
    .gallery-detail-meta {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    /* Gallery Detail Page Tablet */
    .gallery-page-title {
        font-size: 2.5rem;
    }
    
    .gallery-page-description {
        font-size: 1.05rem;
    }
    
    .gallery-detail-meta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-page-downloads-section {
        padding: 2.5rem;
    }
    
    .gallery-page-download-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .gallery-download-card {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
    }
    
    .download-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .gallery-page-actions {
        flex-direction: column;
    }
    
    .gallery-page-actions .btn-primary,
    .gallery-page-actions .btn-outline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .main-content {
        padding-top: 5rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .intro-section {
        margin-top: 1rem;
        margin-bottom: 4rem;
    }
    
    .profile-image img {
        width: 60px;
        height: 60px;
    }
    
    .profile-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .hero-section {
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .projects-section {
        margin-bottom: 3rem;
    }
    
    .projects-grid {
        max-width: 100%;
        gap: 0.8rem;
        padding: 0;
    }
    
    .project-card {
        padding: 1rem 0.8rem;
        gap: 0.8rem;
    }
    
    .project-card h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .project-label {
        font-size: 0.6rem;
    }
    
    .arrow-icon {
        font-size: 1rem;
    }
    
    .project-detail-inline.active {
        margin-top: 0.8rem;
    }
    
    .project-detail-box {
        padding: 1rem;
    }
    
    .project-detail-box h3 {
        font-size: 1.3rem;
    }
    
    .project-image {
        margin-bottom: 1rem;
        border-radius: 4px;
    }
    
    .project-year {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .project-tags-detail {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .project-tags-detail span {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .project-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .project-actions {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-download,
    .btn-link {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }
    
    .btn-download svg,
    .btn-link svg {
        width: 12px;
        height: 12px;
    }
    
    .location-section {
        margin-bottom: 3rem;
    }
    
    .about-section {
        margin-bottom: 4rem;
    }
    
    .experience-section,
    .services-section {
        margin-bottom: 4rem;
    }
    
    .experience-header h2,
    .services-title {
        font-size: 1.3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Active Nav Link */
.nav-link.active {
    opacity: 1;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* ========================================
   REDESIGNED ABOUT PAGE STYLES
   ======================================== */

.about-page {
    padding-top: 5rem;
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section - New Design */
.about-hero-new {
    margin-bottom: 8rem;
    padding: 3rem 0;
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(80%);
    transition: all 0.5s ease;
}

.about-hero-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.hero-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.badge-location,
.badge-status {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.badge-status {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

/* Bio Section */
.about-bio-section {
    margin-bottom: 8rem;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
}

.bio-container {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-highlight h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
}

.bio-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 3rem;
    text-align: center;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.bio-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.bio-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #999999;
}

/* Interactive Gallery Section */
.gallery-section {
    margin-bottom: 8rem;
    padding: 4rem 0;
}

.gallery-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.underline-text {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.gallery-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.gallery-main {
    width: 100%;
}

.gallery-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-main-image:hover::before {
    left: 100%;
}

.gallery-main-image img {
    width: 100%;
    height: auto;
    min-height: 450px;
    max-height: 550px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.gallery-main-image img.active-image {
    animation: fadeInScale 0.8s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-caption {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.gallery-description {
    font-size: 0.95rem;
    color: #888888;
    margin: 0;
    line-height: 1.6;
}

.gallery-description em {
    color: #666666;
    font-style: normal;
}

.gallery-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    flex-shrink: 0;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.gallery-nav:active {
    transform: translateY(0);
}

.gallery-nav svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.gallery-nav-prev:hover svg {
    transform: translateX(-3px);
}

.gallery-nav-next:hover svg {
    transform: translateX(3px);
}

.gallery-copy-btn {
    flex: 1;
    padding: 0.9rem 1.8rem;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.gallery-copy-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* Gallery Detail Modal */
.gallery-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-detail-modal.active {
    display: flex;
}

.gallery-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.gallery-detail-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUpFade 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-detail-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.gallery-detail-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.gallery-detail-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
    max-height: 90vh;
    overflow: hidden;
}

.gallery-detail-image-section {
    position: relative;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: hidden;
}

.gallery-detail-image-section img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.gallery-detail-info-section {
    padding: 3rem;
    overflow-y: auto;
    background: #1a1a1a;
}

.gallery-detail-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1rem;
}

.gallery-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gallery-detail-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #999999;
    margin-bottom: 2rem;
}

.gallery-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.gallery-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.detail-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #cccccc;
}

.gallery-detail-downloads {
    margin-bottom: 2.5rem;
}

.gallery-detail-downloads h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.download-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #888888;
}

.download-btn > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.download-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.download-size {
    font-size: 0.8rem;
    color: #666666;
}

.gallery-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

/* ========================================
   GALLERY DETAIL PAGE
   ======================================== */

.gallery-detail-page {
    padding-top: 5rem;
    width: 100%;
    overflow-x: hidden;
}

.gallery-detail-hero {
    padding: 2rem 0 1rem;
    margin-bottom: 2rem;
}

.gallery-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.gallery-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.gallery-detail-main-section {
    margin-bottom: 6rem;
}

.gallery-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-detail-image-wrapper {
    width: 100%;
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-detail-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-detail-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-detail-header {
    margin-bottom: 3rem;
}

.gallery-page-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1.5rem;
}

.gallery-page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gallery-page-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #999999;
}

.gallery-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-meta-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.meta-card-label {
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.meta-card-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.gallery-page-tags-section {
    margin-bottom: 3rem;
}

.gallery-page-tags-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.gallery-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.page-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #cccccc;
    transition: all 0.3s ease;
}

.page-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.gallery-page-downloads-section {
    margin-bottom: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.gallery-page-downloads-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.gallery-page-download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.gallery-download-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.download-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.download-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.download-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.download-card-size {
    font-size: 0.85rem;
    color: #666666;
}

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

.gallery-page-actions .btn-primary,
.gallery-page-actions .btn-outline {
    flex: 1;
}

/* Expertise Section */
.about-expertise-section {
    margin-bottom: 8rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-align: center;
}

.expertise-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.expertise-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expertise-card > p {
    font-size: 1rem;
    line-height: 1.6;
    color: #999999;
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    font-size: 0.9rem;
    color: #777777;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666666;
}

/* Journey Section */
.about-journey-section {
    margin-bottom: 8rem;
}

.journey-container {
    max-width: 900px;
}

.journey-header {
    margin-bottom: 3.5rem;
}

.journey-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.journey-header p {
    font-size: 1.1rem;
    color: #999999;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.journey-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-item:last-child {
    border-bottom: none;
}

.journey-year {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 600;
    padding-top: 0.3rem;
}

.journey-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.journey-role {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 0.8rem;
}

.journey-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777777;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    margin-bottom: 8rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #777777;
}

/* Philosophy Section */
.about-philosophy-section {
    margin-bottom: 8rem;
    padding: 5rem 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
}

.philosophy-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.philosophy-quote {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: #cccccc;
    margin: 0 auto 4rem;
    max-width: 800px;
    font-style: italic;
    border: none;
    padding: 0;
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.philosophy-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: #444444;
    flex-shrink: 0;
}

.philosophy-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #888888;
    margin: 0;
}

/* CTA Section */
.about-cta-section {
    margin-bottom: 6rem;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: #999999;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffffff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .about-intro-content h2 {
        font-size: 2rem;
    }
    
    .about-intro-content p {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content blockquote {
        font-size: 1.5rem;
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .main-content {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 5rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .logo h1 {
        font-size: 0.75rem;
    }
    
    /* About Page Mobile - Redesigned */
    .about-page {
        padding-top: 4.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-hero-new {
        margin-bottom: 4rem;
        padding: 2rem 0;
    }
    
    .about-hero-wrapper {
        gap: 2rem;
    }
    
    .about-label {
        font-size: 0.65rem;
    }
    
    .about-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.15;
    }
    
    .about-bio-section {
        padding: 2rem 1.5rem;
        margin-bottom: 4rem;
    }
    
    .bio-highlight h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .bio-lead {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .bio-grid {
        gap: 1.5rem;
    }
    
    .bio-item h4 {
        font-size: 1.05rem;
    }
    
    .bio-item p {
        font-size: 0.9rem;
    }
    
    .about-expertise-section {
        margin-bottom: 4rem;
    }
    
    .section-heading {
        font-size: 1.65rem;
        margin-bottom: 2rem;
    }
    
    .expertise-grid {
        gap: 1.5rem;
    }
    
    .expertise-card {
        padding: 2rem 1.5rem;
    }
    
    .expertise-icon {
        font-size: 2.5rem;
    }
    
    .expertise-card h3 {
        font-size: 1.2rem;
    }
    
    .expertise-card > p {
        font-size: 0.9rem;
    }
    
    .expertise-list li {
        font-size: 0.85rem;
    }
    
    .about-journey-section {
        margin-bottom: 4rem;
    }
    
    .journey-header {
        margin-bottom: 2.5rem;
    }
    
    .journey-header h2 {
        font-size: 1.6rem;
    }
    
    .journey-header p {
        font-size: 0.95rem;
    }
    
    .journey-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }
    
    .journey-year {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .journey-details h3 {
        font-size: 1.15rem;
    }
    
    .journey-role {
        font-size: 0.9rem;
    }
    
    .journey-desc {
        font-size: 0.85rem;
    }
    
    .about-stats-section {
        margin-bottom: 4rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.8rem 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .about-philosophy-section {
        padding: 2.5rem 1.5rem;
        margin-bottom: 4rem;
    }
    
    .philosophy-container h2 {
        font-size: 1.65rem;
        margin-bottom: 2rem;
    }
    
    .philosophy-quote {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
    }
    
    .philosophy-principles {
        gap: 1.5rem;
    }
    
    .philosophy-item {
        gap: 1rem;
    }
    
    .philosophy-num {
        font-size: 1rem;
    }
    
    .philosophy-item h4 {
        font-size: 1.05rem;
    }
    
    .philosophy-item p {
        font-size: 0.9rem;
    }
    
    .about-cta-section {
        padding: 2.5rem 1.5rem;
        margin-bottom: 4rem;
    }
    
    .about-cta-content h2 {
        font-size: 1.65rem;
    }
    
    .about-cta-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 0.95rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Gallery Mobile */
    .gallery-section {
        margin-bottom: 4rem;
        padding: 2rem 0;
    }
    
    .gallery-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .gallery-header h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .gallery-showcase {
        padding: 0 1rem;
    }
    
    .gallery-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-main-image {
        border-radius: 12px;
        margin-bottom: 1.2rem;
    }
    
    .gallery-main-image img {
        min-height: 280px;
        max-height: 350px;
        border-radius: 12px;
    }
    
    .gallery-info {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .gallery-title {
        font-size: 1.05rem;
    }
    
    .gallery-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .gallery-controls {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .gallery-copy-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        order: -1;
    }
    
    .gallery-nav {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.3rem;
    }
    
    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }
    
    /* Gallery Detail Mobile */
    .gallery-detail-modal {
        padding: 1rem;
    }
    
    .gallery-detail-content {
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .gallery-detail-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    
    .gallery-detail-image-section {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .gallery-detail-info-section {
        padding: 1.5rem;
    }
    
    .gallery-detail-title {
        font-size: 1.6rem;
    }
    
    .gallery-detail-description {
        font-size: 0.95rem;
    }
    
    .gallery-detail-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .download-btn {
        padding: 0.9rem 1rem;
    }
    
    .download-title {
        font-size: 0.9rem;
    }
    
    /* Gallery Detail Page Mobile */
    .gallery-detail-page {
        padding-top: 4.5rem;
    }
    
    .gallery-detail-hero {
        padding: 1.5rem 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-back-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .gallery-detail-main-section {
        margin-bottom: 4rem;
    }
    
    .gallery-detail-image-wrapper {
        margin-bottom: 2.5rem;
        border-radius: 12px;
    }
    
    .gallery-detail-header {
        margin-bottom: 2rem;
    }
    
    .gallery-page-title {
        font-size: 1.8rem;
    }
    
    .gallery-page-description {
        font-size: 0.95rem;
    }
    
    .gallery-detail-meta-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-meta-card {
        padding: 1.5rem;
    }
    
    .meta-card-value {
        font-size: 1.05rem;
    }
    
    .gallery-page-tags-section {
        margin-bottom: 2rem;
    }
    
    .gallery-page-tags-section h3 {
        font-size: 1.05rem;
    }
    
    .page-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .gallery-page-downloads-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .gallery-page-downloads-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-download-card {
        padding: 1.2rem;
    }
    
    .download-card-icon {
        width: 44px;
        height: 44px;
    }
    
    .download-card-title {
        font-size: 0.9rem;
    }
    
    .download-card-size {
        font-size: 0.8rem;
    }
    
    .gallery-page-actions {
        gap: 1rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding-top: 6rem;
}

/* Modern Contact Hero */
.contact-hero {
    margin-bottom: 6rem;
    padding: 4rem 0;
}

.contact-hero-content {
    max-width: 900px;
}

.contact-main-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease forwards;
}

.contact-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 700px;
}

/* Contact Info Section */
.contact-info-section {
    margin-bottom: 8rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.info-block h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 1.5rem;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #999999;
    margin-bottom: 0.8rem;
}

.highlight-text {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.availability-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4ade80;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 8rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.form-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #cccccc;
}

.form-field input,
.form-field select,
.form-field textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.3rem;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #555555;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-modern {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 1.3rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    align-self: flex-start;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.btn-submit-modern svg {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover svg {
    transform: translateX(4px);
}

/* Alternative Contact Methods */
.contact-alternative-section {
    margin-bottom: 8rem;
}

.alternative-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-methods-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: #888888;
    margin: 0;
}

.back-section {
    text-align: center;
    margin-bottom: 6rem;
}

.back-section {
    text-align: center;
    margin-bottom: 6rem;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-methods-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-info > p {
        font-size: 1rem;
    }
    
    /* Contact Page Tablet */
    .contact-hero {
        margin-bottom: 4rem;
    }
    
    .contact-main-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .contact-lead {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods-modern {
        grid-template-columns: 1fr;
    }
    
    .form-intro h2 {
        font-size: 2.2rem;
    }
    
    .alternative-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    /* Contact Page Mobile */
    .contact-main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .contact-lead {
        font-size: 1rem;
    }
    
    .form-intro h2 {
        font-size: 1.8rem;
    }
    
    .form-intro p {
        font-size: 1rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 0.9rem 1.1rem;
        font-size: 0.95rem;
    }
    
    .btn-submit-modern {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .alternative-content h2 {
        font-size: 1.8rem;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .and-text {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .profile-text p {
        color: #ffffff;
    }
}
