/* Reset ve Base Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

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

/* Modern Header ve Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow:
        0 1px 3px rgba(0,0,0,0.1),
        0 20px 40px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.company-name {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
}

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

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover span,
.nav-link.active span,
.nav-link span {
    position: relative;
    z-index: 1;
}

/* Modern Hero Section */
.hero {
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.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="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #6366f1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6366f1;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
}

.hero-partners {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-partners h3 {
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.partner {
    text-align: center;
}

.partner-logo-container {
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid #e2e8f0;
}

.partner-logo-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: #cbd5e0;
}

.partner-logo-img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-container:hover .partner-logo-img {
    transform: scale(1.05);
}

.logo-subtitle {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(135deg, #e53e3e, #38a169);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.hero-image {
    text-align: center;
}

/* Modern Kombi Gallery Styles */
.kombi-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
}

.kombi-brand {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.kombi-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 24px 24px 0 0;
}

.kombi-brand h3 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #475569);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
}

.kombi-products {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.kombi-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 20px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    max-width: 280px;
    text-align: center;
}

.kombi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 20px 20px 0 0;
}

.kombi-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.2);
}

.kombi-img {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.kombi-info h4 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1e293b, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kombi-specs {
    color: #6366f1;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.kombi-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kombi-features li {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.kombi-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Hero Visual Styles */
.hero-placeholder {
    text-align: center;
    padding: 60px 20px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.floating-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: 30px;
    border-radius: 50%;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.1);
}

.floating-icon:nth-child(1) {
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    animation-delay: 2s;
}

.hero-visual-text {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 600;
    background: linear-gradient(135deg, #64748b, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Kombiler Section */
.kombiler {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.kombiler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.kombiler .container {
    position: relative;
    z-index: 1;
}

.kombiler h2 {
    text-align: center;
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #0f172a 0%, #6366f1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.kombiler h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    margin-top: 60px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 24px 24px 0 0;
}

.cta-section h3 {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0f172a, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 60px rgba(99, 102, 241, 0.4),
        0 0 0 1px rgba(255,255,255,0.2);
}

.cta-button:hover::before {
    left: 100%;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 60px;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #e53e3e, #38a169);
    border-radius: 2px;
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.08),
        0 0 0 1px rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 24px 24px 0 0;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.2);
}

.service-card:nth-child(even)::before {
    background: linear-gradient(90deg, #ec4899, #f97316);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Kombi İlüstrasyonu */
.combi-illustration {
    width: 80px;
    height: 100px;
    position: relative;
}

.combi-body {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    border-radius: 8px;
    position: relative;
    margin: 0 auto;
}

.combi-body::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: #1a202c;
    border-radius: 4px;
}

.combi-pipes {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: #718096;
    border-radius: 2px;
}

.combi-pipes::before {
    content: '';
    position: absolute;
    left: -8px;
    width: 4px;
    height: 20px;
    background: #718096;
    border-radius: 2px;
}

.combi-pipes::after {
    content: '';
    position: absolute;
    right: -8px;
    width: 4px;
    height: 20px;
    background: #718096;
    border-radius: 2px;
}

.combi-display {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: #48bb78;
    border-radius: 2px;
    border: 2px solid #38a169;
}

/* Radyatör İlüstrasyonu */
.radiator-illustration {
    width: 80px;
    height: 60px;
    position: relative;
}

.radiator-body {
    width: 70px;
    height: 50px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    border-radius: 4px;
    position: relative;
    margin: 0 auto;
    border: 2px solid #a0aec0;
}

.radiator-fins {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 2px;
    background: #718096;
    box-shadow:
        0 -8px 0 #718096,
        0 -4px 0 #718096,
        0 4px 0 #718096,
        0 8px 0 #718096;
}

.radiator-valve {
    position: absolute;
    bottom: -5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: #e53e3e;
    border-radius: 50%;
}

.service-card h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 60px;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #e53e3e, #38a169);
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-item strong {
    color: #1a365d;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #e53e3e;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-map h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    background: #f7fafc;
    padding: 20px;
    border-radius: 10px;
}

.map-container iframe {
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-address {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-address p {
    color: #4a5568;
    margin-bottom: 10px;
}

.directions-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.directions-btn:hover {
    background: linear-gradient(135deg, #c53030, #9c2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
}

.partners-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.partners-section h3 {
    text-align: center;
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.partners-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.partner-info {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background: #f7fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partner-info-logo {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-info h4 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.partner-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-link {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.partner-info:nth-child(2) .partner-link {
    background: #38a169;
}

.partner-info:nth-child(2) .partner-link:hover {
    background: #2f855a;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 10px;
}

footer p:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: #fbb6ce;
}

/* Modern Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .partner-logos {
        flex-direction: column;
        gap: 20px;
    }

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

    .partners-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }

    .navbar .container {
        flex-direction: column;
        gap: 24px;
    }

    .hero {
        padding-top: 180px;
    }

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

    .kombi-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .kombi-products {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .kombi-card {
        max-width: 100%;
        width: 100%;
    }

    .kombi-img {
        width: 180px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .service-card,
    .contact-card,
    .partners-section {
        padding: 20px;
    }

    .hero-partners {
        padding: 20px;
    }
}

/* Modern Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-card {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:nth-child(odd) {
    animation-delay: 0.1s;
}

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

.kombi-brand {
    animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.kombi-brand:first-child {
    animation-delay: 0.2s;
}

.kombi-brand:last-child {
    animation-delay: 0.4s;
}

.hero-content h1 {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-description {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

/* Smooth Transitions */
a {
    transition: all 0.3s ease;
}

img {
    transition: transform 0.3s ease;
}