@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');

@font-face {
    font-family: 'Fontum'; /* Fontun adı */
    src: url('/Fonts/Abel-Regular.ttf') format('truetype'); /* Font dosyalarının yolu ve formatı */
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Gezinme Çubuğu */
nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 150px;
}

/* Başlık Stilleri */
h1 {
    font-size: 36px;
    font-weight: 600;
}

/* Ana Başlık */
.destek-başlik {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
        url(../img/İletişimArkplan.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    overflow-x: hidden !important;
}

.destek-başlik h1 {
    margin-top: 100px;
}

/* İletişim Bölümü */
.iletişim {
    width: 80%;
    margin: auto;
}

.yatay {
    display: flex;
    justify-content: space-between;
}

.iletişim-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.iletişim-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.iletişim-col div .fa {
    font-size: 28px;
    color: #f44336;
    margin: 20px;
    margin-right: 30px;
}

.iletişim-col div p {
    padding: 0;
}

.iletişim-col div h5 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.iletişim-col input,
.iletişim-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Sayfa Gezinme Menüsü */
.sayfalar ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.sayfalar ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
}

.sayfalar ul li::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.sayfalar ul li:hover::after {
    width: 100%;
}

.sayfalar {
    flex: 1;
    text-align: right;
}

/* Sayfa Altı Bilgileri */
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

/* Ana Başlık Stilleri */
.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

/* Kahverengi Buton Stili */
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-top: 40px;
}

/* Başlık Stilleri */
h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    transition: 0.5s;
}

/* Kırmızı Buton Stili */
.red-btn {
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}

.red-btn:hover {
    color: #fff;
}

/* Harita Alanı Stili */
.konum {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.konum iframe {
    width: 100%;
}

/* Menü Bağlantı Stilleri */
.sayfalar ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
}

/* Sosyal Medya İkon Stilleri */
.icons .fa {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
/* Logo Stili */
.logo {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 4%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.logo {
    width: 200px;
    margin-top: 40px;
}


.iletişim-col div h6 {
    font-size: 30px;
    margin-bottom: 14px;
    color: #000000;
    font-weight: 500;
}
/* Hamburger Menü Düğmesi */
.hamburger-menu {
    display: none; /* Başlangıçta gizli tutulur */
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 6px 0;
    transition: 0.4s;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background-color: #f44336;
}

/* Açılır Menü (Modal) */
.modal {
    display: none; /* Başlangıçta gizli tutulur */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9998;
}

.modal ul {
    list-style: none;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.modal ul li {
    margin: 20px 0;
}

.modal ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}
@media (max-width: 1000px) {
    .destek-başlik h1 {
        margin-top: 200px;
        font-size: 36px;
        font-weight: 600;
    }

}
/* Medya Sorgusu: Mobil Cihazlar */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 5%;
    }
    .hamburger-menu {
        display: block; /* Mobil cihazlarda görünür olur */
    }

    /* Hamburger Menü İkonu (Açık Durum) */
    .hamburger-menu.open .hamburger-icon:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger-menu.open .hamburger-icon:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.open .hamburger-icon:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .modal {
        display: block; /* Mobil cihazlarda görünür olur */
    }
}

@media(max-width: 700px){

    .text-box h1 {
        font-size: 20px;
    }
}
@media (max-width: 750px) {
    .logo {
        max-width: 100%;
        height: auto;
        position: absolute;
        top: 4%;
        left: 20%;
        transform: translate(-50%, -50%);
        z-index: 999;
    }
    
    .logo {
        width: 200px;
        margin-top: 40px;
    }
}

@media(max-width: 700px){

    .sayfalar ul li {
        display: block;
    }

    .sayfalar {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fas {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .sayfalar ul {
        padding: 30px;
    }

}

@media(max-width: 700px) {
    .yatay {
        flex-direction: column;
    }
}

@media(max-width: 700px) {
    .testimonials-col img {
        margin-left: 0px;
        margin-right: 15px;
    }
}

@media(max-width: 700px){
    .cta h1 {
        font-size: 24px;
    }
}
