@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-gold: #cfa670;
    --primary-hover: #b58b50;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f9fbfd;
    --white: #ffffff;
    --soft-shadow: 0 10px 40px rgba(0,0,0,0.06);
    --radius-lg: 20px;
    --radius-sm: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: var(--text-dark);
}

/* NAVBAR - Temiz ve Beyaz */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    padding: 15px 0;
}
.nav-link {
    color: var(--text-dark) !important;
    font-size: 14px;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}
.btn-gold {
    background-color: var(--primary-gold);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px; /* Yuvarlak Buton */
    font-weight: 600;
    font-size: 14px;
    border: none;
    box-shadow: 0 5px 15px rgba(207, 166, 112, 0.4);
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: #fff;
}

/* HERO SECTION - Ferah Slider */
.hero-section {
    position: relative;
    padding-top: 76px; /* Navbar payı */
}
.carousel-item {
    height: 85vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}
/* Resimlerin üzerine hafif beyaz degrade atıyoruz, karanlık değil */
.hero-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    position: absolute; inset: 0;
}
.hero-content {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding-left: 5%;
}
.hero-badge {
    background: rgba(207, 166, 112, 0.2);
    color: #b58b50;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* CARDS & SECTIONS */
.section-padding { padding: 100px 0; }
.bg-white-soft { background-color: var(--white); }

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.01);
}
.feature-card:hover { transform: translateY(-10px); }
.feature-icon {
    width: 70px; height: 70px;
    background: rgba(207, 166, 112, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

/* BRANCH CARDS - Yumuşak Kartlar */
.branch-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: 0.3s;
    border: none;
    height: 100%;
}
.branch-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.1); }
.branch-img {
    height: 240px;
    overflow: hidden;
}
.branch-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
}
.branch-card:hover .branch-img img { transform: scale(1.05); }
.branch-body { padding: 30px; }
.branch-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }

/* MAP SECTION - Temiz Görünüm */
.map-container {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    padding: 10px;
}
.branch-list-btn {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: var(--text-dark);
    transition: 0.2s;
    border-radius: var(--radius-sm);
}
.branch-list-btn:hover { background-color: #fcfcfc; color: var(--primary-gold); }
.branch-list-btn.active {
    background-color: rgba(207, 166, 112, 0.1);
    color: var(--primary-gold);
    font-weight: 600;
}
.branch-list-btn i { width: 25px; }

/* FOOTER */
footer {
    background-color: #2d3436; /* Koyu ama siyah değil, modern antrasit */
    color: #b2bec3;
    padding-top: 80px;
}
footer h5 { color: #fff; margin-bottom: 25px; }
footer a { color: #b2bec3; text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--primary-gold); }
.footer-contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}
.footer-contact-item i {
    color: var(--primary-gold);
    margin-right: 15px;
    margin-top: 5px;
}
.sub-footer {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 60px;
}

@media(max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-overlay { background: rgba(255,255,255,0.85); } /* Mobilde yazılar okunsun diye */
}
/* --- HEADER TELEFON --- */
.nav-phone-btn {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 50px;
    margin-right: 15px;
    transition: 0.3s;
}
.nav-phone-btn:hover {
    background: var(--primary-gold);
    color: #fff !important;
}

/* --- WHATSAPP BUTONU & ANİMASYON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}

.whatsapp-label {
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 1;
    pointer-events: none;
    border: 1px solid #eee;
}

.whatsapp-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-label { display: none; } /* Mobilde yazıyı gizle, sadece ikon kalsın */
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px;}
}