/* Xamsnap - Digital Crafted in Paris - Complete */
/* Sophisticated tech animations, responsive, professional */

/* ========== CSS VARIABLES ========== */
:root {
    /* Brand Colors - Sophisticated Tech */
    --primary-navy: #0f172a;
    --primary-navy-dark: #020617;
    --primary-navy-light: #1e293b;
    --primary-navy-bright: #334155;
    
    /* Accent Colors - Warm Tech */
    --accent-wood: #b9895c;
    --accent-wood-light: #d4a574;
    --accent-wood-dark: #9c6f43;
    --accent-wood-bright: #e0b080;
    
    /* Tech Colors */
    --tech-blue: #3b82f6;
    --tech-green: #10b981;
    --tech-purple: #8b5cf6;
    --tech-cyan: #06b6d4;
    
    /* Neutral Colors */
    --neutral-white: #ffffff;
    --neutral-offwhite: #f8fafc;
    --neutral-light: #f1f5f9;
    --neutral-gray: #64748b;
    --neutral-dark: #334155;
    
    /* UI */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-navy);
    background-color: var(--neutral-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== TECH BACKGROUND ========== */
.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(185, 137, 92, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 137, 92, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(25px, 25px); }
}

.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-wood), transparent);
    opacity: 0.1;
    animation: dataFlow 15s linear infinite;
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.circuit-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 137, 92, 0.2), transparent);
    animation: circuitFlow 20s linear infinite;
}

.l1 { top: 20%; animation-delay: 0s; }
.l2 { top: 50%; animation-delay: 5s; }
.l3 { top: 80%; animation-delay: 10s; }

@keyframes circuitFlow {
    0% { transform: translateX(-100%); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translateX(100%); opacity: 0.3; }
}

.node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-wood);
    border-radius: 50%;
    animation: nodePulse 3s ease-in-out infinite;
}

.n1 { top: 30%; left: 20%; animation-delay: 0s; }
.n2 { top: 60%; right: 30%; animation-delay: 1s; }
.n3 { bottom: 40%; left: 15%; animation-delay: 2s; }
.n4 { bottom: 20%; right: 25%; animation-delay: 1.5s; }

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-dark);
    font-size: 1.125rem;
    line-height: 1.7;
}

.highlight {
    color: var(--accent-wood);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(185, 137, 92, 0.15);
    z-index: -1;
    border-radius: 2px;
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== BUTTONS ========== */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    color: var(--neutral-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-navy-light), var(--primary-navy));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--neutral-white);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--accent-wood);
    color: var(--neutral-white);
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.btn-nav:hover {
    background: var(--accent-wood-dark);
    transform: translateY(-1px);
}

.tech-hover {
    position: relative;
    overflow: hidden;
}

.tech-hover::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.5s ease;
}

.tech-hover:hover::before {
    left: 100%;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-xam {
    color: var(--primary-navy);
}

.logo-snap {
    color: var(--accent-wood);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--neutral-gray);
    font-style: italic;
    margin-top: 0.125rem;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-wood);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-wood);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 0.375rem;
}

.menu-line {
    width: 1.5rem;
    height: 2px;
    background: var(--primary-navy);
    transition: var(--transition);
    transform-origin: center;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.9) 100%);
    color: var(--neutral-white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(185, 137, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(185, 137, 92, 0.1) 0%, transparent 50%);
}

.binary-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 50%, rgba(185, 137, 92, 0.05) 50%);
    background-size: 20px 20px;
    animation: binaryMove 30s linear infinite;
}

@keyframes binaryMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tagline-word {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-wood);
    font-weight: 500;
    animation: wordFloat 6s ease-in-out infinite;
}

.tagline-word:nth-child(3) {
    animation-delay: 2s;
}

.tagline-word:nth-child(5) {
    animation-delay: 4s;
}

@keyframes wordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tagline-dot {
    width: 4px;
    height: 4px;
    background: var(--accent-wood);
    border-radius: 50%;
    opacity: 0.5;
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--neutral-white);
}

.hero-title .highlight {
    color: var(--accent-wood);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(185, 137, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-wood);
    font-size: 1.25rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-wood);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* ========== SERVICES SECTION ========== */
.services {
    padding: 6rem 0;
    background: var(--neutral-offwhite);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(241, 245, 249, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-wood);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-wood), var(--tech-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-container {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 1.5rem;
    overflow: hidden;
}

.icon-particle, .icon-pulse, .icon-wave, .icon-social, 
.icon-chart, .icon-dot, .icon-shield, .icon-check {
    position: absolute;
}

.icon-particle {
    width: 4px;
    height: 4px;
    background: var(--accent-wood);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.p1 { top: 10px; left: 10px; animation-delay: 0s; }
.p2 { top: 30px; right: 10px; animation-delay: 1s; }
.p3 { bottom: 10px; left: 30px; animation-delay: 2s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(10px, -10px); opacity: 1; }
}

.icon-pulse {
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-wood);
    border-radius: var(--radius-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.icon-wave {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(185, 137, 92, 0.3);
    border-radius: var(--radius-md);
    animation: wave 3s ease-in-out infinite;
}

.w1 { animation-delay: 0s; }
.w2 { animation-delay: 1.5s; }

@keyframes wave {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.icon-social {
    width: 8px;
    height: 8px;
    background: var(--accent-wood);
    border-radius: 50%;
    animation: socialBounce 2s ease-in-out infinite;
}

.s1 { top: 15px; left: 15px; animation-delay: 0s; }
.s2 { top: 15px; right: 15px; animation-delay: 0.5s; }
.s3 { bottom: 15px; left: 25px; animation-delay: 1s; }

@keyframes socialBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-chart {
    width: 60%;
    height: 20px;
    border-bottom: 2px solid var(--accent-wood);
    border-left: 2px solid var(--accent-wood);
    bottom: 15px;
    left: 20%;
}

.icon-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-wood);
    border-radius: 50%;
    animation: dotMove 3s ease-in-out infinite;
}

.d1 { top: 25px; left: 20px; animation-delay: 0s; }
.d2 { bottom: 25px; right: 20px; animation-delay: 1.5s; }

@keyframes dotMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, -5px); }
}

.icon-shield {
    width: 80%;
    height: 80%;
    border: 2px solid var(--accent-wood);
    border-radius: var(--radius-md);
    animation: shieldRotate 4s linear infinite;
}

@keyframes shieldRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-check {
    width: 20px;
    height: 10px;
    border-left: 3px solid var(--accent-wood);
    border-bottom: 3px solid var(--accent-wood);
    transform: rotate(-45deg);
    top: 35px;
    left: 30px;
    animation: checkAppear 2s ease-in-out infinite;
}

@keyframes checkAppear {
    0%, 100% { opacity: 0; transform: rotate(-45deg) scale(0.5); }
    50% { opacity: 1; transform: rotate(-45deg) scale(1); }
}

.service-content h3 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.service-content > p {
    color: var(--neutral-dark);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.375rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--neutral-gray);
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--accent-wood);
    font-size: 0.875rem;
}

.service-tech {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(185, 137, 92, 0.1);
    color: var(--accent-wood);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ========== PROCESS SECTION ========== */
.process {
    padding: 6rem 0;
    background: var(--neutral-white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3rem;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-wood), transparent);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-wood);
    font-family: 'Playfair Display', serif;
    min-width: 3rem;
    text-align: right;
    opacity: 0.5;
}

.step-icon {
    position: relative;
    z-index: 1;
}

.step-icon-inner {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 1.25rem;
    position: relative;
}

.step-particle, .step-line, .step-gear, .step-trail {
    position: absolute;
}

.step-particle {
    width: 8px;
    height: 8px;
    background: var(--accent-wood);
    border-radius: 50%;
    top: 10px;
    left: 10px;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

.step-line {
    width: 30px;
    height: 2px;
    background: var(--accent-wood);
    top: 50%;
    right: -15px;
    animation: lineExtend 3s ease-in-out infinite;
}

@keyframes lineExtend {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 30px; opacity: 1; }
}

.step-gear {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-wood);
    border-radius: 50%;
    animation: gearRotate 4s linear infinite;
}

.step-gear::before,
.step-gear::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-wood);
    border-radius: 2px;
}

.step-gear::before {
    top: -5px;
    left: 15px;
}

.step-gear::after {
    bottom: -5px;
    right: 15px;
}

@keyframes gearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-trail {
    width: 30px;
    height: 2px;
    background: var(--accent-wood);
    top: 50%;
    right: -15px;
    animation: trailFlow 2s ease-in-out infinite;
}

@keyframes trailFlow {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 30px; opacity: 1; }
}

.step-content {
    flex: 1;
    background: var(--neutral-offwhite);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.step-content h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--neutral-gray);
    font-size: 1rem;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: 6rem 0;
    background: var(--neutral-offwhite);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-icon-inner {
    position: relative;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    font-size: 1.5rem;
    margin: 0 auto;
}

.contact-pulse, .contact-wave, .contact-spin {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--accent-wood);
    border-radius: 50%;
}

.contact-pulse {
    animation: contactPulse 2s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.contact-wave {
    animation: contactWave 3s ease-in-out infinite;
}

@keyframes contactWave {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.contact-spin {
    animation: contactSpin 4s linear infinite;
}

@keyframes contactSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-details h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.contact-text {
    color: var(--neutral-dark);
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--neutral-gray);
    margin: 0;
}

.email-cta {
    text-align: center;
}

.email-card {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(241, 245, 249, 0.8);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-wood), var(--tech-blue));
}

.email-icon {
    font-size: 3rem;
    color: var(--accent-wood);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.email-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-wood), transparent);
    transform-origin: left;
    animation: emailSend 2s ease-in-out infinite;
}

@keyframes emailSend {
    0%, 100% { transform: translateX(-50%) scaleX(0); opacity: 0; }
    50% { transform: translateX(50%) scaleX(1); opacity: 1; }
}

.email-card h3 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.email-card > p {
    color: var(--neutral-gray);
    margin-bottom: 2rem;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-light));
    color: var(--neutral-white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-navy-dark);
    color: var(--neutral-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent-wood);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-color {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.color-chip {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.color-chip.navy {
    background: var(--primary-navy);
}

.color-chip.wood {
    background: var(--accent-wood);
}

.color-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--neutral-white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-wood);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-wood);
    transform: translateY(-2px);
}

.footer-email a {
    color: var(--accent-wood);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-email a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-crafted {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ========== ANIMATION CLASSES ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 1.5rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tagline-dot {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 2rem;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .step-number {
        min-width: 2rem;
        font-size: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .service-card,
    .contact-card,
    .email-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .step-icon-inner {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}