.hero-section {
    background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)),
        url('/assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    will-change: transform;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.hero-service-card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)),
            url('/assets/images/hero/hero-bg-1.jpg');
        background-attachment: scroll;
        padding: 80px 0;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-service-card {
        padding: 1.5rem;
    }
}

/* Hero Service Cards Container */
.hero-services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

.hero-service-card:hover {
    background-color: rgba(17, 24, 39, 0.95);
    border-color: rgba(245, 158, 11, 0.3);
}

.hero-service-card .service-icon {
    transition: transform 0.3s ease;
}

.hero-service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f59e0b;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Mobil optimizasyonlar */
@media (max-width: 768px) {

    a,
    button {
        min-height: 44px;
        min-width: 44px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
        /* iOS zoom sorununu önler */
    }

    .hero-services-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-service-card {
        width: 100%;
        max-width: none;
        min-width: auto;
        padding: 1.5rem;
    }
}

/* Erişilebilirlik için focus stilleri */
a:focus,
button:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

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

/* Cookie Notice */
#cookie-notice {
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1),
        0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Form Validation Stilleri */
.form-input.error {
    border: 2px solid #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Form başarılı gönderim mesajı */
.success-message {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Görsel optimizasyonları */
img {
    max-width: 100%;
    height: auto;
    will-change: transform;
}

/* Print Media Queries */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    .container {
        width: 100%;
        max-width: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100vh;
}

.hero-slider .slide {
    width: 100%;
    height: 100vh;
}

/* Slick Dots */
.slick-dots {
    bottom: 25px;
    z-index: 10;
}

.slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

/* Genel Stiller */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Neon glow efekti için genel sınıf */
.neon-glow-hover {
    transition: all 0.3s ease;
}

.neon-glow-hover:hover {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5),
        0 0 30px rgba(245, 158, 11, 0.3),
        0 0 45px rgba(245, 158, 11, 0.1);
    transform: translateY(-5px);
}

/* Hero kartları için özel efekt */
.hero-card-glow:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4),
        0 0 35px rgba(245, 158, 11, 0.2);
    background-color: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Blog kartları için özel efekt */
.blog-card-glow:hover {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.3),
        0 0 40px rgba(245, 158, 11, 0.2);
    transform: translateY(-5px);
}

.blog-card {
    background-color: rgb(31, 41, 55);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 12rem;
    /* h-48 */
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-property: transform;
    transition-duration: 300ms;
}

/* Hover efekti için */
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.exchange-rate {
    display: inline-flex;
    align-items: center;
    padding: 1px 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    white-space: nowrap;
    margin-right: -2px;
}

.exchange-rate .value {
    margin-left: 2px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.exchange-rate .value span {
    margin-right: 0;
}

@media (max-width: 768px) {
    .exchange-rate {
        font-size: 0.65rem;
        padding: 1px 3px;
    }

    #mobile-menu {
        background-color: rgba(17, 24, 39, 0.95);
        /* bg-gray-900 with opacity */
        backdrop-filter: blur(4px);
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        padding: 1rem;
        border-top: 1px solid rgba(75, 85, 99, 0.2);
        /* border-gray-600 with opacity */
    }
}

/* Logo boyutu */
@media (max-width: 640px) {
    .logo img {
        height: 2.5rem;
        /* h-10 */
    }
}

/* Dil seçimi için stiller */
.lang-switch a {
    transition: all 0.3s ease;
}

.lang-switch a:hover {
    transform: translateY(-1px);
}

.lang-switch a.active {
    font-weight: 600;
}