/*
Theme Name: Smyrna Plus Beauty
Theme URI: http://localhost/smyrna
Author: Smyrna Plus Guzellik Salonu
Description: Smyrna Plus Beauty - Premium Guzellik Salonu Temasi (Light Luxury Edition)
Version: 1.3.0
License: GNU General Public License v2 or later
Text Domain: smyrna-plus
*/

:root {
    --gold: #b3882e;
    --gold-light: #c9a84c;
    --gold-dark: #8c6818;
    --gold-subtle: rgba(179, 136, 46, 0.1);
    --darker: #f4f0e8;
    --darkest: #fbf9f6;
    --charcoal: #ffffff;
    --text-primary: #111111;
    --text-light: #111111;
    --text-body: #3c3a36;
    --text-muted: #6b6761;
    --white: #ffffff;
    --border-subtle: rgba(0, 0, 0, 0.07);
    --border-gold: rgba(179, 136, 46, 0.3);
    --whatsapp: #25D366;
    --font-main: "Playfair Display", serif;
    --font-body: "Montserrat", sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 6px 25px rgba(179, 136, 46, 0.25);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--darkest);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

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

section {
    padding: 5.5rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: var(--text-primary);
    margin-bottom: .5rem;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.divider::before, .divider::after {
    content: "";
    height: 1px;
    width: 80px;
}

.divider::before {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.divider::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.divider span {
    color: var(--gold);
    font-size: 1.2rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: translateX(-100%);
    transition: transform .4s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #ffffff !important;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(179, 136, 46, .4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* HEADER */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(251, 249, 246, 0.88);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.admin-bar #site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar #site-header {
        top: 46px;
    }
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: .65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

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

.logo-wrap {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: var(--transition);
}

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

.brand-name {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 700;
    color: #111111 !important;
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-sub {
    font-size: .62rem;
    color: #666666 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #222222;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: #111111 !important;
    color: #ffffff !important;
    padding: .55rem 1.35rem;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 3px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #111111;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO - PRESERVED STRUCTURE, VISIBLE NAIL & CRISP TEXT */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fbf9f6;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .48;
    filter: contrast(110%) saturate(115%);
    animation: heroZoom 15s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(251, 249, 246, 0.35) 0%, rgba(251, 249, 246, 0.65) 55%, rgba(251, 249, 246, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 860px;
    margin-top: 3.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 136, 46, .4);
    padding: .45rem 1.3rem;
    border-radius: 50px;
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(2.8rem, 8vw, 5.2rem);
    color: #111111;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 25px rgba(255, 255, 255, 0.95), 0 0 45px rgba(255, 255, 255, 0.85);
}

.hero-title .gold {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: #333333;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 15px rgba(255, 255, 255, 0.95);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: #555555;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* STATS BAR */
#stats {
    background: #ffffff;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    padding: 1rem;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(179, 136, 46, .08);
    border: 1px solid rgba(179, 136, 46, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    transition: var(--transition);
}

.stat-item:hover .stat-icon svg {
    stroke: #ffffff;
}

.stat-num {
    font-family: var(--font-main);
    font-size: 2.2rem;
    color: #111111;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    color: #666666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ABOUT */
#about {
    background: var(--darkest);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: "SP";
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-main);
    font-size: 20rem;
    color: rgba(0, 0, 0, .025);
    font-weight: 700;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.about-img-main:hover {
    transform: scale(1.02);
}

.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #111111;
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-main);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.about-img-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    color: var(--gold);
}

.about-img-badge .yr-text {
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    color: #eeeeee;
}

.about-img-frame {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold);
    border-radius: 3px;
    z-index: -1;
}

.about-text {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #222222;
    font-size: .95rem;
    font-weight: 500;
}

.about-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: .8rem;
    flex-shrink: 0;
}

/* SERVICES */
#services {
    background: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform .4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(179, 136, 46, .4);
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(179, 136, 46, .12);
}

.svc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(179, 136, 46, .08);
    border: 1px solid rgba(179, 136, 46, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .svc-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
}

.svc-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    fill: none;
    transition: var(--transition);
}

.service-card:hover .svc-icon svg {
    stroke: #ffffff;
}

.svc-title {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: #111111;
    margin-bottom: .75rem;
}

.svc-text {
    color: #666666;
    font-size: .9rem;
    line-height: 1.8;
}

/* KATALOG */
#katalog {
    background: var(--darkest);
}

.katalog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: .55rem 1.6rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .12);
    color: #444444;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover, .filter-btn.active {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.katalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.katalog-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border-radius: 3px;
    display: block;
    box-shadow: var(--shadow-card);
}

.katalog-item.hidden {
    display: none;
}

.katalog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

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

.katalog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.katalog-item:hover .katalog-overlay {
    opacity: 1;
}

.kov-title {
    font-family: var(--font-main);
    font-size: .95rem;
    color: #ffffff;
    margin-bottom: .2rem;
    font-weight: 600;
}

.kov-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.katalog-item:hover .kov-icon {
    transform: translate(-50%, -50%) scale(1);
}

.kov-icon svg {
    width: 18px;
    height: 18px;
    stroke: #111111;
    fill: none;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    padding: 2rem;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 3px;
}

.lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.lb-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.lb-close svg {
    width: 20px;
    height: 20px;
    stroke: #111111;
    fill: none;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
}

.lb-nav:hover {
    background: #ffffff;
}

.lb-nav svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    fill: none;
    transition: var(--transition);
}

.lb-nav:hover svg {
    stroke: #111111;
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 1rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* CONTACT */
#contact {
    background: var(--darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.contact-card:hover {
    border-color: rgba(179, 136, 46, .4);
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.cc-icon {
    width: 46px;
    height: 46px;
    background: rgba(179, 136, 46, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
}

.cc-body h4 {
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777777;
    margin-bottom: .25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.cc-body p, .cc-body a {
    color: #111111;
    font-size: 1rem;
    font-weight: 600;
}

.cc-body a:hover {
    color: var(--gold);
}

.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: .5rem;
}

.btn-wp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem 2rem;
    background: var(--whatsapp);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.btn-wp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .45);
}

.btn-wp svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #111111;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1.5px solid #111111;
    cursor: pointer;
    text-decoration: none;
}

.btn-call:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.btn-call svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.btn-insta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-insta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, .4);
    color: #ffffff;
}

.btn-insta svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    fill: none;
}

.map-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: var(--shadow-card);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* FLOATING BUTTONS */
.floating-btns {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(0, 0, 0, .15);
    position: relative;
}

.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: #111111;
    color: #ffffff;
    padding: .35rem .75rem;
    border-radius: 4px;
    font-size: .72rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.float-btn:hover::before {
    opacity: 1;
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.fb-wp {
    background: var(--whatsapp);
}

.fb-wp svg {
    fill: #ffffff;
    width: 26px;
    height: 26px;
}

.fb-wp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: .8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.fb-call {
    background: #111111;
}

.fb-call svg {
    stroke: #ffffff;
    fill: none;
    width: 22px;
    height: 22px;
}

.fb-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fb-insta svg {
    stroke: #ffffff;
    fill: none;
    width: 22px;
    height: 22px;
}

.fb-top {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .12);
}

.fb-top svg {
    stroke: #111111;
    fill: none;
    width: 20px;
    height: 20px;
}

/* FOOTER */
#site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding: 4.5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #666666;
    font-size: .95rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #f4f0e8;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: #111111;
    border-color: #111111;
    transform: translateY(-3px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    stroke: #111111;
    fill: none;
    transition: var(--transition);
}

.social-btn:hover svg {
    stroke: #ffffff;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111111;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-links a {
    color: #555555;
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.footer-links a::before {
    content: "›";
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: #666666;
    font-size: .88rem;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.footer-hours li span:last-child {
    color: #111111;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #777777;
    font-size: .85rem;
}

.footer-bottom .gc {
    color: var(--gold);
    font-weight: 600;
}

.footer-bottom .dev-credit {
    color: #222222;
    font-weight: 600;
}

.footer-bottom .dev-credit em {
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 700;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.aos {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.aos.visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #fbf9f6;
}

::-webkit-scrollbar-thumb {
    background: #d4cfc5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .katalog-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        border-left: 1px solid rgba(0, 0, 0, .08);
        box-shadow: -10px 0 35px rgba(0, 0, 0, .08);
        transition: right .4s ease;
        padding: 2rem;
    }
    .nav-menu.open { right: 0; }
    .nav-link { font-size: 1rem; color: #111111; }
    .hamburger { display: flex; z-index: 1001; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .katalog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
    .katalog-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    section { padding: 3.5rem 0; }
}

/* SVG FIXES */
svg { overflow: hidden; }
.float-btn svg { width: 26px !important; height: 26px !important; flex-shrink: 0; }
.stat-icon svg { width: 22px !important; height: 22px !important; flex-shrink: 0; }
.svc-icon svg { width: 28px !important; height: 28px !important; flex-shrink: 0; }
.kov-icon svg { width: 18px !important; height: 18px !important; flex-shrink: 0; }
.cc-icon svg { width: 20px !important; height: 20px !important; flex-shrink: 0; }
.social-btn svg { width: 16px !important; height: 16px !important; flex-shrink: 0; }
.btn-wp svg { width: 22px !important; height: 22px !important; flex-shrink: 0; }
.btn-call svg { width: 20px !important; height: 20px !important; flex-shrink: 0; }
.hero-badge svg { width: 14px !important; height: 14px !important; }
.hero-scroll svg { width: 20px !important; height: 20px !important; }
.lb-close svg { width: 20px !important; height: 20px !important; }
.lb-nav svg { width: 20px !important; height: 20px !important; }
.hamburger svg { width: 24px !important; height: 24px !important; }

/* =========================================
   AÇILIŞA ÖZEL KAMPANYA SECTION
   ========================================= */
#kampanya {
    background: linear-gradient(180deg, #f7f3ec 0%, #fcfbfa 100%);
    position: relative;
    overflow: hidden;
}

.kampanya-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #ffffff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: .4rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(179, 136, 46, 0.3);
}

.kampanya-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.kampanya-subtitle {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-style: italic;
    margin-top: .5rem;
}

.kampanya-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.kampanya-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2.75rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.kampanya-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(179, 136, 46, 0.15);
    border-color: rgba(179, 136, 46, 0.5);
}

.kampanya-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(179, 136, 46, 0.2);
}

.kampanya-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.kc-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #ffffff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: .3rem 1.25rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(179, 136, 46, 0.35);
}

.kc-badge {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: .5rem;
}

.kc-title {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 1rem;
}

.kc-price {
    font-family: var(--font-main);
    font-size: 2.8rem;
    font-weight: 700;
    color: #111111;
    line-height: 1;
    margin-bottom: .4rem;
}

.kc-price span {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.kc-seans {
    display: inline-block;
    background: rgba(179, 136, 46, 0.1);
    color: var(--gold-dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: .3rem .9rem;
    border-radius: 4px;
    margin-bottom: 1.75rem;
}

.kc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
}

.kc-features li {
    font-size: .92rem;
    color: #444444;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 500;
}

.kc-features li span {
    color: var(--gold);
    font-size: .8rem;
}

.kc-btn {
    width: 100%;
    justify-content: center;
}

/* Kampanya Footer Güvenceleri */
.kampanya-footer {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.kf-items {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.kf-item {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.kf-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.kf-item h4 {
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: .2rem;
}

.kf-item p {
    font-size: .8rem;
    color: #666666;
    margin: 0;
}

.kampanya-afis-btn {
    font-size: .8rem;
    white-space: nowrap;
}

/* =========================================
   İŞLEMLERİMİZ SECTION
   ========================================= */
#islemler {
    background: var(--darkest);
    position: relative;
}

.section-intro {
    max-width: 680px;
    margin: -1.5rem auto 3.5rem;
    text-align: center;
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
}

.islemler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.islem-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.islem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(179, 136, 46, 0.14);
    border-color: rgba(179, 136, 46, 0.4);
}

.islem-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f4f0e8;
}

.islem-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

.islem-card:hover .islem-img-wrap img {
    transform: scale(1.06);
}

.islem-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #ffffff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.islem-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.islem-title {
    font-family: var(--font-main);
    font-size: 1.3rem;
    color: #111111;
    margin-bottom: .4rem;
}

.islem-slogan {
    font-family: var(--font-main);
    font-size: .88rem;
    color: var(--gold-dark);
    font-style: italic;
    margin-bottom: .75rem;
    line-height: 1.4;
}

.islem-desc {
    color: #666666;
    font-size: .86rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.btn-islem {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #111111;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    padding: .5rem 0;
    border-bottom: 1.5px solid var(--gold);
    width: fit-content;
}

.btn-islem:hover {
    color: var(--gold);
    letter-spacing: 1.5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .islemler-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .kampanya-grid { grid-template-columns: 1fr; }
    .kampanya-card.featured { transform: none; }
    .kampanya-card.featured:hover { transform: translateY(-8px); }
    .islemler-grid { grid-template-columns: repeat(2, 1fr); }
    .kampanya-footer { flex-direction: column; text-align: center; }
    .kf-items { justify-content: center; gap: 2rem; }
}
@media (max-width: 580px) {
    .islemler-grid { grid-template-columns: 1fr; }
    .kf-items { flex-direction: column; align-items: center; }
}
