* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* TOP BAR */
/* TOP BAR GENEL */
.top-bar {
    background: #e8e4d8; /* Açık renk arka plan tüm barı kaplasın */
    padding: 0; /* Padding'i sıfırlıyoruz ki sol taraf tam yapışsın */
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-bar-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px; /* Sabit yükseklik tasarımı netleştirir */
}

/* SOL TARAF (ALTIN RENKLİ ALAN) */
.top-left {
    background: #c09858;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px 0 20px;
    position: relative;
    z-index: 1;
}

/* İkinci görseldeki o kesik/eğik görünüm (Trapezoid) */
.top-left::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 40px;
    height: 100%;
    background: #c09858;
    transform: skewX(-20deg); /* Eğiklik açısı */
    z-index: -1;
}

/* Telefon İkon Dairesi */
.phone-icon-circle {
    width: 32px;
    height: 32px;
    background: #2b2b2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.phone-icon-circle i {
    color: white;
    font-size: 14px;
}

/* Yazı Alanı */
.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    color: white;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
}

.contact-text a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* SAĞ TARAF */
.top-right {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 20px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 13px;
}

.top-info .divider {
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    color: #333; /* İkinci görseldeki gibi koyu ikonlar */
    font-size: 14px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #c09858;
}
/* NAVBAR */
.navbar {
    background: #333333;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* LOGO GÖRÜNÜM İYİLEŞTİRMESİ */
.logo-img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-sub {
    color: #c09858;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c09858;
}

.nav-menu i {
    font-size: 9px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 4px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-option img {
    width: 20px;
    height: auto;
}

.lang-option span {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.lang-option.active span {
    color: white;
}

.lang-option:hover span {
    color: #c09858;
}

.lang-divider {
    color: #555;
    font-size: 14px;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #c09858;
}

.callback-btn {
    background: white;
    color: #333;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s;
}

.callback-btn:hover {
    background: #c09858;
    color: white;
}

/* SLIDER */
.slider-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.slide-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.slide-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.slide-btn {
    display: inline-block;
    background: #c8a870;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
}

.slide-btn:hover {
    background: #d4b583;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200,168,112,0.4);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #c8a870;
    width: 40px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: #c8a870;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* FLOATING CONTACT BUTTONS */
.floating-contact {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.phone-btn { background: #2196F3; }
.telegram-btn { background: #0088cc; }
.whatsapp-btn { background: #25D366; }
.instagram-btn { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
/* DROPDOWN GENEL YAPISI */
.nav-menu li.dropdown {
    position: relative;
}

/* Alt Menü Kutusu */
.nav-menu .submenu {
    position: absolute;
    top: 100%; /* Menünün tam altından başlar */
    left: 0;
    background: white;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 3px solid #c09858; /* Üstteki altın çizgi */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1001;
}

/* Mouse üzerine gelince açılma efekti */
.nav-menu li.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Alt Menü Linkleri */
.nav-menu .submenu li {
    width: 100%;
}

.nav-menu .submenu li a {
    color: #333 !important; /* Yazılar koyu gri */
    padding: 12px 25px !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important; /* Küçük harf kullanımı için */
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
    line-height: 1;
}

/* Son elemanın çizgisini kaldır */
.nav-menu .submenu li:last-child a {
    border-bottom: none;
}

/* Alt menü linkine hover olunca */
.nav-menu .submenu li a:hover {
    background: #fcfaf5;
    color: #c09858 !important;
    padding-left: 30px !important; /* Hafif sağa kayma efekti */
}

/* Ok ikonuna ufak bir boşluk */
.nav-menu a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-menu li:hover > a i {
    transform: rotate(180deg); /* Üzerine gelince ok döner */
}