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

body {
    font-family: 'Helvetica Neue', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.025em;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

@keyframes pearlescent {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 25%;
    }
    50% {
        background-position: 100% 75%;
    }
    75% {
        background-position: 0% 75%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.mb-4 {
    margin-bottom: 2rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

/* Service Card Styles */
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

/* Portfolio Item Styles */
.portfolio-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.portfolio-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

.form-submit {
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    grid-column: 1 / -1;
    justify-self: start;
}

.form-submit:hover,
.form-submit:focus {
    background: var(--accent-color);
    color: var(--background);
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info {
    margin-top: 3rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-links a {
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: lowercase;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
    transition: opacity 0.3s ease;
}

.contact-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-secondary);
    opacity: 0.6;
}

.contact-links a:hover {
    opacity: 0.7;
}

/* Media Queries for Contact */
@media (min-width: 768px) {
    .contact-links {
        flex-direction: row;
        gap: 2rem;
    }
}

.hero-section {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.logo {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 100;
    letter-spacing: -0.06em;
    margin-bottom: 2rem;
    color: #0a0a0a;
    transition: opacity 0.6s ease;
}

.logo:hover {
    opacity: 0.8;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.iridescent-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, 
        rgba(74, 79, 122, 0.4) 0%,
        rgba(245, 238, 202, 0.3) 25%,
        rgba(51, 55, 109, 0.2) 50%,
        rgba(74, 79, 122, 0.1) 75%,
        transparent 100%);
    border-radius: 50%;
    filter: blur(1px);
    animation: orbFloat 18s ease-in-out infinite, orbShimmer 12s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(-45%, -55%) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-55%, -45%) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.05) rotate(270deg);
    }
}

@keyframes orbShimmer {
    0% {
        background: radial-gradient(circle at 30% 30%, 
            rgba(74, 79, 122, 0.4) 0%,
            rgba(245, 238, 202, 0.3) 25%,
            rgba(51, 55, 109, 0.2) 50%,
            rgba(74, 79, 122, 0.1) 75%,
            transparent 100%);
    }
    33% {
        background: radial-gradient(circle at 70% 30%, 
            rgba(245, 238, 202, 0.4) 0%,
            rgba(51, 55, 109, 0.3) 25%,
            rgba(74, 79, 122, 0.2) 50%,
            rgba(245, 238, 202, 0.1) 75%,
            transparent 100%);
    }
    66% {
        background: radial-gradient(circle at 50% 70%, 
            rgba(51, 55, 109, 0.4) 0%,
            rgba(74, 79, 122, 0.3) 25%,
            rgba(245, 238, 202, 0.2) 50%,
            rgba(51, 55, 109, 0.1) 75%,
            transparent 100%);
    }
    100% {
        background: radial-gradient(circle at 30% 30%, 
            rgba(74, 79, 122, 0.4) 0%,
            rgba(245, 238, 202, 0.3) 25%,
            rgba(51, 55, 109, 0.2) 50%,
            rgba(74, 79, 122, 0.1) 75%,
            transparent 100%);
    }
}

.hero-premium-text {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-accent);
    text-align: center;
    margin: 0 0 1rem 0;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    letter-spacing: -0.08em;
    color: var(--text-primary);
    text-align: center;
    text-transform: lowercase;
    transition: all var(--animation-duration) var(--animation-easing);
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
    text-align: center;
    text-transform: lowercase;
    opacity: 0.8;
    transition: all var(--animation-duration) var(--animation-easing);
    position: relative;
    z-index: 2;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 0.875rem 2rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.hero-cta:hover {
    border-color: var(--text-primary);
    opacity: 0.8;
}

/* FNX Element - Interactive Generative Dot Matrix */
.fnx-matrix {
    position: absolute;
    top: 20%;
    right: 8%;
    width: 300px;
    height: 300px;
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.matrix-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--silver);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    box-shadow: 0 0 4px rgba(252, 66, 33, 0.4);
}

.matrix-dot.active {
    opacity: 1;
    background: var(--text-secondary);
}

.matrix-dot.wave {
    animation: waveEffect 2s ease-out;
}

@keyframes waveEffect {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
        background: var(--text-secondary);
    }
    100% {
        opacity: 0.6;
    }
}

/* Virtuosic underline animation for fnx title */
.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.8;
    animation: fnxUnderline 3s ease-out 0.5s forwards;
}

@keyframes fnxUnderline {
    0% {
        width: 0%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.6;
    }
}

/* Scroll-triggered accent bar */
.scroll-accent {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--text-accent), var(--accent-color));
    z-index: 9999;
    transition: width 0.1s ease;
    opacity: 0;
}

.scroll-accent.visible {
    opacity: 1;
}

/* Responsive adjustments for fnx element */
@media (max-width: 768px) {
    .fnx-matrix {
        width: 300px;
        height: 300px;
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: clamp(3rem, 10vw, 5rem);
        margin-bottom: 0.75rem;
        letter-spacing: -0.06em;
    }
    
    .hero-tagline {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .iridescent-orb {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        font-size: 1.125rem;
        padding: 1rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }
}

:root {
    --accent-color: #fc4221;
    --text-primary: #f5eeca;
    --text-secondary: #f5eeca;
    --text-accent: #fc4221;
    --background: #33376d;
    --border-light: #fc4221;
    --gradient-start: #2a2f5a;
    --gradient-mid: #33376d;
    --gradient-end: #3d4280;
    --silver: #4a4f7a;
    --lavender: #4a4f7a;
    
    /* Accessibility variables */
    --focus-ring: #fc4221;
    --focus-ring-offset: 3px;
    --animation-duration: 0.6s;
    --animation-easing: ease-out;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(51, 55, 109, 0.7);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(252, 66, 33, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.08em;
    text-transform: lowercase;
    transition: all var(--animation-duration) var(--animation-easing);
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 2px solid transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-accent);
    background: rgba(252, 66, 33, 0.1);
    box-shadow: 0 2px 8px rgba(252, 66, 33, 0.3);
    border-bottom: 2px solid var(--text-accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: lowercase;
}

.lang-option {
    color: var(--text-secondary);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0.25rem;
    border-radius: 6px;
    display: inline-block;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    position: relative;
    overflow: hidden;
}

.lang-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--text-accent));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.lang-option.active {
    color: var(--text-accent);
    font-weight: 500;
}

.lang-option.active::after {
    width: 80%;
    box-shadow: 0 0 8px rgba(252, 66, 33, 0.6);
}

.lang-option:hover,
.lang-option:focus {
    color: var(--text-accent);
}

.lang-option:hover::after,
.lang-option:focus::after {
    width: 60%;
    box-shadow: 0 0 6px rgba(252, 66, 33, 0.4);
}

.lang-separator {
    color: var(--text-secondary);
    user-select: none;
    margin: 0 0.125rem;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    z-index: 10000;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-links {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 3rem;
    }
}

.hamburger {
    display: none;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.hamburger span {
    width: 20px;
    height: 1px;
    background: #000000;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(51, 55, 109, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
    font-size: 1.5rem;
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10001;
    padding: 0.5rem;
    line-height: 1;
}

.mobile-nav-close:hover {
    color: var(--accent-color);
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Smooth scrolling with offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
}

html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-start);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 35%, var(--silver) 50%, var(--gradient-mid) 65%, var(--lavender) 85%, var(--gradient-start) 100%);
    background-size: 400% 400%;
    animation: pearlescent 30s ease-in-out infinite;
    z-index: -1;
}

/* Alternative method for older browsers */
.section {
    scroll-margin-top: 0px;
}

/* Language switch animation */
.language-switching {
    animation: textRipple 0.6s ease-out;
}

@keyframes textRipple {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    25% {
        opacity: 0.3;
        transform: translateY(-2px);
    }
    50% {
        opacity: 0.6;
        transform: translateY(1px);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Focus styles for accessibility */
*:focus {
    outline: 3px solid var(--focus-ring);
    outline-offset: var(--focus-ring-offset);
}

.nav-links a:focus,
.lang-option:focus,
.service-item:focus,
.portfolio-item:focus,
.contact-links a:focus,
.form-input:focus {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: #ffffff;
        --text-accent: #ffffff;
        --border-light: #ffffff;
    }
    
    .form-input.minimal {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(0, 0, 0, 0.3);
    }
    
    .contact-links a {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(0, 0, 0, 0.2);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .pearlescent,
    .iridescent-orb,
    .fnx-matrix {
        animation: none !important;
    }
    
    .hero {
        background-position: 0% 50% !important;
    }
}

/* Skip to main content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: var(--background);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.content-section {
    max-width: 1000px;
    z-index: 1;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--text-accent);
    margin-bottom: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.service-block {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(252, 66, 33, 0.1);
    transition: all 0.3s ease;
}

.service-block:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(252, 66, 33, 0.2);
    transform: translateY(-2px);
}

.service-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.portfolio-item {
    cursor: help;
}

.portfolio-item:hover::after,
.portfolio-item:focus::after {
    content: attr(title);
    position: absolute;
    bottom: -2rem;
    left: 0;
    background: var(--text-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
    max-width: 300px;
    white-space: normal;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-block {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
    
    .services-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 900px;
    }
}

/* Portfolio Section Styles */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: lowercase;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(252, 66, 33, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

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

.service-item:hover,
.service-item:focus {
    color: var(--text-accent);
    transform: translateX(8px);
    padding-left: 1rem;
}

.service-item:hover::before,
.service-item:focus::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(252, 66, 33, 0.6);
}

/* About Section Styles */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.about-text {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--text-accent));
    border-radius: 2px;
    opacity: 0.7;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

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

.contact-button {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 3rem;
    display: inline-block;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.contact-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--text-accent));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.contact-button:hover,
.contact-button:focus {
    color: var(--text-accent);
    border: 2px solid rgba(252, 66, 33, 0.4);
    background: linear-gradient(135deg, rgba(252, 66, 33, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 12px 40px rgba(252, 66, 33, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.02);
}

.contact-button:hover::before,
.contact-button:focus::before {
    left: 100%;
}

.contact-button:hover::after,
.contact-button:focus::after {
    width: 100%;
}

.email-button {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.email-button:hover,
.email-button:focus {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.email-button::after {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.instagram-button {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15) 0%, rgba(129, 140, 248, 0.1) 50%, rgba(245, 101, 101, 0.1) 100%);
    border: 2px solid rgba(225, 48, 108, 0.3);
}

.instagram-button:hover,
.instagram-button:focus {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.25) 0%, rgba(129, 140, 248, 0.2) 50%, rgba(245, 101, 101, 0.2) 100%);
    border: 2px solid rgba(225, 48, 108, 0.5);
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.instagram-button::after {
    background: linear-gradient(90deg, #e1306c, #f56565, #818cf8);
}

@media (min-width: 768px) {
    .contact-buttons {
        flex-direction: row;
        gap: 2rem;
    }
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.875rem;
    color: #999;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-container {
        padding: 0 1rem;
        display: flex !important;
    }
    
    .container {
        max-width: 90vw;
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
        text-align: left;
    }
    
    .content-section {
        text-align: left;
    }
    
    .section-title {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .services-content {
         margin-left: 0;
         margin-right: 0;
         max-width: none;
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
     
     .service-block {
         padding: 1.25rem;
     }
     
     .service-heading {
         font-size: 1rem;
     }
     
     .service-description {
         font-size: 0.875rem;
         line-height: 1.5;
     }
    
    .about-content {
        text-align: left;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 1rem;
    }
    
    .nav-toggle {
        font-size: 1.25rem;
        padding: 0.5rem;
        display: block !important;
        visibility: visible !important;
        color: var(--text-primary) !important;
    }
    
    .hamburger {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .tagline {
        margin-bottom: 3rem;
    }
    
    .cta {
        padding: 1.25rem 2.5rem;
        min-height: 52px;
    }
    
    .services-list {
        gap: 1rem;
    }
    
    .service-item {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .service-item:hover,
    .service-item:focus {
        transform: translateX(4px);
        padding-left: 0.5rem;
    }
    
    .contact-buttons {
        gap: 1rem;
    }
    
    .contact-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-width: 240px;
    }
    
    .portfolio-tile {
        min-height: 150px;
    }
    
    .form-input {
        padding: 1.5rem;
        min-height: 52px;
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-links a {
        padding: 1rem 1.5rem;
        min-height: 48px;
    }
}