* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

header {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav a {
    color: #fff;
    margin-left: 30px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #aaa;
}

.logo {
    font-weight: bold;
    letter-spacing: 2px;
}

.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1493238792000-8113da705763') center/cover no-repeat;
    /*background: url('logo.png') center/cover no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 20px 60px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero button.randevu-btn {
    padding: 15px 50px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    margin-top: 10px;
}

.hero button.randevu-btn:hover {
    background: #fff;
    color: #000;
}

section {
    padding: 100px 10%;
    text-align: center;
}

.services h2,
.gallery h2,
.contact h2 {
    margin-bottom: 50px;
    font-size: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px;
    border: 1px solid #333;
    transition: 0.4s;
    cursor: pointer;
}

.card:hover {
    background: #fff;
    color: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    filter: grayscale(100%);
    transition: 0.5s;
    border-radius: 15px;
}

.gallery-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 28px;
    color: #fff;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.contact-form input[type="text"] {
    width: 100%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.contact-form input[type="text"]:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.checkbox-group>label {
    font-size: 16px;
    color: #ccc;
    font-weight: bold;
}

.checkbox-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.checkbox-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.checkbox-options label:hover {
    color: #aaa;
}

.checkbox-options input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: 0.2s;
}

.checkbox-options input[type="checkbox"]:checked {
    background-color: #fff;
    border-color: #fff;
}

.checkbox-options input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 1px;
}

.contact-form .submit-btn {
    padding: 18px;
    background: #fff;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: auto;
}

.contact-form .submit-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    flex: 1 1 calc(50% - 15px);
    justify-content: center;
    min-width: 140px;
}

.contact-btn i {
    font-size: 24px;
    font-style: normal;
}

.contact-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.contact-btn.phone:hover {
    border-color: #4CAF50;
    color: #4CAF50;
}

.contact-btn.instagram:hover {
    border-color: #E1306C;
    color: #E1306C;
}

.contact-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.location-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.address-info {
    padding: 25px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.address-info h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
}

.address-info p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.5;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    filter: grayscale(80%) invert(90%) contrast(80%);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Footer Styles */
.footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 0 5%;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.footer-col p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-col p i {
    font-style: normal;
    font-size: 18px;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

@media(max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 250px;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        border-bottom-left-radius: 15px;
    }

    nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    nav a {
        margin: 15px 0;
        font-size: 18px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 100px 15px 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 60px 5%;
    }

    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        gap: 30px;
        padding: 0 15px;
        flex-direction: column;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-col p {
        justify-content: center;
    }
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 900px;
    max-width: 100%;
    margin: 40px auto;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    min-width: 280px;
    margin: 10px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 10px;
}

.slide:hover {
    background: #fff;
    color: #000;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.arrow:hover {
    background: #fff;
    color: #000;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

/* Mobilde okları gizle */
@media(max-width:768px) {
    .arrow {
        display: none;
    }
}