html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #222;
}

/***** Modern Menü Tasarımı *****/
nav {
    background: #faf6f2 !important;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.10);
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 32px;
    max-width: 100vw;
    box-sizing: border-box;
    background: transparent;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 110px;
    width: auto;
    margin-right: 18px;
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
    transition: height 0.2s;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.18));
    border-radius: 0;
    background: none;
    padding: 0;
    box-shadow: none;
}

.logo-text {
    font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.2em;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.logo-text b {
    color: #e53935;
    font-weight: 500;
    margin-left: 0.15em;
}

/* Menü kapsayıcısı */
.menu-container {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(255, 152, 0, 0.07), 0 1.5px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 6px 18px;
    gap: 8px;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 16px;
    background: none;
    box-shadow: none;
    position: static;
    flex-direction: row;
    width: auto;
    pointer-events: auto;
    opacity: 1;
    transition: none;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 8px 24px;
    border-radius: 24px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    background: none;
    box-shadow: none;
    border: none;
    position: relative;
    white-space: nowrap;
}

.nav-links a.active,
.nav-links a:focus {
    background: linear-gradient(90deg, #e53935 0%, #d32f2f 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.10);
    font-weight: 700;
}

.nav-links a:hover:not(.active) {
    background: #f7e6e6;
    color: #d32f2f;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-main-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 1.3rem;
    color: #e53935;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: #e53935;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(229, 57, 53, 0.08);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border: none;
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, #e53935 0%, #d32f2f 100%);
    color: #fff;
    transform: translateX(4px);
}

.dropdown-menu a:first-child {
    border-radius: 16px 16px 0 0;
}

.dropdown-menu a:last-child {
    border-radius: 0 0 16px 16px;
}

/* Hamburger menü butonu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 102;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #222;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s ease;
    transform-origin: center;
}

/* Hamburger animasyonu */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/***** Tablet Responsive (900px ve altı) *****/
@media (max-width: 1000px) {
    .navbar {
        padding: 0 20px;
        height: 80px;
    }

    .logo-img {
        height: 68px;
        margin-right: 8px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .menu-container {
        padding: 4px 12px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 0.98rem;
        padding: 6px 16px;
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 18px;
        height: 80px;
    }

    .logo-img {
        height: 62px;
        margin-right: 6px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .menu-container {
        padding: 4px 10px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.92rem;
        padding: 5px 14px;
        white-space: nowrap;
    }
}

@media (max-width: 800px) {
    .navbar {
        padding: 0 16px;
        height: 75px;
    }

    .logo-img {
        height: 60px;
        margin-right: 5px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .menu-container {
        padding: 3px 8px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 4px 12px;
        white-space: nowrap;
    }
}

/***** Mobil Responsive (768px ve altı) *****/
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu-container {
        background: none;
        box-shadow: none;
        padding: 0;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 120px 0 40px 0;
        gap: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 101;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 18px 32px;
        border-radius: 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
        text-decoration: none;
        color: #444;
        transition: all 0.2s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.active {
        background: linear-gradient(90deg, #e53935 0%, #d32f2f 100%);
        color: #fff;
    }

    .nav-links a:hover:not(.active) {
        background: #f7e6e6;
        color: #d32f2f;
    }

    /* Mobil dropdown styles */
    .dropdown {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        order: 0; /* Normal sırada görünmesi için */
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 18px 32px;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
        cursor: pointer;
        position: relative;
        text-decoration: none;
        color: #444;
        font-size: 1.1rem;
        background: none;
        border: none;
        text-align: left;
        font-family: inherit;
        transition: all 0.2s ease;
        font-weight: normal;
        order: 0; /* Diğer menü itemleriyle aynı sırada */
    }

    .dropdown-toggle:hover:not(.active) {
        background: #f7e6e6;
        color: #d32f2f;
    }

    .dropdown-arrow {
        font-size: 0.9rem;
        color: #e53935;
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        margin: 0;
        padding: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
    }

    .dropdown.open .dropdown-menu {
        max-height: 300px; /* Yeterince büyük bir değer */
    }

    .dropdown-menu a {
        padding: 14px 48px;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid #e0e0e0;
        background: #f8f9fa;
        display: block;
        width: 100%;
        box-sizing: border-box;
        color: #555;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        transform: none;
        background: linear-gradient(90deg, #e53935 0%, #d32f2f 100%);
        color: #fff;
    }

    /* Mobil menü overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/***** Küçük Mobil Responsive (600px ve altı) *****/
@media (max-width: 600px) {
    .navbar {
        padding: 0 16px;
        height: 70px;
    }

    .logo-img {
        height: 44px;
        margin-right: 6px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-links {
        width: 260px;
        padding: 100px 0 30px 0;
    }

    .nav-links a {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .dropdown-toggle {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .dropdown-menu a {
        padding: 12px 40px;
        font-size: 0.95rem;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
}

/***** Çok Küçük Ekranlar (480px ve altı) *****/
@media (max-width: 480px) {
    .navbar {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .nav-links {
        width: 240px;
    }

    .nav-links a {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/***** Diğer stiller (değiştirilmeden korundu) *****/
main {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

@media (max-width: 600px) {
    main {
        padding: 20px;
        margin: 20px auto;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input,
textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

button:hover {
    background: rgba(229, 57, 53, 0.85);
}

/***** Slider Stilleri (değiştirilmeden korundu) *****/
.slider-container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    background: none;
}

.slider {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

.slide {
    display: none;
    width: 100vw;
    height: 650px;
    animation: fadeIn 1s;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
    position: relative;
    z-index: 2;
}

.slide img {
    width: 100vw;
    height: 650px;
    object-fit: cover;
    border-radius: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #fff;
    border: none;
    border-radius: 0;
    width: 40px;
    height: 40px;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
    box-shadow: none;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: none;
    font-weight: 700;
}

.slider-btn:hover {
    color: #e0e0e0;
    background: none;
    box-shadow: none;
    border: none;
    transform: translateY(-50%) scale(1.15);
}

.slider-btn:active {
    color: #bdbdbd;
    background: none;
    box-shadow: none;
    border: none;
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.slider-dots .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
}

.slider-dots .dot.active {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    border: 1.5px solid #e53935;
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(229, 57, 53, 0.4), 0 0 25px rgba(229, 57, 53, 0.2);
}

.slider-dots .dot.active::before {
    width: 4px;
    height: 4px;
    background: #fff;
}

/* Responsive Design */
@media (max-width: 900px) {
    .slide,
    .slide img {
        height: 400px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }

    .slider-btn:hover {
        transform: translateY(-50%) scale(1.06);
    }

    .slider-dots {
        bottom: 22px;
        gap: 8px;
        padding: 8px 14px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .slider-dots .dot:hover {
        transform: scale(1.12);
    }

    .slider-dots .dot.active {
        transform: scale(1.22);
    }

    .slider-dots .dot.active::before {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 600px) {
    .slide,
    .slide img {
        height: 220px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        color: #fff !important;
        border-radius: 0 !important;
        opacity: 1 !important;
    }

    .slider-btn.prev {
        left: 2px !important;
    }

    .slider-btn.next {
        right: 2px !important;
    }

    .slider-dots {
        bottom: 18px;
        gap: 6px;
        padding: 6px 12px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .slider-dots .dot.active {
        border: 1px solid #e53935;
        transform: scale(1.2);
    }

    .slider-dots .dot.active::before {
        width: 2px;
        height: 2px;
    }
}

.slider-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10%;
    z-index: 2;
    color: #fff;
    background: rgba(30, 41, 59, 0.75);
    padding: 32px 36px 28px 36px;
    border-radius: 18px;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.slider-caption .slider-icon {
    font-size: 2.6rem;
    margin-bottom: 8px;
    color: #38bdf8;
    filter: drop-shadow(0 2px 8px #0ea5e9cc);
}

.slider-caption h2 {
    margin: 0 0 8px 0;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.slider-caption p {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.slider-btn-link {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 28px;
    background: linear-gradient(90deg, #38bdf8 0%, #6366f1 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 24px;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(56, 189, 248, 0.18);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.slider-btn-link:hover {
    background: linear-gradient(90deg, #6366f1 0%, #38bdf8 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.18);
}

.slide {
    position: relative;
}

/***** Video Stilleri (değiştirilmeden korundu) *****/
.video-container {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto 32px auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.slider-video-wrapper {
    position: relative;
    width: 100vw;
    height: 650px;
    max-width: 100vw;
    margin: 0;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 650px;
    border: 0;
}

@media (max-width: 900px) {

    .slider-video-wrapper,
    .slider-video-wrapper iframe {
        height: 400px;
    }
}

@media (max-width: 600px) {

    .slider-video-wrapper,
    .slider-video-wrapper iframe {
        height: 220px;
    }
}

.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.services-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    white-space: nowrap;
}

/* Hover effects */
.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ef4444 100%);
}

.services-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.35);
}

/* Shimmer effect */
.services-btn::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;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .services-btn {
        width: auto;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 0.85rem;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .services-container {
        gap: 10px;
        padding: 0 16px;
    }
    
    .services-btn {
        width: auto;
        padding: 14px 20px;
        font-size: 0.8rem;
        max-width: 240px;
    }
}

/* For medium screens - 2 buttons per row */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-container {
        max-width: 600px;
        margin: 24px auto;
    }
}

/* For large screens - maintain horizontal layout */
@media (min-width: 1025px) {
    .services-container {
        justify-content: center;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 24px auto;
    }
    
    .services-btn {
        margin: 0 8px 16px 8px;
    }
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    position: relative;
}

.services-header p {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(145deg, #1e1e1e 0%, #252525 100%);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(220, 38, 38, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 0;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #ef4444;
}

.service-card p {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0 0 24px 0;
    line-height: 1.7;
    font-weight: 400;
}

.service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.service-card ul li {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover ul li::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
}

.service-card:hover ul li {
    color: #f1f5f9;
    transform: translateX(4px);
}

/* Animasyonlar */
@keyframes float {

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

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



/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 2.5rem;
    }

    .services-header p {
        font-size: 1.1rem;
    }

    .services-grid {
        gap: 24px;
        padding: 0 16px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .services-btn {
        padding: 12px 32px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 2.5rem;
    }
}

/* Avantajlar Bölümü */
.advantages-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a0a 25%, #1f0505 50%, #1a0a0a 75%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(248, 113, 113, 0.05) 0%, transparent 70%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {

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

    50% {
        transform: rotate(2deg) scale(1.05);
    }
}

.advantages-section::after {
    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"><circle cx="20" cy="20" r="2" fill="rgba(220,38,38,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(239,68,68,0.15)"/><circle cx="40" cy="80" r="1.5" fill="rgba(248,113,113,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(220,38,38,0.08)"/></svg>') repeat;
    animation: particleFloat 30s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }

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

.advantages-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.advantages-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 48px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.advantages-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

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

.advantages-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4);
}

.advantages-header h2 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ef4444 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
    position: relative;
}

.advantages-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.advantages-header p {
    color: #cbd5e1;
    font-size: 1.3rem;
    margin-top: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 32px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 50%, rgba(239, 68, 68, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.advantage-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #dc2626, #ef4444, #f87171, #dc2626);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    
}

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

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

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

.advantage-card:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.2);
}

.advantage-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    border-radius: 24px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.advantage-card:hover .advantage-icon::before {
    transform: translateX(100%);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

.advantage-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.advantage-card:hover h3 {
    color: #000;
    transform: scale(1.05);
}

.advantage-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    transition: transform 0.3s ease;
}

.advantage-card:hover h3::after {
    transform: translateX(-50%) scaleX(1);
}

.advantage-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
    transition: all 0.3s ease;
}

.advantage-card:hover p {
    color: #f1f5f9;
    transform: translateY(-2px);
}

/* Staggered animations */
.advantage-card:nth-child(1) {
    animation: slideInUp 0.8s ease-out 0.1s both;
}

.advantage-card:nth-child(2) {
    animation: slideInUp 0.8s ease-out 0.3s both;
}

.advantage-card:nth-child(3) {
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.advantage-card:nth-child(4) {
    animation: slideInUp 0.8s ease-out 0.7s both;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

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

/* Pulse animation for icons */
@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    }

    50% {
        box-shadow: 0 8px 32px rgba(220, 38, 38, 0.6);
    }
}

.advantage-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .advantages-section {
        padding: 80px 0;
    }

    .advantages-header h2 {
        font-size: 2.8rem;
    }

    .advantages-header p {
        font-size: 1.15rem;
    }

    .advantages-grid {
        gap: 32px;
        padding: 0 16px;
    }

    .advantage-card {
        padding: 40px 28px;
    }

    .advantages-btn {
        padding: 14px 40px;
        font-size: 0.85rem;
    }

    .advantage-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .advantages-header h2 {
        font-size: 2.2rem;
    }

    .advantage-card {
        padding: 32px 20px;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .advantage-card h3 {
        font-size: 1.4rem;
    }

    .advantage-card p {
        font-size: 1rem;
    }
}

/* Footer Bölümü */
.site-footer {
    background: linear-gradient(135deg, #181f2a 0%, #232b3b 100%);
    color: #f1f5f9;
    padding: 0;
    margin-top: 0;
    font-size: 1rem;
    border-top: 4px solid #e53935;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 32px 24px 32px;
    gap: 32px;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
    margin-bottom: 24px;
}

.logo-col {
    flex: 2 1 320px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 18px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: block;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #f87171;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact-list .footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    font-size: 1.2em;
    margin-right: 8px;
}

.footer-contact-list .whatsapp-link {
    color: #25D366;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list .whatsapp-link:hover {
    color: #128C7E;
}

.footer-contact-list .whatsapp-icon {
    color: #25D366;
}

.footer-contact-list .whatsapp-text {
    color: #25D366;
}

.footer-contact-list .instagram-link {
    display: flex;
    align-items: center;
    color: #d6249f;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list .instagram-link:hover {
    color: #fd5949;
}

.footer-contact-list .instagram-icon {
    color: #d6249f;
}

.footer-contact-list .instagram-text {
    color: #d6249f;
}

.footer-bottom {
    border-top: 1px solid #283046;
    text-align: center;
    padding: 18px 8px 12px 8px;
    color: #cbd5e1;
    font-size: 0.98rem;
    background: #181f2a;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-designer a {
    color: #f87171;
    text-decoration: none;
    font-weight: 500;
}

.footer-designer a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: stretch;
        padding: 36px 12px 18px 12px;
        gap: 18px;
    }

    .footer-col,
    .logo-col {
        min-width: 0;
        margin-bottom: 18px;
    }

    .footer-logo {
        width: 140px;
        padding: 6px 10px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        padding: 24px 4px 10px 4px;
    }

    .footer-logo {
        width: 110px;
    }

    .footer-bottom {
        font-size: 0.92rem;
        padding: 12px 2px 8px 2px;
    }
}

@media (max-width: 900px) {
    .slider-caption {
        max-width: 90vw;
        padding: 18px 4vw 16px 4vw;
        border-radius: 12px;
        left: 5vw;
        right: 5vw;
    }

    .slider-caption h2 {
        font-size: 1.3rem;
    }

    .slider-caption .slider-icon {
        font-size: 1.5rem;
    }

    .slider-btn-link {
        padding: 8px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .slider-caption {
        max-width: 85vw;
        padding: 8px 3vw 6px 3vw;
        border-radius: 8px;
        left: 7.5vw;
        right: 7.5vw;
        bottom: 40px;
        gap: 4px;
        background: rgba(30, 41, 59, 0.95);
        max-height: 35vw;
        overflow: auto;
    }

    .slider-dots {
        margin-top: 18px !important;
    }

    .slider-caption h2 {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .slider-caption p {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 3px;
    }

    .slider-caption .slider-icon {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .slider-btn-link {
        padding: 4px 8px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
}




.about-hero {
    position: relative;
    min-height: 320px;
    width: 100vw;
    max-width: 100vw;
    background: linear-gradient(135deg, #e53935 0%, #c62828 25%, #b71c1c 50%, #8e0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
    box-sizing: border-box;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(229, 57, 53, 0.3) 0%, transparent 70%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(229, 57, 53, 0.2) 0%,
            rgba(198, 40, 40, 0.3) 25%,
            rgba(183, 28, 28, 0.4) 50%,
            rgba(142, 0, 0, 0.5) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 10px 0 10px;
    text-align: center;
    animation: contentFadeIn 1.2s ease-out;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.about-hero-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(229, 57, 53, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: default;
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {

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

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

.about-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(229, 57, 53, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.about-hero-content h1 {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0 0 24px 0;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(229, 57, 53, 0.3);
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
}

.about-hero-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 25px;
}

.about-hero-stat {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 18px 12px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: statSlideIn 1s ease-out var(--delay, 0s) both;
    position: relative;
    overflow: hidden;
}

.about-hero-stat:nth-child(1) {
    --delay: 0.5s;
}

.about-hero-stat:nth-child(2) {
    --delay: 0.7s;
}

.about-hero-stat:nth-child(3) {
    --delay: 0.9s;
}

@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

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

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

.about-hero-stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(229, 57, 53, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.about-hero-stat:hover::before {
    left: 100%;
}

.about-hero-stat-value {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, #e53935 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberCounter 2s ease-out var(--delay, 0s) both;
}

@keyframes numberCounter {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.about-hero-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 3.5rem;
    }

    .about-hero-desc {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 100vh;
        padding: 20px 0;
    }

    .about-hero-content {
        padding: 60px 20px;
    }

    .about-hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .about-hero-desc {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }

    .about-hero-stat {
        padding: 30px 25px 25px 25px;
    }

    .about-hero-stat-value {
        font-size: 2.5rem;
    }
}

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

    .about-hero-desc {
        font-size: 1rem;
    }

    .about-hero-badge {
        padding: 10px 30px;
        font-size: 1rem;
    }

    .about-hero-stat-value {
        font-size: 2rem;
    }

    .about-hero-stat-label {
        font-size: 1rem;
    }
}

/* Additional floating elements for visual interest */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.1;
    }
}

.about-details {
  width: 100%;
  max-width: 900px;
  margin: 48px auto 0 auto;
  text-align: center;
  padding: 0 16px;
}
.about-details-badge {
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(229,57,53,0.10);
  cursor: default;
}
.about-details h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #222;
}
.about-details-desc {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.about-details-columns {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 18px;
}
.about-details-col {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 420px;
  font-size: 1.08rem;
  color: #333;
  text-align: left;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .about-details {
    max-width: 98vw;
    padding: 0 4vw;
  }
  .about-details h2 {
    font-size: 1.4rem;
  }
  .about-details-desc {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }
  .about-details-columns {
    gap: 12px;
  }
  .about-details-col {
    font-size: 0.98rem;
    padding: 0;
  }
  .mission-vision-section {
    max-width: 98vw;
    padding: 0 4vw;
  }
  .mission-vision-section h2 {
    font-size: 1.3rem;
  }
  .mission-vision-desc {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }
  .mission-vision-cards {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
  }
  .mission-vision-card {
    padding: 28px 20px 24px 20px;
    font-size: 0.98rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .mission-vision-card h3 {
    font-size: 1.1rem;
  }
  .mission-vision-card p {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}
@media (max-width: 1024px) {
  .mission-vision-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .mission-vision-card {
    max-width: 100%;
    width: 100%;
    padding: 28px 18px 20px 18px;
    font-size: 1.05rem;
  }
  .mission-vision-card h3 {
    font-size: 1.25rem;
  }
  .mission-vision-card p {
    font-size: 1.05rem;
  }
}
@media (max-width: 700px) {
  .mission-vision-card {
    padding: 18px 8px 12px 8px;
    font-size: 0.98rem;
  }
  .mission-vision-card h3 {
    font-size: 1.08rem;
  }
  .mission-vision-card p {
    font-size: 0.98rem;
  }
}
@media (max-width: 700px) {
  .about-details-columns {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
  }
  .about-details-col {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 98vw;
    padding: 0 4px;
    font-size: 0.95rem;
    box-sizing: border-box;
  }
}
.mission-vision-section {
  width: 100%;
  max-width: 1100px;
  margin: 64px auto 0 auto;
  text-align: center;
  padding: 0 16px;
  margin-bottom: 35px;
}
.mission-vision-badge {
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(229,57,53,0.10);
  cursor: default;
}
.mission-vision-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #222;
}
.mission-vision-desc {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.mission-vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-top: 18px;
  max-width: 100%;
  width: 100%;
}
.mission-vision-card {
  background: linear-gradient(135deg, #fff6f6 0%, #fff 100%);
  border-radius: 28px 28px 24px 24px;
  box-shadow: 0 4px 32px rgba(229,57,53,0.07), 0 1.5px 8px rgba(0,0,0,0.06);
  border-top: 6px solid #e53935;
  padding: 36px 32px 28px 32px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  background-clip: padding-box;
  animation: fadeInUpCard 1.1s cubic-bezier(0.4,0,0.2,1) both;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.mission-vision-card h3 {
  color: #e53935;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 12px 0;
}
.mission-vision-card hr {
  border: none;
  border-top: 2px solid #f2bcbc;
  margin: 12px 0 18px 0;
}
.mission-vision-card p {
  color: #333;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}
.mission-vision-card:hover {
  box-shadow: 0 8px 40px rgba(229,57,53,0.13), 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-6px) scale(1.02);
}
@keyframes fadeInUpCard {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 1100px altı için özel responsive ayarlar */
@media (max-width: 1100px) {
  .mission-vision-section {
    max-width: 95vw;
    padding: 0 20px;
  }
  .mission-vision-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .mission-vision-card {
    padding: 32px 24px 24px 24px;
  }
  .mission-vision-card h3 {
    font-size: 1.8rem;
  }
  .mission-vision-card p {
    font-size: 1rem;
  }
  
  .about-services-section {
    max-width: 95vw;
    padding: 0 20px;
  }
  .about-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .about-service-card {
    padding: 32px 24px 24px 24px;
  }
  .about-service-card h3 {
    font-size: 1.2rem;
  }
  .about-service-card p {
    font-size: 0.98rem;
  }
  
  .about-values-section {
    max-width: 95vw;
    padding: 0 40px;
    box-sizing: border-box;
  }
  .about-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 100%;
  }
  .about-value-card {
    padding: 32px 24px 24px 24px;
  }
  .about-value-card h3 {
    font-size: 1.2rem;
  }
  .about-value-card p {
    font-size: 0.98rem;
  }
}

/* --- ABOUT SECTION RESPONSIVE & PROFESSIONAL IMPROVEMENTS --- */
@media (max-width: 600px) {
  .about-details {
    padding: 0 2vw;
    margin-top: 24px;
  }
  .about-details-badge {
    font-size: 0.88rem;
    padding: 7px 12px;
    margin-bottom: 10px;
    border-radius: 20px;
  }
  .about-details h2 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }
  .about-details-desc {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }
  .about-details-columns {
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
  }
  .about-details-col {
    font-size: 0.89rem;
    padding: 0 2px;
    line-height: 1.6;
    max-width: 100%;
  }
  .mission-vision-section {
    padding: 0 2vw;
    margin-top: 32px;
    margin-bottom: 18px;
  }
  .mission-vision-badge {
    font-size: 0.88rem;
    padding: 7px 12px;
    margin-bottom: 10px;
    border-radius: 20px;
  }
  .mission-vision-section h2 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }
  .mission-vision-desc {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }
  .mission-vision-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 8px;
  }
  .mission-vision-card {
    max-width: 100%;
    padding: 24px 16px 20px 16px;
    font-size: 0.89rem;
    border-radius: 16px 16px 12px 12px;
    box-sizing: border-box;
  }
  .mission-vision-card h3 {
    font-size: 0.98rem;
    margin-bottom: 6px;
  }
  .mission-vision-card p {
    font-size: 0.89rem;
    line-height: 1.5;
  }
}

@media (max-width: 400px) {
  .about-details, .mission-vision-section {
    padding: 0 1vw;
  }
  .about-details-col, .mission-vision-card {
    font-size: 0.82rem;
    padding: 16px 12px 12px 12px;
    box-sizing: border-box;
  }
  .about-details h2, .mission-vision-section h2 {
    font-size: 0.92rem;
  }
  
  .slider-caption {
    max-width: 90vw;
    padding: 6px 2vw 4px 2vw;
    left: 5vw;
    right: 5vw;
    bottom: 30px;
  }
  
  .slider-caption h2 {
    font-size: 0.8rem;
  }
  
  .slider-caption p {
    font-size: 0.7rem;
  }
  
  .slider-caption .slider-icon {
    font-size: 0.9rem;
  }
  
  .slider-btn-link {
    padding: 3px 6px;
    font-size: 0.7rem;
  }
}

/* Mobilde hover efektlerini kaldır/sadeleştir */
@media (hover: none) and (pointer: coarse) {
  .about-hero-stat:hover,
  .mission-vision-card:hover,
  .service-card:hover,
  .advantage-card:hover,
  .about-service-card:hover,
  .about-value-card:hover,
  .contact-info-card:hover,
  .quick-contact-card:hover,
  .service-detail-card:hover {
    box-shadow: none !important;
    transform: none !important;
    border-color: inherit !important;
  }
}

/* Çok küçük ekranlar için ek optimizasyonlar */
@media (max-width: 360px) {
  .slider-caption {
    max-width: 95vw;
    padding: 4px 1vw 2px 1vw;
    left: 2.5vw;
    right: 2.5vw;
    bottom: 25px;
  }
  
  .slider-caption h2 {
    font-size: 0.75rem;
  }
  
  .slider-caption p {
    font-size: 0.65rem;
  }
  
  .slider-caption .slider-icon {
    font-size: 0.8rem;
  }
  
  .slider-btn-link {
    padding: 2px 4px;
    font-size: 0.65rem;
  }
  
  .navbar {
    padding: 0 8px;
    height: 60px;
  }
  
  .logo-img {
    height: 36px;
    margin-right: 4px;
  }
  
  .logo-text {
    font-size: 0.8rem;
  }
  
  .services-hero-section {
    min-height: 160px;
    padding: 20px 1vw 16px 1vw;
  }
  
  .services-hero-title {
    font-size: 1rem;
  }
  
  .services-hero-desc {
    font-size: 0.85rem;
    max-width: 95vw;
    margin-bottom: 16px;
    line-height: 1.4;
  }
  
  .services-hero-stat {
    padding: 10px 1vw 6px 1vw;
  }
  
  .stat-value {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .services-btn {
    width: auto;
    max-width: 200px;
    padding: 12px 16px;
    font-size: 0.75rem;
  }
}

/* Kartların taşmasını önle */
.about-details-col, .mission-vision-card {
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ABOUT PAGE HİZMETLERİMİZ (KARTLI) ALANI */
.about-services-section {
  width: 100%;
  max-width: 1200px;
  margin: 64px auto 0 auto;
  text-align: center;
  padding: 0 16px 32px 16px;
}
.about-services-badge {
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(229,57,53,0.10);
  cursor: default;
}
.about-services-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #222;
}
.about-services-desc {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-top: 18px;
  width: 100%;
}
.about-service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(229,57,53,0.07), 0 1.5px 8px rgba(0,0,0,0.06);
  border-left: 5px solid #e53935;
  padding: 36px 28px 28px 28px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.about-service-card:hover {
  box-shadow: 0 8px 40px rgba(229,57,53,0.13), 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-6px) scale(1.03);
}
.about-service-icon {
  font-size: 2.2rem;
  color: #e53935;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff4f4;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(229,57,53,0.08);
  transition: background 0.2s, transform 0.2s;
}
.about-service-card:hover .about-service-icon {
  background: #ffeaea;
  transform: scale(1.12) rotate(-6deg);
}
.about-service-card h3 {
  color: #e53935;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}
.about-service-card p {
  color: #333;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .about-services-section {
    max-width: 98vw;
    padding: 0 4vw 24px 4vw;
  }
  .about-services-title {
    font-size: 1.4rem;
  }
  .about-services-desc {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }
  .about-services-grid {
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  .about-service-card {
    padding: 24px 16px 20px 16px;
    font-size: 0.98rem;
    min-height: 160px;
    box-sizing: border-box;
  }
  .about-service-icon {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .about-services-section {
    padding: 0 2vw 12px 2vw;
    margin-top: 32px;
  }
  .about-services-badge {
    font-size: 0.92rem;
    padding: 8px 18px;
  }
  .about-services-title {
    font-size: 1.08rem;
  }
  .about-services-desc {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 6px;
  }
  .about-service-card {
    padding: 20px 12px 16px 12px;
    font-size: 0.92rem;
    min-height: 120px;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .about-service-icon {
    font-size: 1.1rem;
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
    border-radius: 8px;
  }
  .about-service-card h3 {
    font-size: 0.98rem;
    margin-bottom: 4px;
  }
  .about-service-card p {
    font-size: 0.92rem;
    line-height: 1.4;
  }
}
@media (max-width: 400px) {
  .about-services-section {
    padding: 0 1vw 6px 1vw;
  }
  .about-service-card {
    font-size: 0.85rem;
    padding: 12px 8px 8px 8px;
    box-sizing: border-box;
  }
  .about-services-title {
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .mission-vision-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .mission-vision-card {
    max-width: 520px;
    width: 90%;
    margin: 0 auto;
    padding: 24px 18px 18px 18px;
    font-size: 1.05rem;
    border-radius: 18px 18px 14px 14px;
  }
  .mission-vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .mission-vision-card p {
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .mission-vision-section h2 {
    font-size: 1.7rem;
  }
  .mission-vision-badge {
    font-size: 1rem;
    padding: 10px 24px;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .about-services-section {
    padding-right: 32px;
    padding-left: 32px;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    padding-right: 8px;
    padding-left: 8px;
  }
  .about-service-card {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 16px 18px 16px;
    font-size: 1.05rem;
    border-radius: 18px 18px 14px 14px;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .about-details {
    padding-right: 32px;
    padding-left: 32px;
  }
  .about-details-columns {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding-right: 8px;
    padding-left: 8px;
  }
  .about-details-col {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    font-size: 1.01rem;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .mission-vision-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .mission-vision-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-right: 16px;
    padding-left: 16px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
  }
  .mission-vision-card {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 24px 8px 18px 8px;
    text-align: center;
  }
  .mission-vision-card h3 {
    text-align: center;
  }
}

/* HAKKIMIZDA - DEĞERLERİMİZ KARTLARI */
.about-values-section {
  width: 100%;
  max-width: 1200px;
  margin: 64px auto 0 auto;
  text-align: center;
  padding: 0 32px 32px 32px;
  box-sizing: border-box;
}
.about-values-badge {
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(229,57,53,0.10);
  cursor: default;
  display: inline-block;
}
.about-values-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: #222;
}
.about-values-desc {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  margin-top: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.about-value-card {
  background: linear-gradient(135deg, #232c36 0%, #232c36 100%);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(229,57,53,0.07), 0 1.5px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #e53935;
  padding: 36px 28px 28px 28px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.about-value-card:hover {
  box-shadow: 0 8px 40px rgba(229,57,53,0.13), 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-6px) scale(1.04);
}
.about-value-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}
.about-value-card hr {
  border: none;
  border-top: 2px solid #3a4652;
  margin: 12px 0 18px 0;
}
.about-value-card p {
  color: #e3e8ef;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .about-values-section {
    max-width: 98vw;
    padding: 0 8vw 24px 8vw;
    box-sizing: border-box;
  }
  .about-values-title {
    font-size: 1.4rem;
  }
  .about-values-desc {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }
  .about-values-grid {
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 100%;
  }
  .about-value-card {
    padding: 24px 16px 20px 16px;
    font-size: 0.98rem;
    min-height: 120px;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .about-values-section {
    padding: 0 6vw 12px 6vw;
    margin-top: 32px;
    box-sizing: border-box;
  }
  .about-values-badge {
    font-size: 0.92rem;
    padding: 8px 18px;
  }
  .about-values-title {
    font-size: 1.08rem;
  }
  .about-values-desc {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 6px;
    max-width: 100%;
  }
  .about-value-card {
    padding: 24px 16px 20px 16px;
    font-size: 0.92rem;
    min-height: 100px;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .about-value-card h3 {
    font-size: 0.98rem;
    margin-bottom: 4px;
  }
  .about-value-card p {
    font-size: 0.92rem;
    line-height: 1.4;
  }
}
@media (max-width: 400px) {
  .about-values-section {
    padding: 0 5vw 6px 5vw;
    box-sizing: border-box;
  }
  .about-value-card {
    font-size: 0.85rem;
    padding: 16px 12px 12px 12px;
    box-sizing: border-box;
  }
  .about-values-title {
    font-size: 0.92rem;
  }
}


/* İLETİŞİM */
.contact-hero-simple {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    min-height: 400px;
    background: 
        linear-gradient(135deg, rgba(220,38,38,0.95) 0%, rgba(185,28,28,0.90) 40%, rgba(239,68,68,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    gap: 24px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contact-cta-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

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

.contact-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 32px rgba(220, 38, 38, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.4);
}

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

.contact-hero-simple h1 {
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.contact-hero-simple p {
    color: rgba(255,255,255,0.95);
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    font-weight: 400;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .contact-hero-simple {
        min-height: 300px;
        padding: 40px 16px;
        gap: 20px;
    }

    .hero-content {
        gap: 16px;
    }

    .contact-cta-btn {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-simple {
        min-height: 250px;
        padding: 30px 12px;
        gap: 16px;
    }

    .contact-cta-btn {
        padding: 8px 24px;
        font-size: 0.85rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-hero-simple {
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    }
    
    .contact-cta-btn {
        border: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .contact-cta-btn {
        animation: none;
        transition: none;
    }
    
    .contact-cta-btn:hover {
        transform: none;
    }
}

/* Contact Info Section Styles */
.contact-info-section {
    width: 100vw;
    max-width: 100vw;
    padding: 48px 0 56px 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.contact-info-badge {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 10px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(229,57,53,0.10);
    cursor: default;
}
.contact-info-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
}
.contact-info-desc {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 32px;
    font-weight: 400;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}
.contact-info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(229,57,53,0.07), 0 1.5px 8px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    padding: 36px 28px 28px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.contact-info-card:hover {
    box-shadow: 0 8px 40px rgba(229,57,53,0.13), 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-6px) scale(1.03);
}
.contact-info-icon {
    font-size: 2.2rem;
    color: #dc2626;
    background: #fff4f4;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(229,57,53,0.08);
    padding: 12px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    margin-top: 0;
}
.contact-info-card p {
    color: #334155;
    font-size: 1rem;
    margin: 0 0 12px 0;
    line-height: 1.7;
    font-weight: 400;
}
.working-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.working-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #334155;
    margin-bottom: 8px;
    font-weight: 500;
}
.working-hours .open {
    color: #059669;
    font-weight: 700;
}
.working-hours .closed {
    color: #dc2626;
    font-weight: 700;
}
@media (max-width: 900px) {
    .contact-info-section {
        padding: 32px 0 36px 0;
    }
    .contact-info-title {
        font-size: 1.4rem;
    }
    .contact-info-desc {
        font-size: 1rem;
    }
    .contact-info-grid {
        gap: 18px;
        padding: 0 8px;
    }
    .contact-info-card {
        padding: 24px 12px 18px 12px;
        min-height: 160px;
    }
}
@media (max-width: 600px) {
    .contact-info-section {
        padding: 18px 0 18px 0;
    }
    .contact-info-title {
        font-size: 1.1rem;
    }
    .contact-info-desc {
        font-size: 0.92rem;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 2vw;
    }
    .contact-info-card {
        padding: 18px 4vw 14px 4vw;
        min-height: 120px;
    }
    .contact-info-icon {
        font-size: 1.4rem;
        padding: 7px;
        margin-bottom: 10px;
    }
    .contact-info-card h3 {
        font-size: 1rem;
    }
    .working-hours li {
        font-size: 0.95rem;
    }
}

/* Contact Map Section Styles */
.contact-map-section {
    width: 100vw;
    max-width: 100vw;
    padding: 48px 0 56px 0;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.contact-map-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 24px 0;
}
.contact-map-embed-wrapper {
    width: 90vw;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.contact-map-iframe {
    width: 100%;
    min-height: 320px;
    max-height: 480px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    background: #e5e7eb;
}
.contact-map-link {
    display: inline-block;
    margin-top: 8px;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: underline;
    transition: color 0.2s;
}
.contact-map-link:hover {
    color: #dc2626;
    text-decoration: underline;
}
@media (max-width: 900px) {
    .contact-map-section {
        padding: 32px 0 36px 0;
    }
    .contact-map-title {
        font-size: 1.4rem;
    }
    .contact-map-embed-wrapper {
        width: 98vw;
        max-width: 98vw;
    }
    .contact-map-iframe {
        min-height: 220px;
        border-radius: 14px;
    }
}
@media (max-width: 600px) {
    .contact-map-section {
        padding: 18px 0 18px 0;
    }
    .contact-map-title {
        font-size: 1.1rem;
    }
    .contact-map-embed-wrapper {
        width: 100vw;
        max-width: 100vw;
        padding: 0 2vw;
    }
    .contact-map-iframe {
        min-height: 160px;
        border-radius: 8px;
    }
    .contact-map-link {
        font-size: 0.95rem;
    }
}

/* Quick Contact Section Styles */
.quick-contact-section {
    width: 100vw;
    max-width: 100vw;
    padding: 48px 0 56px 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.quick-contact-badge {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 10px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(229,57,53,0.10);
    cursor: default;
}
.quick-contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
}
.quick-contact-desc {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 32px;
    font-weight: 400;
}
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}
.quick-contact-card {
    background: #fcfcfc;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(229,57,53,0.07), 0 1.5px 8px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    padding: 28px 24px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 100px;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s, border 0.2s;
    gap: 18px;
    text-decoration: none;
}
.quick-contact-card:hover {
    box-shadow: 0 8px 40px rgba(229,57,53,0.13), 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.03);
    border: 1.5px solid #dc2626;
}
.quick-contact-icon {
    font-size: 2.2rem;
    color: #fff;
    background: #dc2626;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(229,57,53,0.08);
    flex-shrink: 0;
}
.quick-contact-card .fa-whatsapp {
    background: none;
    color: #25D366;
    font-size: 2.2rem;
}
.quick-contact-label {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
}
.quick-contact-info {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}
@media (max-width: 900px) {
    .quick-contact-section {
        padding: 32px 0 36px 0;
    }
    .quick-contact-title {
        font-size: 1.4rem;
    }
    .quick-contact-desc {
        font-size: 1rem;
    }
    .quick-contact-grid {
        gap: 18px;
        padding: 0 8px;
    }
    .quick-contact-card {
        padding: 18px 10px;
        min-height: 80px;
        gap: 10px;
    }
    .quick-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    .quick-contact-label {
        font-size: 1rem;
    }
    .quick-contact-info {
        font-size: 0.95rem;
    }
}
@media (max-width: 600px) {
    .quick-contact-section {
        padding: 18px 0 18px 0;
    }
    .quick-contact-title {
        font-size: 1.1rem;
    }
    .quick-contact-desc {
        font-size: 0.92rem;
    }
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 2vw;
    }
    .quick-contact-card {
        padding: 14px 4vw;
        min-height: 70px;
        gap: 10px;
    }
    .quick-contact-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* Splash Screen Styles (Global) */
.splash-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: #fff; /* tamamen beyaz arka plan */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
.splash-logo {
    width: 260px;
    height: auto;
    opacity: 0;
    transform: translateY(-60px) scale(0.98);
    transition: opacity 0.7s, transform 0.7s cubic-bezier(0.4,0,0.2,1);
    filter: drop-shadow(0 8px 40px #dc2626cc);
}
.splash-logo.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.splash-screen.hide {
    opacity: 0;
    pointer-events: none;
}
.splash-logo.hide {
    opacity: 0;
    transform: translateY(-60px) scale(0.98);
}

/* Services Hero Section Styles */
.services-hero-section {
    width: 100vw;
    max-width: 100vw;
    min-height: 480px;
    background: url('../assets/images/services-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px 64px 16px;
    text-align: center;
    gap: 24px;
}
.services-hero-badge {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 32px;
    padding: 12px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(229,57,53,0.10);
    cursor: default;
    text-shadow: 0 1px 8px rgba(0,0,0,0.10);
}
.services-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 18px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.services-hero-desc {
    color: #e2e8f0;
    font-size: 1.3rem;
    margin-bottom: 36px;
    max-width: 700px;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.10);
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}
.services-hero-stats {
    display: flex;
    flex-direction: row;
    gap: 36px;
    justify-content: center;
    align-items: stretch;
    margin-top: 18px;
}
.services-hero-stat {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid #b0b8c1;
    border-radius: 18px;
    padding: 38px 48px 28px 48px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
}
.services-hero-stat:hover {
    box-shadow: 0 8px 40px rgba(229,57,53,0.13), 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-4px) scale(1.03);
    border-color: #fff;
}
.stat-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.stat-label {
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
    .services-hero-section {
        min-height: 320px;
        padding: 48px 8px 32px 8px;
        gap: 16px;
    }
    .services-hero-title {
        font-size: 2.2rem;
    }
    .services-hero-desc {
        font-size: 1.05rem;
        max-width: 600px;
        margin-bottom: 24px;
    }
    .services-hero-stats {
        gap: 16px;
    }
    .services-hero-stat {
        padding: 22px 18px 16px 18px;
        min-width: 90px;
    }
    .stat-value {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
}
@media (max-width: 600px) {
    .services-hero-section {
        min-height: 200px;
        padding: 32px 2vw 24px 2vw;
        gap: 12px;
    }
    .services-hero-title {
        font-size: 1.2rem;
    }
    .services-hero-desc {
        font-size: 0.95rem;
        max-width: 90vw;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .services-hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    .services-hero-stat {
        padding: 14px 4vw 10px 4vw;
        min-width: 0;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
}

/* ===== SERVİS DETAY SAYFALARI ===== */
.service-detail-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-detail-main::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.service-detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(229, 57, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.service-detail-badge::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;
}

.service-detail-badge:hover::before {
    left: 100%;
}

.service-detail-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
}

.service-detail-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e53935, #ff9800);
    border-radius: 2px;
}

.service-detail-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-detail-info {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.service-detail-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e53935, #ff9800, #4caf50);
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

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

.service-detail-features li {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 40px;
    font-size: 1rem;
    color: #444;
    transition: all 0.3s ease;
}

.service-detail-features li:last-child {
    border-bottom: none;
}

.service-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.service-detail-features li:hover {
    color: #e53935;
    transform: translateX(8px);
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e53935, #ff9800);
}

.service-detail-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-detail-card h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
}

.service-detail-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-detail-cta {
    text-align: center;
    margin-top: 60px;
}

.service-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 100%);
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(229, 57, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.service-detail-cta-btn::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;
}

.service-detail-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(229, 57, 53, 0.4);
}

.service-detail-cta-btn:hover::before {
    left: 100%;
}

.service-detail-cta-btn::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-detail-cta-btn:hover::after {
    transform: translateX(4px);
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .service-detail-main {
        padding: 100px 0 60px;
    }
    
    .service-detail-container {
        padding: 0 24px;
    }
    
    .service-detail-title {
        font-size: 3rem;
    }
    
    .service-detail-content {
        gap: 60px;
    }
    
    .service-detail-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .service-detail-main {
        padding: 80px 0 40px;
    }
    
    .service-detail-header {
        margin-bottom: 60px;
    }
    
    .service-detail-badge {
        padding: 10px 24px;
        font-size: 0.8rem;
        margin-bottom: 24px;
    }
    
    .service-detail-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .service-detail-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-info {
        padding: 32px;
    }
    
    .service-detail-description {
        font-size: 1rem;
    }
    
    .service-detail-features li {
        padding: 14px 0 14px 36px;
        font-size: 0.95rem;
    }
    
    .service-detail-features li::before {
        top: 14px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .service-detail-card {
        padding: 24px;
    }
    
    .service-detail-card h3 {
        font-size: 1.2rem;
    }
    
    .service-detail-cta-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-detail-main {
        padding: 60px 0 30px;
    }
    
    .service-detail-container {
        padding: 0 16px;
    }
    
    .service-detail-header {
        margin-bottom: 40px;
    }
    
    .service-detail-badge {
        padding: 8px 20px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .service-detail-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .service-detail-title::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .service-detail-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-info {
        padding: 24px;
        border-radius: 16px;
    }
    
    .service-detail-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .service-detail-features li {
        padding: 12px 0 12px 32px;
        font-size: 0.9rem;
    }
    
    .service-detail-features li::before {
        top: 12px;
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .service-detail-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .service-detail-card h3 {
        font-size: 1.1rem;
    }
    
    .service-detail-cta {
        margin-top: 40px;
    }
    
    .service-detail-cta-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    /* Services hero section için ek iyileştirmeler */
    .services-hero-section {
        min-height: 180px;
        padding: 24px 1vw 18px 1vw;
    }
    
    .services-hero-title {
        font-size: 1.1rem;
    }
    
    .services-hero-desc {
        font-size: 0.9rem;
        max-width: 92vw;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .services-hero-stat {
        padding: 12px 2vw 8px 2vw;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

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

.service-detail-header {
    animation: fadeInUp 0.8s ease-out;
}

.service-detail-info {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.service-detail-sidebar {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-detail-cta {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hover efektleri için smooth transitions */
.service-detail-card,
.service-detail-features li,
.service-detail-cta-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility için focus states */
.service-detail-cta-btn:focus {
    outline: 3px solid rgba(229, 57, 53, 0.3);
    outline-offset: 2px;
}

.service-detail-features li:focus-within {
    background: rgba(229, 57, 53, 0.05);
    border-radius: 8px;
    padding-left: 44px;
}

/* Reduced motion için */
@media (prefers-reduced-motion: reduce) {
    .service-detail-header,
    .service-detail-info,
    .service-detail-sidebar,
    .service-detail-cta {
        animation: none;
    }
    
    .service-detail-card,
    .service-detail-features li,
    .service-detail-cta-btn {
        transition: none;
    }
}