﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 50%, #000 100%);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 50px; /* 20px'den 10px'e d���r�ld� */
    /* background: rgb(0 0 0 / 80%); */
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 110px; /* Sabit header y�ksekli�i */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
    height: 80px; /* Sabit y�kseklik eklendi */
}

.logo {
    height: 80px; /* 60px'den 80px'e ��kar�ld� */
    width: auto;
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center; /* Men� ��elerini dikey ortala */
}


    .nav-menu li a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-menu li a:hover {
            color: #dc143c;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #dc143c;
            transition: width 0.3s ease;
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0a0a 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    background: radial-gradient(ellipse at center, rgba(220, 20, 60, 0.15) 0%, rgba(0, 0, 0, 0.3) 70%), linear-gradient(45deg, rgba(220, 20, 60, 0.1), rgba(0, 0, 0, 0.4));
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(220, 20, 60, 0.2);
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.2), inset 0 0 50px rgba(220, 20, 60, 0.1);
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.5));
    opacity: 0;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.hero-side-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(45deg, #dc143c, #8b0000);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
        color: white;
    }

    .cta-button.secondary {
        background: transparent;
        border: 2px solid #dc143c;
        color: #dc143c;
    }

        .cta-button.secondary:hover {
            background: #dc143c;
            color: white;
        }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #dc143c;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.background-cars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* opacity: 0.3; */
}

.car-bg {
    position: absolute;
    width: 280px;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    filter: grayscale(50%) brightness(0.7);
}

    .car-bg:nth-child(1) {
        top: 8%;
        left: 3%;
        animation: floatCars1 22s ease-in-out infinite;
    }

    .car-bg:nth-child(2) {
        top: 65%;
        right: 5%;
        animation: floatCars2 28s ease-in-out infinite;
    }

    .car-bg:nth-child(3) {
        top: 15%;
        right: 12%;
        animation: floatCars3 35s ease-in-out infinite;
    }

    .car-bg:nth-child(4) {
        bottom: 25%;
        left: 8%;
        animation: floatCars4 30s ease-in-out infinite;
    }

    .car-bg:nth-child(5) {
        top: 40%;
        left: 2%;
        animation: floatCars5 26s ease-in-out infinite;
    }

    .car-bg:nth-child(6) {
        top: 5%;
        left: 50%;
        animation: floatCars6 32s ease-in-out infinite;
    }

    .car-bg:nth-child(7) {
        bottom: 10%;
        right: 15%;
        animation: floatCars7 24s ease-in-out infinite;
    }

    .car-bg:nth-child(8) {
        top: 80%;
        left: 40%;
        animation: floatCars8 29s ease-in-out infinite;
    }


/* Farklı animasyon keyframe'leri */
@keyframes floatCars1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-15px) rotate(1deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-8px) rotate(-0.5deg);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-20px) rotate(0.8deg);
        opacity: 0.35;
    }
}

@keyframes floatCars2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.25;
    }

    30% {
        transform: translateY(-25px) rotate(-1deg);
        opacity: 0.4;
    }

    60% {
        transform: translateY(-12px) rotate(1.2deg);
        opacity: 0.3;
    }

    90% {
        transform: translateY(-18px) rotate(-0.7deg);
        opacity: 0.35;
    }
}

@keyframes floatCars3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    20% {
        transform: translateY(-10px) rotate(0.5deg);
        opacity: 0.35;
    }

    40% {
        transform: translateY(-22px) rotate(-1deg);
        opacity: 0.4;
    }

    80% {
        transform: translateY(-5px) rotate(0.3deg);
        opacity: 0.3;
    }
}

@keyframes floatCars4 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.25;
    }

    35% {
        transform: translateY(-18px) rotate(1.5deg);
        opacity: 0.4;
    }

    70% {
        transform: translateY(-28px) rotate(-0.8deg);
        opacity: 0.35;
    }
}

@keyframes floatCars5 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    40% {
        transform: translateY(-20px) rotate(-1.2deg);
        opacity: 0.4;
    }

    80% {
        transform: translateY(-15px) rotate(0.9deg);
        opacity: 0.3;
    }
}

@keyframes floatCars6 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.25;
    }

    50% {
        transform: translateY(-30px) rotate(1.8deg);
        opacity: 0.4;
    }
}

@keyframes floatCars7 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    33% {
        transform: translateY(-12px) rotate(-0.6deg);
        opacity: 0.35;
    }

    66% {
        transform: translateY(-25px) rotate(1.1deg);
        opacity: 0.4;
    }
}

@keyframes floatCars8 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.25;
    }

    25% {
        transform: translateY(-8px) rotate(0.4deg);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-35px) rotate(-1.5deg);
        opacity: 0.4;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.features-preview {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: #dc143c;
        box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    }

.feature-icon {
    font-size: 3rem;
    color: #dc143c;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #dc143c;
}

.feature-description {
    opacity: 0.8;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #dc143c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
}

.car-preview-card {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .car-preview-card:hover {
        transform: translateY(-5px);
        border-color: #dc143c;
        box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    }

.car-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 10px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .car-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.car-preview-card:hover .car-image::before {
    opacity: 1;
}

.car-card-title {
    font-size: 1rem;
    color: #dc143c;
    font-weight: 600;
    margin-bottom: 5px;
}

.car-card-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 15px;
    }

        .nav-menu li a {
            font-size: 1rem;
        }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: all 0.3s ease;
    }

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
    }

        .nav-menu.active {
            right: 0;
        }

    .hero-side-cards {
        flex-direction: column;
        align-items: center;
    }

    .car-preview-card {
        max-width: 250px;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-side-cards {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .car-preview-card {
        max-width: 200px;
    }
}
/* Mobil için arka plan araçları */
@media (max-width: 768px) {
    .car-bg {
        width: 180px;
        height: 120px;
        opacity: 0.15;
    }

        .car-bg:nth-child(n+7) {
            display: none; /* Mobilde fazla resim gizle */
        }

    .hero-content {
        padding: 30px 20px;
        margin: 0 10px;
        margin-top: -150px;
    }

    .hero-section {
        height: 150vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .car-bg {
        width: 140px;
        height: 90px;
        opacity: 0.1;
    }

        .car-bg:nth-child(n+5) {
            display: none; /* Küçük ekranlarda daha az resim */
        }
}

/* Hizmetlerimiz Section */
.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(0, 0, 0, 0.9) 100%), radial-gradient(ellipse at center, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #dc143c;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.services-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    opacity: 0.8;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

    .service-card:hover {
        transform: translateY(-15px) rotateX(5deg);
        border-color: #dc143c;
        box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3), 0 0 30px rgba(220, 20, 60, 0.2);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
        transition: left 0.6s ease;
        z-index: 1;
    }

    .service-card:hover::before {
        left: 100%;
    }

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .service-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }

.service-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.service-card-title {
    font-size: 1.5rem;
    color: #dc143c;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-button {
    background: linear-gradient(45deg, #dc143c, #8b0000);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    }

    .service-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .service-button:hover::before {
        left: 100%;
    }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.modal-content {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 2px solid rgba(220, 20, 60, 0.5);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-title {
    font-size: 2rem;
    color: #dc143c;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.close-modal {
    background: none;
    border: none;
    color: #dc143c;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-modal:hover {
        background: rgba(220, 20, 60, 0.2);
        transform: rotate(90deg);
    }

.modal-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 25px;
}

.modal-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.modal-features {
    background: rgba(220, 20, 60, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

    .modal-features h4 {
        color: #dc143c;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .modal-features ul {
        list-style: none;
        padding: 0;
    }

    .modal-features li {
        color: rgba(255, 255, 255, 0.8);
        padding: 5px 0;
        position: relative;
        padding-left: 20px;
    }

        .modal-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #dc143c;
            font-weight: bold;
        }

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .modal-content {
        padding: 25px;
        margin: 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 15px;
    }

    .services-title {
        font-size: 2rem;
    }

    .modal-content {
        padding: 20px;
        margin: 10px;
    }
}

/* İletişim Section */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%), radial-gradient(ellipse at center, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #dc143c;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    opacity: 0.8;
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Sol taraf - İletişim Bilgileri ve Harita */
.contact-info {
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

    .contact-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 30%, rgba(220, 20, 60, 0.1), transparent 60%);
        pointer-events: none;
    }

.info-section {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.info-title {
    font-size: 1.5rem;
    color: #dc143c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .info-item:hover {
        background: rgba(220, 20, 60, 0.1);
        transform: translateX(5px);
    }

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #dc143c, #8b0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(220, 20, 60, 0.3);
    margin-top: 30px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.1), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=600&h=300&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
}

    .map-placeholder::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: #dc143c;
        border-radius: 50% 50% 50% 0;
        transform: translate(-50%, -50%) rotate(-45deg);
        border: 3px solid white;
    }

/* Sağ taraf - Randevu Formu */
.appointment-form {
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

    .appointment-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 70%, rgba(220, 20, 60, 0.1), transparent 60%);
        pointer-events: none;
    }

.form-title {
    font-size: 1.8rem;
    color: #dc143c;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

    .form-input:focus,
    .form-select:focus {
        border-color: #dc143c;
        box-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
        background: rgba(0, 0, 0, 0.7);
    }

    .form-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.form-select {
    cursor: pointer;
}

    .form-select option {
        background: #1a1a1a;
        color: white;
        padding: 10px;
    }

.services-select {
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .checkbox-item:hover {
        background: rgba(220, 20, 60, 0.1);
    }

    .checkbox-item input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #dc143c;
        cursor: pointer;
    }

    .checkbox-item label {
        color: rgba(255, 255, 255, 0.9);
        cursor: pointer;
        font-size: 0.95rem;
    }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #dc143c, #8b0000);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    }

    .submit-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 ease;
    }

    .submit-btn:hover::before {
        left: 100%;
    }

/* Responsive */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-info,
    .appointment-form {
        padding: 25px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-info,
    .appointment-form {
        padding: 20px;
    }
}
/* Google Maps için CSS güncellemesi */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(220, 20, 60, 0.3);
    margin-top: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#googleMap {
    width: 100%;
    height: 100%;
    border-radius: 13px;
}

.map-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 1000;
    border: 1px solid rgba(220, 20, 60, 0.5);
}

/* Loading durumu için */
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.1), rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 1.1rem;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(220, 20, 60, 0.3);
    border-top: 3px solid #dc143c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Tarih-Saat responsive */
@media (max-width: 600px) {
    .appointment-form [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Galeri Section */
.gallery-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%), radial-gradient(ellipse at center, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #dc143c;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    opacity: 0.8;
    color: #fff;
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 20, 60, 0.2);
}

    .gallery-item:hover {
        transform: scale(1.05);
        border-color: #dc143c;
        box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    }

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #dc143c;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Galeri Kontrolleri */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(220, 20, 60, 0.5);
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .gallery-btn:hover {
        background: #dc143c;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
    }

    .gallery-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: none;
    }

        .gallery-btn:disabled:hover {
            background: rgba(220, 20, 60, 0.1);
            color: #dc143c;
            box-shadow: none;
        }

/* Galeri İndikatörleri */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gallery-dot.active {
        background: #dc143c;
        transform: scale(1.3);
    }

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

    .lightbox.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(220, 20, 60, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #dc143c;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }

    .gallery-item {
        width: 250px;
        height: 180px;
    }

    .gallery-controls {
        gap: 15px;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-item {
        width: 200px;
        height: 150px;
    }
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 60px 20px 20px;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #dc143c;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section address {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: normal;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 10px;
    }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-section ul li a:hover {
                color: #dc143c;
            }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .social-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        padding: 8px 12px;
        border: 1px solid rgba(220, 20, 60, 0.3);
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: #dc143c;
            color: white;
        }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    color: rgba(255, 255, 255, 0.6);
}
