* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background: #fff;
}

/* CONTAINER */

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* NAVBAR */

.navbar {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #e60023;
}

/* HERO */

.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1.5s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 50, 0.5);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 45%;
    transform: translateY(-50%);
    color: white;
}

.hero-content h2 {
    font-size: 42px;
}

.hero-content p {
    font-size: 18px;
    margin-top: 10px;
}

/* BUTTON */

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 18px;
    font-size: 14px;
    background: #e60023;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
}

/* SECTION */

.section {
    padding: 60px 0;
    text-align: center;
}

.gray {
    background: #f4f4f4;
}

/* CARDS */

.cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* FOOTER */

.footer {
    background: #0f0f0f;
    color: #fff;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 0;
}

.footer-box {
    flex: 1;
}

.footer-logo {
    height: 65px;
    margin-bottom: 15px;
}

.footer-box p {
    color: #bdbdbd;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: #e60023;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Linkler */
.footer-box a {
    display: block;
    color: #bdbdbd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #e60023;
    padding-left: 5px;
}

/* Social */
.social {
    margin-top: 15px;
}

.social a {
    display: inline-block;
    margin-right: 12px;
    color: #bdbdbd;
    font-size: 14px;
    text-decoration: none;
}

.social a:hover {
    color: #e60023;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding: 18px 0;
    color: #777;
    font-size: 13px;
}

/* MOBİL */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-box a {
        padding-left: 0;
    }
}

/* SOCIAL */

.social {
    margin-top: 10px;
}

.social a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.social a:hover {
    color: #e60023;
}

/* MAP */

.footer iframe {
    border-radius: 8px;
}

/* MOBİL */

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    .cards {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}