* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: transparent;
    color: #111;
}


/* NAVBAR */
.floating-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding-top: 10px; /* Üstten çok az boşluk resmi daha iyi gösterir */
}

.nav-container {
    background-color: #ffffff;
    width: 85%; /* Ekranın %85'ini kaplar, köşeler boş kalır */
    max-width: 1200px;
    height: 90px; /* 110'dan 90'a çekerek daha düzenli hale getirdik */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
    border-bottom-left-radius: 40px; 
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.logo img {
    height: 55px; /* Logo boyutunu dengeledik */
    transition: transform 0.3s ease;
}

/* Menü Yazı Efektleri */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Şık Alt Çizgi Efekti */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ff6600;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ff6600;
}

.nav-link:hover::after {
    width: 80%; /* Tamamı yerine %80'i dolar, daha zarif durur */
}

/* Sağdaki Siyah Buton */
.btn-black-premium {
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-black-premium:hover {
    background-color: #ff6600; /* Üzerine gelince tema rengine döner */
    transform: scale(1.05);
}

/* CONTACT */
.contact {
    position: relative;
    min-height: 100vh;
    padding: 180px 20px 80px;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("WhatsApp\ Image\ 2026-02-10\ at\ 04.22.26.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-box h4 {
    margin-bottom: 10px;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

textarea {
    min-height: 120px;
    resize: none;
}

button {
    width: 100%;
    padding: 15px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FOOTER */
.footer{
    background:#0e0e0e;
    color:#ccc;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-logo{
    height:50px;
    margin-bottom:15px;
}

.footer h4{
    color:#fff;
    margin-bottom:15px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.footer p i{
    color:var(--primary);
    margin-right:8px;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    background:#000;
    font-size:14px;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}
