:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #FFFFFF;
    --bg-secondary: #f8fafc;
    --bg-dark: #121316;
    --text-white: #FFFFFF;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0f0f0f;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #525252;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Hanken Grotesk', sans-serif;
}

.btn-primary {
    background-color: #0f0f0f;
    color: #ffffff;
    border-color: #0f0f0f;
}

.btn-primary:hover {
    background-color: #262626;
    border-color: #262626;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: #0f0f0f;
    border-color: #e5e5e5;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

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



.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f0f0f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #525252;
}

.nav-logo h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f0f0f;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
}

.nav-logo:hover {
    color: #525252;
}

.nav-logo h2 {
    font-size: 1.25rem !important;
    margin: 0 !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.nav-logo:hover {
    text-decoration: none;
    color: inherit;
}

.nav-logo-img {
    height: 24px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0;
}

.nav-link:hover {
    color: #6b7280;
}

.nav-link.active {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}



.nav-toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #0f0f0f;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #525252;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: #737373;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    opacity: 0;
    transform: translateX(30px);
    padding: 3rem;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(38, 38, 38, 0.9) 100%);
    border-radius: 2.5rem;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle 200px at 30% 70%, rgba(255, 0, 150, 0.4) 0%, rgba(255, 0, 150, 0.2) 20%, transparent 50%),
        radial-gradient(circle 250px at 70% 30%, rgba(0, 255, 255, 0.35) 0%, rgba(0, 255, 255, 0.15) 25%, transparent 55%),
        radial-gradient(circle 180px at 50% 50%, rgba(255, 255, 0, 0.3) 0%, rgba(255, 255, 0, 0.1) 30%, transparent 60%),
        radial-gradient(circle 220px at 80% 20%, rgba(150, 0, 255, 0.32) 0%, rgba(150, 0, 255, 0.12) 22%, transparent 52%);
    animation: colorWave 8s ease-in-out infinite;
    filter: blur(25px);
    z-index: 1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    right: -40%;
    bottom: -40%;
    background: 
        radial-gradient(circle 160px at 25% 75%, rgba(255, 0, 150, 0.25) 0%, rgba(255, 0, 150, 0.08) 30%, transparent 60%),
        radial-gradient(circle 140px at 75% 25%, rgba(0, 255, 255, 0.2) 0%, rgba(0, 255, 255, 0.06) 35%, transparent 65%),
        radial-gradient(circle 120px at 60% 60%, rgba(150, 255, 0, 0.18) 0%, rgba(150, 255, 0, 0.05) 32%, transparent 58%);
    animation: energyScan 6s ease-in-out infinite;
    filter: blur(20px);
    z-index: 2;
}

@keyframes colorWave {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translate(0, 0);
        filter: hue-rotate(0deg) blur(25px);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.3) rotate(90deg) translate(10px, -10px);
        filter: hue-rotate(90deg) blur(30px);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.8) rotate(180deg) translate(-15px, 15px);
        filter: hue-rotate(180deg) blur(35px);
    }
    75% {
        opacity: 0.85;
        transform: scale(1.2) rotate(270deg) translate(5px, -20px);
        filter: hue-rotate(270deg) blur(28px);
    }
}

@keyframes energyScan {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg) translate(0, 0);
        filter: hue-rotate(0deg) blur(20px);
    }
    33% {
        opacity: 1;
        transform: scale(1.1) rotate(120deg) translate(-8px, 12px);
        filter: hue-rotate(120deg) blur(25px);
    }
    66% {
        opacity: 0.9;
        transform: scale(0.9) rotate(240deg) translate(15px, -8px);
        filter: hue-rotate(240deg) blur(22px);
    }
}

.hero-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    right: -30%;
    bottom: -30%;
    background: 
        radial-gradient(circle 120px at 60% 20%, rgba(255, 0, 150, 0.4) 0%, rgba(255, 0, 150, 0.15) 25%, transparent 50%),
        radial-gradient(circle 100px at 20% 80%, rgba(0, 255, 255, 0.35) 0%, rgba(0, 255, 255, 0.12) 30%, transparent 55%),
        radial-gradient(circle 90px at 80% 70%, rgba(255, 255, 0, 0.3) 0%, rgba(255, 255, 0, 0.1) 28%, transparent 52%),
        radial-gradient(circle 110px at 40% 40%, rgba(150, 0, 255, 0.32) 0%, rgba(150, 0, 255, 0.11) 26%, transparent 48%);
    opacity: 0;
    transition: all 0.4s ease;
    animation: cardGlow 10s ease-in-out infinite;
    filter: blur(18px);
    z-index: 1;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: 
        radial-gradient(circle 80px at 30% 70%, rgba(255, 0, 150, 0.3) 0%, rgba(255, 0, 150, 0.1) 35%, transparent 65%),
        radial-gradient(circle 70px at 70% 30%, rgba(0, 255, 255, 0.25) 0%, rgba(0, 255, 255, 0.08) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(15px);
    z-index: 2;
}

@keyframes cardGlow {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        filter: hue-rotate(90deg) brightness(1.2);
    }
    50% {
        filter: hue-rotate(180deg) brightness(1.1);
    }
    75% {
        filter: hue-rotate(270deg) brightness(1.3);
    }
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover::after {
    opacity: 1;
}

.hero-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 12px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(120, 119, 198, 0.2);
}

.hero-card i {
    font-size: 3.5rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover i {
    color: #ffffff;
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: keyboardPress 0.6s ease-in-out;
}

.hero-card svg {
    width: 3.5rem;
    height: 3.5rem;
    stroke: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover svg {
    stroke: #ffffff;
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: keyboardPress 0.6s ease-in-out;
}

.hero-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: visible;
}

.hero-card:hover h3 {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
    color: #f8fafc;
}

@keyframes keyboardPress {
    0% {
        transform: scale(1.1) rotateY(10deg) translateZ(0);
    }
    50% {
        transform: scale(1.15) rotateY(15deg) translateZ(10px);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    }
    100% {
        transform: scale(1.1) rotateY(10deg) translateZ(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #0f0f0f;
}

.section-header p {
    font-size: 1.125rem;
    color: #737373;
    max-width: 600px;
    margin: 0 auto;
}

.about .section-header h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.about .section-header p {
    color: var(--text-white);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}



.about .container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: flex;
}

.contact-content {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    transform: translateX(-30px);
}

.about ul.values-list li {
    color: white !important;
}

.about .about-text h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about p {
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-text h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #0f0f0f;
}

.values-list i {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
}

.stat-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f0f0f;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #737373;
    font-weight: 500;
    margin: 0;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

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

.service-card {
    background: #000;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #d4d4d4;
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.service-card:hover::after {
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.service-features li::before {
    content: '•';
    color: #ffffff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: #fafafa;
}

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

.portfolio-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 200px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e5e5;
}

.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f8f8 0%, #e5e5e5 100%);
}

.portfolio-placeholder i {
    width: 3rem;
    height: 3rem;
    color: #737373;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: #0f0f0f;
    margin-bottom: 0.75rem;
}

.portfolio-content p {
    color: #525252;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: #f1f1f1;
    color: #525252;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}


.contact-info {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #0f0f0f;
    color: #ffffff;
}

.contact-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: #0f0f0f;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-icon i {
    color: #ffffff;
}

.contact-item:hover .contact-icon svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

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

.contact-details h4 {
    color: #0f0f0f;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-details p {
    color: #525252;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details a {
    color: #0f0f0f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #262626;
    text-decoration: underline;
}

.contact-form {
    opacity: 0;
    transform: translateY(30px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0f0f0f;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0f0f0f;
    box-shadow: 0 0 0 3px rgba(15, 15, 15, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

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

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    background: #0f0f0f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: #262626;
    transform: translateY(-2px);
}

/* Styles pour la case à cocher RGPD */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Anti-spam CAPTCHA styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 15, 15, 0.05);
    border: 1px solid rgba(15, 15, 15, 0.1);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

#captcha-question {
    font-weight: 600;
    color: #0f0f0f;
    font-size: 1.1rem;
    min-width: 120px;
}

#captcha {
    max-width: 100px;
    text-align: center;
    font-weight: 600;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
    transform: scale(1.2);
    accent-color: #0f0f0f;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #0f0f0f;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #262626;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section p {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1);
}

.footer-logo h3 {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: #262626;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #404040;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-links i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid #262626;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a3a3a3;
    margin: 0;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 20px;
}

.legal-header p {
    font-size: 1.2rem;
    color: #525252;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 20px;
    border-bottom: 2px solid #0f0f0f;
    padding-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    color: #525252;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #525252;
}

.legal-content a {
    color: #0f0f0f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #525252;
    text-decoration: underline;
}

.legal-content strong {
    color: #0f0f0f;
    font-weight: 600;
}

/* Legal pages footer styles with maximum specificity */
body.legal-page footer.footer,
body.legal-page footer.footer *,
body.legal-page footer.footer p,
body.legal-page footer.footer li,
body.legal-page footer.footer span,
body.legal-page footer.footer div {
    background: #0f0f0f !important;
    color: #d1d5db !important;
}

body.legal-page footer.footer h3,
body.legal-page footer.footer h4 {
    color: white !important;
}

body.legal-page footer.footer a {
    color: #d1d5db !important;
    text-decoration: none;
}

body.legal-page footer.footer a:hover {
    color: white !important;
    text-decoration: underline;
}

body.legal-page footer.footer .social-links a {
    background: #262626 !important;
    color: #d1d5db !important;
}

body.legal-page footer.footer .social-links a:hover {
    background: #374151 !important;
    color: white !important;
}

body.legal-page footer.footer .contact-info p {
    color: #d1d5db !important;
}

body.legal-page footer.footer .footer-bottom p {
    color: #d1d5db !important;
}

/* Force override any inherited styles */
body.legal-page footer.footer ul,
body.legal-page footer.footer ul li,
body.legal-page footer.footer ul li a {
    color: #d1d5db !important;
}

body.legal-page footer.footer .footer-section {
    color: #d1d5db !important;
}

body.legal-page footer.footer .footer-content {
    color: #d1d5db !important;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-accept,
.btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-accept {
    background: #0f0f0f;
    color: white;
}

.btn-accept:hover {
    background: #262626;
    transform: translateY(-1px);
}

.btn-decline {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #374151;
}

.btn-decline:hover {
    background: #374151;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
        flex-direction: column;
        padding: 2rem 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 5rem 0 3rem;
        justify-content: center;
    }
    
    .hero-container {
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 8rem);
    }
    
    .hero-content {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 2rem;
    }
    
    .hero-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
    
    .hero-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .hero-card i,
    .hero-card svg {
        font-size: 3rem;
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-card h3 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* About Section Responsive */
    .about {
        padding: 80px 0;
    }
    
    .about .container {
         padding: 2rem 1.5rem;
         margin: 0 1rem;
         border-radius: 15px;
     }
     
     .about-content {
         display: flex;
         flex-direction: column;
     }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        transform: translateX(0);
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .about-stats {
        transform: translateX(0);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card h4 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
         font-size: 0.8rem !important;
     }
    
    .footer-content {
         text-align: center;
     }
     
     .social-links {
         display: flex;
         gap: 1rem;
         justify-content: center;
     }
     
     .footer-logo {
         display: flex;
         align-items: center;
         gap: 0.75rem;
         margin-bottom: 1rem;
         flex-direction: column;
     }
}

@media (max-width: 480px) {
    .hero {
        justify-content: center;
    }
    
    .hero-container {
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 8rem);
        text-align: center;
    }
    
    .hero-content {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* About Section Mobile Optimization */
    .about {
        padding: 60px 0;
    }
    
    .about .container {
         padding: 1.5rem 1rem;
         margin: 0 0.5rem;
         border-radius: 12px;
         backdrop-filter: blur(8px);
         -webkit-backdrop-filter: blur(8px);
     }
     
     .about-content {
         display: flex;
         flex-direction: column;
     }
    
    .about-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
        margin-top: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .values-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-card h4 {
        font-size: 1.75rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cookie Consent Responsive */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 0 20px;
    }
    
    .nav-logo h2 {
        font-size: 0.9rem;
    }
    
    .footer-content {
         text-align: center;
     }
     
     .social-links {
         display: flex;
         gap: 1rem;
         justify-content: center;
     }
     
     .footer-logo {
         display: flex;
         align-items: center;
         gap: 0.75rem;
         margin-bottom: 1rem;
         flex-direction: column;
     }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0f0f0f !important;
    color: white !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    outline: none;
}

.scroll-to-top:hover {
    background: #262626 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:focus {
    background: #0f0f0f !important;
    color: white !important;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(15, 15, 15, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .contact-info {
        display: flex;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.slide-in-left {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.slide-in-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

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

.mb-3 {
    margin-bottom: 1.5rem;
}

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

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

/* Focus Styles */
.btn:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #0f0f0f;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        page-break-after: always;
    }
}