/* ----------------------------- */
/* GENEL STİL – PREMIUM ROSE GOLD */
/* ----------------------------- */

:root {
--primary-blue: #0d47a1; /* Kurumsal Mavi */
--accent-yellow: #ffc107; /* Vurgu Sarısı */
--accent-yellow-light: #ffca28;
--bg-main: #f4f7f6;      /* Açık Gri Arka Plan */
--bg-card: #ffffff;      /* Kartlar için Beyaz */
--text-dark: #333333;
--text-muted: #6c757d;
--border-color: #e0e0e0;
--transition: 0.3s ease;
--max-width: 1100px;
--font-main: 'Roboto', sans-serif;
}

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

body {
font-family: var(--font-main);
background: var(--bg-main);
color: var(--text-dark);
line-height: 1.6;
}

/* ----------------------------- */
/* WHATSAPP FLOATING BUTTON */
/* ----------------------------- */

.whatsapp-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-floating-button img {
    width: 35px;
    height: 35px;
}

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

/* ----------------------------- */
/* GENEL LAYOUT */
/* ----------------------------- */

.container {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 20px;
}

h1, h2, h3 {
color: var(--primary-blue);
letter-spacing: 0.5px;
font-weight: 700;
}

p {
margin: 10px 0;
color: var(--text-dark);
}

a {
color: var(--primary-blue);
text-decoration: none;
transition: color var(--transition);
}
a:hover {
color: var(--accent-yellow);
}

/* ----------------------------- */
/* HEADER */
/* ----------------------------- */

.site-header {
background: var(--bg-card);
border-bottom: 1px solid var(--border-color);
padding: 15px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.site-header .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo a {
font-size: 1.4rem;
font-weight: 700;
color: var(--primary-blue);
}

.desktop-nav {
display: flex;
gap: 20px;
margin-left: auto;
}

.desktop-nav a {
color: var(--text-dark);
font-weight: 500;
}

.header-arama-butonu {
background: var(--accent-yellow);
color: var(--text-dark);
padding: 10px 20px;
border-radius: 50px;
font-weight: bold;
transition: background var(--transition);
}
.header-arama-butonu:hover {
background: var(--accent-yellow-light);
}

/* ----------------------------- */
/* HERO BÖLÜMÜ */
/* ----------------------------- */

.hero-section {
text-align: center;
padding: 80px 20px;
background: var(--bg-main);
}

.hero-section h1 {
font-size: 2rem;
margin-bottom: 15px;
}

.hero-altbaslik {
font-size: 1.1rem;
margin-bottom: 20px;
}

.hero-cta-button {
display: inline-block;
background: var(--accent-yellow);
color: var(--text-dark);
padding: 12px 28px;
border-radius: 50px;
font-weight: 600;
letter-spacing: 0.5px;
transition: all var(--transition);
}
.hero-cta-button:hover {
background: var(--accent-yellow-light);
transform: scale(1.05);
}

/* ----------------------------- */
/* KART BÖLÜMÜ */
/* ----------------------------- */

.kart-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}

.kart {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 25px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.kart:hover {
transform: translateY(-5px);
border-color: var(--accent-yellow);
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ----------------------------- */
/* MAHALLE LİSTESİ */
/* ----------------------------- */

.mahalle-listesi {
columns: 2;
list-style: none;
margin-top: 20px;
}
.mahalle-listesi li {
padding: 5px 0;
color: var(--text-muted);
font-size: 0.95rem;
}

/* ----------------------------- */
/* HARİTA */
/* ----------------------------- */

.google-maps-section {
background: var(--bg-light);
text-align: center;
padding: 60px 20px;
margin-top: 40px;
}

.map-container {
margin-top: 20px;
border-radius: 16px;
overflow: hidden;

}

/* ----------------------------- */
/* YORUMLAR */
/* ----------------------------- */

.reviews {
background: #121214;
padding: 60px 20px;
}

.review-wrapper {
display: grid;
gap: 20px;
margin-top: 30px;
}

.review-item {
background: var(--bg-light);
padding: 25px;
border-radius: 12px;
border: 1px solid #2b2b2e;
}
.review-item span {
color: var(--accent-yellow-light);
display: block;
margin-top: 8px;
font-size: 0.9rem;
}

/* ----------------------------- */
/* FOOTER */
/* ----------------------------- */

.site-footer {
background: var(--bg-card);
color: var(--text-muted);
text-align: center;
padding: 40px 20px;
border-top: 1px solid var(--border-color);
margin-top: 40px;
}
.site-footer a {
color: var(--primary-blue);
}
.site-footer a:hover {
color: var(--accent-yellow);
}

/* ----------------------------- */
/* RESPONSIVE */
/* ----------------------------- */

@media (max-width: 768px) {
.desktop-nav {
flex-wrap: wrap;
justify-content: center;
}
.mahalle-listesi {
columns: 1;
}
.hero-section {
padding: 60px 10px;
}
.hero-section h1 {
font-size: 1.6rem;
}
.header-arama-butonu {
display: block;
text-align: center;
margin-top: 0;
}
}
