:root {
    --gold: #C5A028; /* Altın sarısının açık zeminde daha iyi görünmesi için hafif koyulaştırıldı */
    --gold-dark: #AC8A1F;
    --dark: #1a1a1a;
    --text-main: #2b2b2b;
    --text-muted: #666;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --border: #eeeeee;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .pricing-grid h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold { color: var(--gold); }
.py-lg { padding: 80px 0; }
.bg-gray { background-color: var(--bg-gray); }
.text-start { text-align: left !important; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    box-shadow: 0 10px 20px rgba(197, 160, 40, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 40, 0.3);
}

.btn-white-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-dark-outline {
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-dark-outline:hover {
    background: var(--dark);
    color: white;
}

.btn.small {
    padding: 8px 18px;
    font-size: 14px;
}

/* ── HEADER ─────────────────────────────────────────────────── */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.navbar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Siyah logo için filtre kaldırıldı, direkt orijinal görünecek */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

nav ul a:hover {
    color: var(--gold);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background: url('images/salon_1.png') center/cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0.7), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 150px;
    margin-bottom: 100px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197, 160, 40, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.8rem;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-stats {
    background: white;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    padding: 60px 0;
    gap: 100px;
    position: relative;
    z-index: 3;
    width: 100%;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item .stat-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-item span {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 5px;
    background: var(--gold);
    border-radius: 5px;
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 60px 45px;
    border-radius: 30px;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    text-align: center;
}

.feature-card p {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ── PRICING ────────────────────────────────────────────────── */
.gender-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    font-family: inherit;
}

.tab-btn.active {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.pricing-grid.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-card {
    background: white;
    padding: 65px 45px;
    border-radius: 35px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.multi-prices {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
}

.price-card.popular {
    background: var(--dark);
    color: white;
    transform: scale(1.05);
}

.price-card.popular h3, .price-card.popular .price, .price-card.popular .section-title {
    color: white;
}

.price-card.popular ul li {
    border-color: #333;
    color: #bbb;
}

.price-card.popular h3 { color: #888; }

.price-card h3 {
    color: var(--text-muted);
    font-weight: 700;
}

.price {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.price span {
    font-size: 1.6rem;
    color: var(--gold);
    margin-left: 5px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 45px;
}

.price-card ul li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-card ul li i {
    color: var(--gold);
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-flex {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info { max-width: 700px; }

.contact-item {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.info-box {
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

.info-box i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
    padding: 50px 0;
    background: white;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.whatsapp-btn {
    position: fixed;
    bottom: 35px; right: 35px;
    width: 65px; height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-stats { gap: 50px; }
    header nav { display: none; }
    .contact-item { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero-stats { flex-wrap: wrap; gap: 30px; }
    .hero-stats .stat-item { width: 45%; }
    .py-lg { padding: 60px 0; }
    .price-card.popular { transform: none; }
}
