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

html,
body {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    --primary-color: #ff4757;
    --secondary-color: #3742fa;
    --accent-color: #2f3542;
    --success-color: #2ed573;
    --warning-color: #ffa502;
    --danger-color: #ff3838;
    --info-color: #1e90ff;
    --purple-color: #a55eea;
    --pink-color: #fd79a8;
    --orange-color: #fdcb6e;
    --teal-color: #00d2d3;
    --light-color: #f1f2f6;
    --dark-color: #2f3542;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 0;
    box-shadow: 0 -2px 30px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid #e0e0e0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4757;
}

.cookie-icon svg {
    width: 22px;
    height: 22px;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2f3542;
    margin-bottom: 6px;
    line-height: 1.4;
}

.cookie-text p {
    font-size: 0.875rem;
    color: #57606f;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: #ff4757;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #ff6348;
    text-decoration: none;
}

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

.btn-cookie {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-accept {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.35);
    border: none;
}

.btn-accept::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;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #ff6348 0%, #ff4757 100%);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.45);
    transform: translateY(-2px);
}

.btn-accept:hover::before {
    left: 100%;
}

.btn-accept:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.35);
}

.btn-decline {
    background: #ffffff;
    color: #57606f;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-decline:hover {
    background: #f8f9fa;
    border-color: #ff4757;
    color: #ff4757;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.2);
    transform: translateY(-2px);
}

.btn-decline:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background: var(--gray-600);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-700);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: var(--transition);
    will-change: transform, background-color;
    contain: layout style paint;
    max-height: 80px;
}

.navbar {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    min-height: 60px;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -20px;
    padding-left: 0;
    position: relative;
    left: -320px;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    background: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Remove white background from logo if exists */
.nav-logo {
    background: transparent;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Desktop nav-menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

@media (min-width: 769px) {
    .nav-menu {
        position: static;
    }
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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


/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    will-change: background-position;
    contain: layout style paint;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.road-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.road-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.road-line {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            #ffffff 20%,
            #ffffff 30%,
            transparent 40%,
            transparent 60%,
            #ffffff 70%,
            #ffffff 80%,
            transparent 100%);
    animation: roadMove 2s linear infinite;
}

.road-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.road-line:nth-child(2) {
    left: 35%;
    animation-delay: -0.4s;
}

.road-line:nth-child(3) {
    left: 50%;
    animation-delay: -0.8s;
}

.road-line:nth-child(4) {
    left: 65%;
    animation-delay: -1.2s;
}

.road-line:nth-child(5) {
    left: 80%;
    animation-delay: -1.6s;
}

.car-animation {
    position: relative;
    width: 400px;
    height: 300px;
    perspective: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.real-car-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: carDriving 4s ease-in-out infinite;
}

.real-car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.real-car-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

.car-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.2), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite alternate;
    z-index: -1;
}

.car-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(26, 101, 158, 0.15), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite alternate-reverse;
}

.car-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    border-radius: 20px;
    animation: reflectionMove 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.car-text-overlay {
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
    width: 100%;
}

.animated-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

.letter {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #ffffff, #1a659e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterSlideIn 0.8s ease-out forwards,
        textGlow 2s ease-in-out infinite alternate,
        gradientShift 4s ease-in-out infinite,
        continuousSlide 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
}

.letter.space {
    width: 0.5em;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.text-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.3), transparent 70%);
    border-radius: 50%;
    animation: textGlowPulse 2s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
    z-index: 1;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.8s both;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 165, 2, 0.2));
    border-color: rgba(255, 71, 87, 0.3);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.2), rgba(30, 144, 255, 0.2));
    border-color: rgba(46, 213, 115, 0.3);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(165, 94, 234, 0.2), rgba(253, 121, 168, 0.2));
    border-color: rgba(165, 94, 234, 0.3);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:nth-child(1):hover i {
    background: linear-gradient(135deg, #ff3838, #ff6b6b, #ffa502);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(255, 107, 107, 0.9));
    transform: scale(1.3) rotate(15deg);
    animation: iconPulse 0.6s ease-in-out;
}

.feature-card:nth-child(2):hover i {
    background: linear-gradient(135deg, #26de81, #2ed573, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(46, 213, 115, 0.9));
    transform: scale(1.3) rotate(-15deg);
    animation: iconPulse 0.6s ease-in-out;
}

.feature-card:nth-child(3):hover i {
    background: linear-gradient(135deg, #9c88ff, #a55eea, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(165, 94, 234, 0.9));
    transform: scale(1.3) rotate(15deg);
    animation: iconPulse 0.6s ease-in-out;
}

.feature-card i {
    font-size: 48px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:nth-child(1) i {
    background: linear-gradient(135deg, #ff6b6b, #ffa502, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.6));
}

.feature-card:nth-child(2) i {
    background: linear-gradient(135deg, #2ed573, #1e90ff, #00d2d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(46, 213, 115, 0.6));
}

.feature-card:nth-child(3) i {
    background: linear-gradient(135deg, #a55eea, #fd79a8, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 15px rgba(165, 94, 234, 0.6));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f3542;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff4757;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
    border: 1px solid #e9ecef;
    display: block;
    visibility: visible;
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Service Card 1 - Reparaturen */
.service-card:nth-child(1) {
    background: linear-gradient(135deg, #ff4757, #ff3838, #ff6b6b);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

/* Service Card 1 - Reparaturen */
.service-card:nth-child(1) {
    background: linear-gradient(135deg, #ff4757, #ff3838, #ff6b6b);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.service-card:nth-child(1)::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Service Card 2 - Wartung */
.service-card:nth-child(2) {
    background: linear-gradient(135deg, #2ed573, #1e90ff, #00d2d3);
    color: white;
    box-shadow: 0 10px 30px rgba(46, 213, 115, 0.3);
}

.service-card:nth-child(2)::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Service Card 3 - TÜV & AU */
.service-card:nth-child(3) {
    background: linear-gradient(135deg, #3742fa, #2f3542, #5352ed);
    color: white;
    box-shadow: 0 10px 30px rgba(55, 66, 250, 0.3);
}

.service-card:nth-child(3)::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Service Card 4 - Unfallschäden */
.service-card:nth-child(4) {
    background: linear-gradient(135deg, #fd79a8, #fdcb6e, #e84393);
    color: white;
    box-shadow: 0 10px 30px rgba(253, 121, 168, 0.3);
}

.service-card:nth-child(4)::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Service Card 5 - Reifen & Räder */
.service-card:nth-child(5) {
    background: linear-gradient(135deg, #ffa502, #fdcb6e, #e17055);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 165, 2, 0.3);
}

.service-card:nth-child(5) .service-icon {
    background: #ffffff !important;
    border: 3px solid #000000 !important;
}

.service-card:nth-child(5) .service-icon i {
    color: #000000 !important;
}

.service-card:nth-child(5)::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

/* Service Card 6 - Batterie & Starter */
.service-card:nth-child(6) {
    background: linear-gradient(135deg, #a55eea, #26de81, #4834d4);
    color: white;
    box-shadow: 0 10px 30px rgba(165, 94, 234, 0.3);
}

.service-card:nth-child(6)::before {
    background: linear-gradient(90deg, #ffffff, #f8f9fa);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover .service-icon::before {
    animation: shine 0.6s ease-in-out;
}

.service-icon i {
    font-size: 42px;
    color: #000000 !important;
    transition: var(--transition);
    z-index: 1;
    position: relative;
    text-shadow: none;
    font-weight: bold;
    display: block;
}

/* Tüm service icon'larını zorla siyah yap */
.service-card .service-icon i {
    color: #000000 !important;
}

.service-card:nth-child(1) .service-icon i,
.service-card:nth-child(2) .service-icon i,
.service-card:nth-child(3) .service-icon i,
.service-card:nth-child(4) .service-icon i,
.service-card:nth-child(5) .service-icon i,
.service-card:nth-child(6) .service-icon i {
    color: #000000 !important;
}

/* Ekstra güvenlik için tüm icon'ları zorla siyah yap */
.service-icon i,
.service-card .service-icon i,
.service-card:nth-child(1) .service-icon i,
.service-card:nth-child(2) .service-icon i,
.service-card:nth-child(3) .service-icon i,
.service-card:nth-child(4) .service-icon i,
.service-card:nth-child(5) .service-icon i,
.service-card:nth-child(6) .service-icon i {
    color: #000000 !important;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* SVG ikonları için stil */
.service-icon svg {
    width: 42px;
    height: 42px;
    transition: var(--transition);
    z-index: 1;
    position: relative;
    display: block;
}

.service-icon svg circle,
.service-icon svg line {
    stroke: #000000 !important;
    fill: #000000 !important;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-btn svg {
    width: 16px;
    height: 16px;
    color: currentColor;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-feature i {
    font-size: 48px;
    color: var(--primary-color);
    width: 60px;
    text-align: center;
}

.about-feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-feature p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop-animation {
    font-size: 200px;
    color: var(--secondary-color);
    animation: rotate 10s linear infinite;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    justify-items: center;
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 30px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.whatsapp-contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-right: 50px;
    justify-self: end;
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 30px;
}

.whatsapp-header i {
    font-size: 48px;
    color: #25d366;
    margin-bottom: 15px;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-header h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.whatsapp-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.whatsapp-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.whatsapp-option {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    border-color: #25d366;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.option-icon i {
    font-size: 24px;
    color: white;
}

.option-content h4 {
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.option-content p {
    color: var(--gray-600);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 14px;
}

.whatsapp-call {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.whatsapp-call:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-message {
    background: linear-gradient(135deg, #075e54, #25d366);
    color: white;
}

.whatsapp-message:hover {
    background: linear-gradient(135deg, #25d366, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.quick-services {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 30px;
    justify-self: start;
}

.quick-services h4 {
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.service-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    max-width: 100%;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--border-radius);
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 12px;
    min-width: 0;
    max-width: 100%;
}

.service-btn:hover {
    background: #25d366;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    border-color: #25d366;
}

.service-btn i {
    font-size: 16px;
    margin-bottom: 3px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 16px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--dark-color);
    line-height: 1.5;
    font-weight: 500;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2f3542 0%, #57606f 50%, #747d8c 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--gray-500);
    transition: var(--transition);
}

.close:hover,
.close-impressum:hover,
.close-agb:hover,
.close-game:hover {
    color: var(--dark-color);
}

.close-impressum,
.close-agb,
.close-game {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--gray-500);
    transition: var(--transition);
}

.privacy-content h3 {
    color: var(--primary-color);
    margin: 30px 0 15px 0;
}

.privacy-content h4 {
    color: var(--primary-color);
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.privacy-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-content ul {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content ul li {
    margin-bottom: 8px;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateCar {
    0% {
        transform: rotateY(0deg);
    }

    25% {
        transform: rotateY(90deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    75% {
        transform: rotateY(270deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes rotateWheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shadowPulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes rotateCar3D {
    0% {
        transform: rotateY(0deg) rotateX(5deg);
    }

    25% {
        transform: rotateY(90deg) rotateX(2deg);
    }

    50% {
        transform: rotateY(180deg) rotateX(-5deg);
    }

    75% {
        transform: rotateY(270deg) rotateX(-2deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(5deg);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes reflectionMove {
    0% {
        transform: translateX(-100%) translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translateX(100%) translateY(100%);
        opacity: 0;
    }
}

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

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes letterSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg) scale(0.5);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-10px) rotateX(0deg) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) rotateX(0deg) scale(1);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
    }

    100% {
        text-shadow: 0 0 30px rgba(255, 107, 53, 1), 0 0 40px rgba(255, 107, 53, 0.8), 0 0 50px rgba(26, 101, 158, 0.6);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes textGlowPulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes continuousSlide {
    0% {
        opacity: 1;
        transform: translateY(0px) rotateX(0deg) scale(1);
    }

    45% {
        opacity: 1;
        transform: translateY(0px) rotateX(0deg) scale(1);
    }

    50% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg) scale(0.5);
    }

    55% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg) scale(0.5);
    }

    60% {
        opacity: 0.7;
        transform: translateY(-10px) rotateX(0deg) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) rotateX(0deg) scale(1);
    }
}

@keyframes roadMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes carDriving {
    0% {
        transform: translateX(-20px) translateY(0px) rotateY(0deg);
    }

    25% {
        transform: translateX(0px) translateY(-5px) rotateY(2deg);
    }

    50% {
        transform: translateX(20px) translateY(0px) rotateY(0deg);
    }

    75% {
        transform: translateX(0px) translateY(5px) rotateY(-2deg);
    }

    100% {
        transform: translateX(-20px) translateY(0px) rotateY(0deg);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        color: #25d366;
    }

    50% {
        transform: scale(1.1);
        color: #128c7e;
    }

    100% {
        transform: scale(1);
        color: #25d366;
    }
}

/* Responsive Design - MOBIL */
@media screen and (max-width: 768px) {
    .header {
        max-height: none;
    }

    .navbar {
        padding: 0.5rem 0;
        min-height: auto;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .nav-container {
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .nav-logo {
        margin-left: 0;
        padding-left: 0;
        position: static;
        left: 0;
        z-index: 1;
        flex-shrink: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-image {
        height: 45px;
        max-width: 200px;
        width: auto;
    }

    /* Mobil menü - Desktop gibi normal görünüm */
    .nav-menu {
        display: flex !important;
        list-style: none !important;
        gap: 4px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        position: static !important;
        background: transparent !important;
        width: 100% !important;
        height: auto !important;
        padding: 5px 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .nav-menu li {
        margin: 0 !important;
        flex: 1 1 auto !important;
    }

    .nav-link {
        font-size: 0.75rem !important;
        padding: 5px 6px !important;
        white-space: nowrap !important;
        display: inline-block !important;
        color: #1a1a1a !important;
        text-align: center !important;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .car-animation {
        width: 300px;
        height: 200px;
        margin-top: 56px;
    }

    .real-car-image {
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    }

    .animated-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .car-text-overlay {
        top: -30%;
        margin-top: 56px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workshop-animation {
        font-size: 120px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-right {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .whatsapp-contact {
        margin-right: 0;
        margin-left: 0;
        justify-self: center;
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .whatsapp-options {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        margin: 0 auto 20px;
    }

    .quick-services {
        margin-left: 0;
        justify-self: center;
        width: 100%;
        max-width: 100%;
    }

    .service-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .service-btn {
        padding: 8px 4px;
        font-size: 11px;
    }

    .service-btn i {
        font-size: 14px;
    }

    .services-grid {
        padding: 0 10px;
    }

    .service-card {
        padding: 20px;
        margin: 0;
    }

    .whatsapp-contact {
        padding: 20px;
    }

    .quick-services {
        padding: 20px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .about-content {
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: left;
        padding: 20px;
        gap: 16px;
    }

    .cookie-icon {
        width: 40px;
        height: 40px;
    }

    .cookie-icon svg {
        width: 20px;
        height: 20px;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-text h4 {
        font-size: 0.95rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn-cookie {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.9375rem;
    }

    .btn-accept {
        order: 1;
    }

    .btn-decline {
        order: 2;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .contact-form {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Animation classes for scroll animations */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card,
.feature-card,
.about-feature,
.contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.animate-in,
.feature-card.animate-in,
.about-feature.animate-in,
.contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}