* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #2563eb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 15px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
}

.logo {
    width: 250px;
    height: 100px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu a {
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 1000;
    flex-direction: column;
}

.dropdown-content a {
    padding: 10px 15px;
    display: block;
    color: #333;
    font-weight: normal;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #2563eb;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover>a {
    color: #2563eb;
}

#resim-alani {
    width: 100%;
    overflow: hidden;
}

.logo2 {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

.section-title {
    text-align: center;
    margin: 10px 0;
}

.section-light {
    margin-bottom: 20px;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1 1 300px;
    flex-direction: column;
    align-items: flex-start;
}

.simge {
    display: flex;
    list-style: none;
    margin: 10px;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.contact-info {
    flex: 1 1 300px;
    padding-left: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.icon {
    color: #2563eb;
    font-size: 20px;
    min-width: 24px;
    text-align: center;
}

.text {
    flex: 1;
    text-align: left;
}

.hakları {
    background-color: #000;
    color: white;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 10px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.phone-call-button,
.whatsapp-float {
    position: fixed;
    left: 10px;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
}

.phone-call-button {
    bottom: 80px;
    background-color: #2563eb;
    font-size: 24px;
    padding: 14px;
}

.phone-call-button:hover {
    background-color: #1d4ed8;
}

.whatsapp-float {
    bottom: 20px;
    background-color: #25d366;
    font-size: 28px;
    width: 50px;
    height: 50px;
}

.whatsapp-float:hover {
    background-color: #1ebd5a;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {

    .container,
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        width: 180px;
        height: auto;
        margin-bottom: 10px;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        padding: 10px 0;
        width: 100%;
        margin: 0;
        font-size: 1rem;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .contact-info {
        flex: unset;
        padding: 10px 0;
        width: 100%;
    }

    .simge {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .icon {
        margin-right: 5px;
    }

    .hakları {
        white-space: normal;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: transparent;
    }

    .dropdown-content.show {
        display: block !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    .logo2 {
        width: 100%;
        max-height: 400px;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: white;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 10000;
    }

    .menu.active {
        right: 0;
    }

    .menu a,
    .menu .dropdown>a {
        text-align: center;
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }
}