/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Metallic Premium Palette */
    --metallic-silver: #c0c0c0;
    --metallic-gold: #d4af37;
    --metallic-copper: #b87333;
    --metallic-platinum: #e5e4e2;
    --dark-charcoal: #2c2c2c;
    --deep-navy: #1a1f35;
    --warm-gray: #4a4a4a;
    --light-cream: #f5f5f0;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    
    /* Neomorphism Colors */
    --neo-bg: #e8e8e8;
    --neo-shadow-light: #ffffff;
    --neo-shadow-dark: #bebebe;
    
    /* Spacing - Following Rules */
    --spacing-xs: 20px;
    --spacing-sm: 30px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
    
    /* Container */
    --container-width: 1200px;
    --container-max-width: 1400px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e8 50%, #f0f0f0 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Yellow Diagonal Stripes Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.08) 25%, transparent 25%, transparent 50%, rgba(212, 175, 55, 0.08) 50%, rgba(212, 175, 55, 0.08) 75%, transparent 75%, transparent 100%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.06) 20%, transparent 20%, transparent 40%, rgba(212, 175, 55, 0.06) 40%, rgba(212, 175, 55, 0.06) 60%, transparent 60%, transparent 80%, rgba(212, 175, 55, 0.06) 80%, rgba(212, 175, 55, 0.06) 100%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 30%, rgba(212, 175, 55, 0.05) 60%, transparent 100%),
        linear-gradient(-135deg, transparent 0%, rgba(212, 175, 55, 0.07) 25%, transparent 50%, rgba(212, 175, 55, 0.07) 75%, transparent 100%);
    background-size: 
        120px 120px,
        180px 180px,
        250px 250px,
        200px 200px;
    background-position: 
        0% 0%,
        30% 20%,
        60% 40%,
        80% 10%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
    0% {
        background-position: 
            0% 0%,
            30% 20%,
            60% 40%,
            80% 10%;
    }
    50% {
        background-position: 
            50% 30%,
            80% 50%,
            20% 70%,
            40% 30%;
    }
    100% {
        background-position: 
            100% 60%,
            130% 80%,
            80% 100%,
            120% 50%;
    }
}

/* Additional Diagonal Stripes Elements */
.diagonal-stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stripe {
    position: absolute;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.08));
    transform-origin: center;
}

.stripe-1 {
    width: 4px;
    height: 300px;
    top: 10%;
    left: 15%;
    transform: rotate(45deg);
    animation: floatStripe 15s ease-in-out infinite;
}

.stripe-2 {
    width: 6px;
    height: 400px;
    top: 30%;
    right: 20%;
    transform: rotate(-35deg);
    animation: floatStripe 18s ease-in-out infinite 2s;
}

.stripe-3 {
    width: 3px;
    height: 250px;
    top: 60%;
    left: 25%;
    transform: rotate(60deg);
    animation: floatStripe 20s ease-in-out infinite 4s;
}

.stripe-4 {
    width: 5px;
    height: 350px;
    top: 20%;
    right: 35%;
    transform: rotate(-50deg);
    animation: floatStripe 16s ease-in-out infinite 1s;
}

.stripe-5 {
    width: 4px;
    height: 280px;
    bottom: 25%;
    left: 45%;
    transform: rotate(40deg);
    animation: floatStripe 19s ease-in-out infinite 3s;
}

.stripe-6 {
    width: 6px;
    height: 320px;
    top: 50%;
    right: 15%;
    transform: rotate(-45deg);
    animation: floatStripe 17s ease-in-out infinite 2.5s;
}

.stripe-7 {
    width: 3px;
    height: 200px;
    bottom: 15%;
    right: 40%;
    transform: rotate(55deg);
    animation: floatStripe 21s ease-in-out infinite 5s;
}

.stripe-8 {
    width: 5px;
    height: 380px;
    top: 70%;
    left: 60%;
    transform: rotate(-40deg);
    animation: floatStripe 14s ease-in-out infinite 1.5s;
}

@keyframes floatStripe {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--rotation, 45deg));
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -20px) rotate(calc(var(--rotation, 45deg) + 5deg));
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) rotate(calc(var(--rotation, 45deg) - 5deg));
        opacity: 0.7;
    }
    75% {
        transform: translate(20px, 15px) rotate(calc(var(--rotation, 45deg) + 3deg));
        opacity: 0.9;
    }
}

.container {
    max-width: var(--container-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
}

.header.scrolled {
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--metallic-copper));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    color: var(--metallic-gold);
    transform: translateY(-1px);
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--metallic-copper));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--metallic-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Section Indicator */
.section-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--metallic-copper));
    transition: width 0.3s ease, left 0.3s ease;
    width: 0;
}

/* Neomorphism Card */
.neomorphic-card {
    background: var(--neo-bg);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: 
        8px 8px 16px var(--neo-shadow-dark),
        -8px -8px 16px var(--neo-shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.neomorphic-card:hover {
    box-shadow: 
        12px 12px 24px var(--neo-shadow-dark),
        -12px -12px 24px var(--neo-shadow-light);
    transform: translateY(-4px);
}

.neomorphic-card:active {
    box-shadow: 
        inset 4px 4px 8px var(--neo-shadow-dark),
        inset -4px -4px 8px var(--neo-shadow-light);
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.neomorphic-card:hover .card-shine {
    opacity: 1;
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* Decorative Line */
.decorative-line {
    width: 100%;
    height: 1px;
    margin: var(--spacing-lg) auto;
    background: linear-gradient(
        90deg,
        transparent,
        var(--metallic-silver) 20%,
        var(--metallic-gold) 50%,
        var(--metallic-silver) 80%,
        transparent
    );
    position: relative;
    max-width: 600px;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--metallic-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.decorative-line::before {
    left: 0;
}

.decorative-line::after {
    right: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--metallic-gold), var(--metallic-copper));
    color: white;
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--neo-bg);
    color: var(--text-dark);
    box-shadow: 
        4px 4px 8px var(--neo-shadow-dark),
        -4px -4px 8px var(--neo-shadow-light);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.btn-secondary:hover {
    box-shadow: 
        6px 6px 12px var(--neo-shadow-dark),
        -6px -6px 12px var(--neo-shadow-light);
    transform: translateY(-2px);
}

.floating-btn {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--deep-navy);
    line-height: 1.2;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(212, 175, 55, 0.15);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-text {
    padding-right: var(--spacing-md);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--deep-navy);
    line-height: 1.1;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(212, 175, 55, 0.2);
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        12px 12px 24px var(--neo-shadow-dark),
        -12px -12px 24px var(--neo-shadow-light);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.image-wrapper:hover .image-shine {
    left: 100%;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.5);
}

.modular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.large-module {
    grid-column: span 2;
}

.service-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: var(--spacing-md);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        4px 4px 8px var(--neo-shadow-dark),
        -4px -4px 8px var(--neo-shadow-light);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-navy);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
}

.card-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--metallic-copper));
    margin-top: var(--spacing-md);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover .card-accent-line {
    width: 100px;
}

/* Process Accordion */
.process {
    background: rgba(255, 255, 255, 0.3);
}

.process-accordion {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.accordion-item {
    margin-bottom: var(--spacing-md);
}

.accordion-header {
    width: 100%;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--metallic-gold);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--metallic-gold);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--spacing-md);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Portfolio Slider */
.portfolio {
    background: rgba(255, 255, 255, 0.5);
}

.portfolio-slider {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
}

.portfolio-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    position: relative;
}

.portfolio-item {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0.3s;
    flex-shrink: 0;
    visibility: visible;
    transform: translateX(0);
}

.portfolio-item:not(.active) {
    display: none;
    visibility: hidden;
}

.portfolio-item.active {
    display: flex;
    visibility: visible;
}

.portfolio-image {
    width: 100%;
    height: 280px;
    margin-bottom: var(--spacing-md);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        4px 4px 8px var(--neo-shadow-dark),
        -4px -4px 8px var(--neo-shadow-light);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 115, 51, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .image-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-navy);
    font-weight: 700;
}

.portfolio-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--neo-bg);
    border: none;
    font-size: 1.5rem;
    color: var(--deep-navy);
    cursor: pointer;
    box-shadow: 
        4px 4px 8px var(--neo-shadow-dark),
        -4px -4px 8px var(--neo-shadow-light);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    box-shadow: 
        6px 6px 12px var(--neo-shadow-dark),
        -6px -6px 12px var(--neo-shadow-light);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--metallic-silver);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        inset 2px 2px 4px var(--neo-shadow-dark),
        inset -2px -2px 4px var(--neo-shadow-light);
}

.dot.active {
    background: var(--metallic-gold);
    width: 32px;
    border-radius: 6px;
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.5),
        inset 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Technologies Section */
.technologies {
    background: rgba(255, 255, 255, 0.3);
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.tech-item {
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: default;
    min-width: 120px;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-4px);
    color: var(--metallic-gold);
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.5);
}

.alternating-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    height: 450px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

/* Contact Methods Wrapper - Cards Around Form */
.contact-methods-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.contact-method-card {
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--neo-bg);
    box-shadow: 
        6px 6px 12px var(--neo-shadow-dark),
        -6px -6px 12px var(--neo-shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.contact-method-card:hover::before {
    left: 100%;
}

.contact-method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        12px 12px 24px var(--neo-shadow-dark),
        -12px -12px 24px var(--neo-shadow-light),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.contact-method-card:active {
    transform: translateY(-4px) scale(0.98);
    box-shadow: 
        inset 4px 4px 8px var(--neo-shadow-dark),
        inset -4px -4px 8px var(--neo-shadow-light);
}

.method-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--metallic-gold), var(--metallic-copper));
    color: white;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(212, 175, 55, 0.4);
}

.method-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-navy);
    font-weight: 700;
}

.method-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.method-content a {
    color: var(--metallic-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.method-content a:hover {
    color: var(--metallic-copper);
}

.method-action {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-action {
    color: var(--metallic-gold);
    transform: translateX(4px);
}

/* Contact Form Wrapper - Centered */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.contact-form {
    padding: var(--spacing-xl);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-navy);
    font-weight: 700;
    background: linear-gradient(135deg, var(--metallic-gold), var(--metallic-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.form-group-full {
    grid-column: span 2;
}

.form-group-animated {
    position: relative;
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.form-group-animated:focus-within .form-label {
    color: var(--metallic-gold);
    opacity: 1;
    transform: translateX(4px);
}

.form-group-animated input,
.form-group-animated textarea {
    width: 100%;
    padding: var(--spacing-sm) 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(192, 192, 192, 0.3);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: none;
}

.form-group-animated input::placeholder,
.form-group-animated textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group-animated input:focus,
.form-group-animated textarea:focus {
    outline: none;
    border-bottom-color: var(--metallic-gold);
    padding-left: var(--spacing-xs);
}

.form-group-animated textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: var(--spacing-xs);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--metallic-copper));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.form-group-animated:focus-within .form-line {
    width: 100%;
}

.form-footer {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.form-footer .btn {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.form-footer .btn svg {
    transition: transform 0.3s ease;
}

.form-footer .btn:hover svg {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

/* Legacy form styles for compatibility */
.contact-content {
    display: none;
}

.contact-info {
    display: none;
}

.contact-item {
    display: none;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    background: var(--neo-bg);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 
        inset 4px 4px 8px var(--neo-shadow-dark),
        inset -4px -4px 8px var(--neo-shadow-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--metallic-gold);
    box-shadow: 
        inset 4px 4px 8px var(--neo-shadow-dark),
        inset -4px -4px 8px var(--neo-shadow-light),
        0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--deep-navy);
    color: var(--light-cream);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
    border-top: 3px solid var(--metallic-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.footer-section h3 {
    color: var(--metallic-gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: var(--spacing-xs);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--metallic-gold);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 53, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid var(--metallic-gold);
    padding: var(--spacing-md);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--light-cream);
}

.cookie-content a {
    color: var(--metallic-gold);
    text-decoration: underline;
}

.cookie-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--metallic-gold), var(--metallic-copper));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: var(--spacing-xl);
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--metallic-gold), var(--metallic-copper));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    color: var(--deep-navy);
    font-weight: 800;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(212, 175, 55, 0.15);
}

.thanks-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* Policy Pages */
.policy-section {
    padding: var(--spacing-xl) 0;
    background: rgba(255, 255, 255, 0.5);
    min-height: 70vh;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.policy-content h1 {
    font-size: 56px;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-navy);
    font-weight: 800;
    text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(212, 175, 55, 0.15);
}

.policy-date {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.policy-content h2 {
    font-size: 32px;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--deep-navy);
    font-weight: 700;
}

.policy-content h3 {
    font-size: 24px;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--deep-navy);
    font-weight: 600;
}

.policy-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: var(--spacing-xs);
}

.policy-content a {
    color: var(--metallic-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: var(--metallic-copper);
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .large-module {
        grid-column: span 1;
    }
    
    .alternating-layout {
        grid-template-columns: 1fr;
    }
    
    .portfolio-track {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        display: flex !important;
    }
    
    .portfolio-item.active {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(192, 192, 192, 0.3);
    }

    .nav.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .modular-grid {
        grid-template-columns: 1fr;
    }

    .about-image .image-wrapper {
        height: 350px;
    }

    .contact-methods-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .form-fields-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .policy-content {
        padding: var(--spacing-md);
    }

    .policy-content h1 {
        font-size: 40px;
    }

    .policy-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card,
    .portfolio-item {
        padding: var(--spacing-sm);
    }
    
    .contact-methods-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        padding: var(--spacing-sm);
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    :root {
        --spacing-md: 30px;
        --spacing-lg: 50px;
        --spacing-xl: 60px;
    }
}
