/* ===== CSS VARIABLES ===== */
:root {
    --rose: #D4728C;
    --rose-light: #F2C4CE;
    --rose-lighter: #FBE8ED;
    --rose-pale: #FDF4F6;
    --rose-deep: #B8506A;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --cream: #FFF9F5;
    --cream-dark: #F5EDE6;
    --charcoal: #2D2A2E;
    --charcoal-light: #4A4548;
    --text-muted: #7D7279;
    --white: #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Garamond, serif;
    --font-body: 'Jost', sans-serif;

    --ease-luxe: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) {
    body {
        cursor: default;
    }

    a,
    button,
    .clickable {
        cursor: pointer;
    }
}

/* ===== LOADING SCREEN — Perde Açılış ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    overflow: hidden;
    pointer-events: none;
    transition: visibility 0s 0.8s;
}

.loader.hidden {
    visibility: hidden;
}

/* Perde panelleri */
.curtain-left,
.curtain-right {
    position: absolute;
    top: 0;
    width: 51%;
    height: 100%;
    z-index: 2;
}

.curtain-left {
    left: 0;
    background: linear-gradient(135deg, #C9627A 0%, #D4728C 30%, #B8506A 70%, #9E4058 100%);
    transform-origin: left center;
}

.curtain-right {
    right: 0;
    background: linear-gradient(225deg, #C9627A 0%, #D4728C 30%, #B8506A 70%, #9E4058 100%);
    transform-origin: right center;
}

/* Kumaş kıvrım dokusu */
.curtain-left::before,
.curtain-right::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(255, 255, 255, 0.03) 2px,
        transparent 4px,
        rgba(0, 0, 0, 0.05) 30px,
        transparent 32px,
        rgba(255, 255, 255, 0.04) 60px
    );
}

/* Üst kenar */
.curtain-left::after,
.curtain-right::after {
    content: '';
    position: absolute;
    top: -20px;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, #9E4058, #B8506A);
    z-index: 1;
}

/* Kumaş kıvrım katmanı */
.loader .drape {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.06) 8%,
        transparent 12%,
        rgba(255, 255, 255, 0.04) 15%,
        transparent 20%
    );
}

/* Püskül */
.curtain-tassel {
    position: absolute;
    top: 35%;
    width: 40px;
    height: 80px;
    z-index: 2;
}

.curtain-left .curtain-tassel { right: 20px; }
.curtain-right .curtain-tassel { left: 20px; }

.curtain-tassel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

.curtain-tassel::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 100%);
    border-radius: 0 0 10px 10px;
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}

/* Korniş çubuğu */
.curtain-rod {
    position: absolute;
    top: 0;
    left: -2%;
    right: -2%;
    height: 28px;
    background: linear-gradient(180deg, #D4A853 0%, #C9A96E 30%, #B8923D 60%, #C9A96E 100%);
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid #B8923D;
}

.curtain-rod::before,
.curtain-rod::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #E8D5B0, #C9A96E 50%, #9E7B3A);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.curtain-rod::before { left: 2%; }
.curtain-rod::after { right: 2%; }

/* Perde açılış animasyonları */
.loader.open .curtain-left {
    animation: curtainOpenLeft 2s var(--ease-luxe) 0.3s forwards;
}

.loader.open .curtain-right {
    animation: curtainOpenRight 2s var(--ease-luxe) 0.3s forwards;
}

.loader.open .curtain-rod {
    animation: rodFade 0.8s var(--ease-luxe) 1.8s forwards;
}

@keyframes curtainOpenLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes curtainOpenRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

@keyframes rodFade {
    to { opacity: 0; transform: translateY(-100%); }
}

/* Logo + yazı (perdelerin arkası) */
.loader-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--cream) 0%, var(--rose-pale) 100%);
    opacity: 1;
    transition: opacity 1s ease 1.5s;
}

.loader.open .loader-center {
    opacity: 0;
}

.loader-logo {
    width: clamp(220px, 40vw, 400px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 25px rgba(212, 114, 140, 0.3));
    animation: loaderLogoIn 1s var(--ease-luxe) 0.3s both;
}

.loader-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
    margin: 1.5rem auto;
    animation: loaderLogoIn 1s var(--ease-luxe) 0.6s both;
}

.loader-text {
    font-family: var(--font-elegant);
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: var(--rose);
    letter-spacing: 0.3em;
    font-style: italic;
    animation: loaderLogoIn 1s var(--ease-luxe) 0.9s both;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s var(--ease-luxe);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 249, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 3rem;
    box-shadow: 0 2px 40px rgba(212, 114, 140, 0.08);
}

.nav-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: height 0.5s var(--ease-luxe);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.navbar.scrolled .nav-logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--rose);
    transition: width 0.4s var(--ease-luxe);
}

.nav-links a:hover {
    color: var(--rose);
}

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

.nav-cta {
    background: var(--rose);
    color: var(--white) !important;
    padding: 0.6rem 1.6rem !important;
    border-radius: 50px;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    transition: all 0.4s var(--ease-luxe) !important;
    box-shadow: 0 4px 15px rgba(212, 114, 140, 0.3);
}

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

.nav-cta:hover {
    background: var(--rose-deep) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 114, 140, 0.4) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.4s var(--ease-luxe);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 249, 245, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-luxe);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--rose);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--rose-pale) 40%, var(--cream-dark) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 15% 20%, rgba(212, 114, 140, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 85% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 800px 400px at 50% 50%, rgba(242, 196, 206, 0.1) 0%, transparent 60%);
}

/* Floating decorative elements */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.hero-deco-1 {
    width: 400px;
    height: 400px;
    background: var(--rose-light);
    top: -100px;
    right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.hero-deco-2 {
    width: 250px;
    height: 250px;
    background: var(--gold-light);
    bottom: -50px;
    left: -50px;
    animation: float2 10s ease-in-out infinite;
}

.hero-deco-3 {
    width: 150px;
    height: 150px;
    background: var(--rose);
    top: 30%;
    left: 8%;
    animation: float3 7s ease-in-out infinite;
    opacity: 0.08;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 20px) scale(1.05);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.08);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, 15px);
    }
}

/* Curtain drape effect */
.curtain-drape {
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    pointer-events: none;
}

.curtain-drape-left {
    left: 0;
    background: linear-gradient(90deg, rgba(242, 196, 206, 0.15) 0%, transparent 100%);
}

.curtain-drape-right {
    right: 0;
    background: linear-gradient(270deg, rgba(242, 196, 206, 0.15) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 2rem 5rem;
    max-width: 800px;
}

.hero-logo-wrap {
    display: inline-block;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: heroReveal 1s var(--ease-luxe) 0.5s forwards;
}

.hero-logo {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(212, 114, 140, 0.15));
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
    margin: 1.5rem auto;
    opacity: 0;
    animation: heroReveal 1s var(--ease-luxe) 0.8s forwards;
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--rose-deep);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s var(--ease-luxe) 1s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s var(--ease-luxe) 1.2s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--rose);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s var(--ease-luxe) 1.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s var(--ease-luxe) 1.6s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.5s var(--ease-luxe);
    box-shadow: 0 4px 20px rgba(212, 114, 140, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 114, 140, 0.4);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1.5px solid var(--rose-light);
    transition: all 0.5s var(--ease-luxe);
}

.btn-secondary:hover {
    border-color: var(--rose);
    color: var(--rose);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 114, 140, 0.15);
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: heroReveal 1s var(--ease-luxe) 2s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1.5px solid var(--rose-light);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--rose);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--charcoal);
    padding: 0.9rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-elegant);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose-light);
    padding: 0 2rem;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--gold);
    padding: 0 0.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 6rem 2rem;
    position: relative;
}

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--rose);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--rose);
}

.section-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 3rem;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-luxe), transform 0.8s var(--ease-luxe);
}

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

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

/* ===== ABOUT / HAKKIMIZDA ===== */
.about {
    background: var(--white);
}

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

.about-visual {
    position: relative;
    height: 560px;
}

.about-img-main {
    width: 85%;
    height: 100%;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 0 20px 60px rgba(45, 42, 46, 0.08);
    overflow: hidden;
}

/* Mağaza fotoğraf slaytı */
.about-slider {
    position: relative;
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--rose-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 114, 140, 0.15);
}

.about-img-accent-inner {
    text-align: center;
}

.about-img-accent-inner .number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--rose-deep);
    line-height: 1;
}

.about-img-accent-inner .label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose);
    margin-top: 0.3rem;
}

/* Ardışık paragraflar arası boşluğu azalt */
.about-text .section-desc + .section-desc {
    margin-top: -2.5rem;
    margin-bottom: 0.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    padding: 1.5rem;
    background: var(--rose-pale);
    border-radius: 16px;
    transition: transform 0.4s var(--ease-luxe);
}

.about-feature:hover {
    transform: translateY(-4px);
}

.about-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.about-feature p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== HIZMETLER / SERVICES ===== */
.services {
    background: var(--cream);
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-label {
    justify-content: center;
}

.services-header .section-label::before {
    display: none;
}

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-luxe);
    border: 1px solid rgba(242, 196, 206, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-light), var(--rose), var(--gold));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-luxe);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 114, 140, 0.12);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s var(--ease-luxe);
}

.service-card:hover .service-icon {
    background: var(--rose-lighter);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== MARKALARIMIZ / BRANDS ===== */
.brands {
    background: var(--white);
    overflow: hidden;
}

.brands-category {
    margin-bottom: 3rem;
}

.brands-category:last-child {
    margin-bottom: 0;
}

.brands-category-title {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--rose);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.brands-category-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

/* Temel kart — tüm logolar için */
.brand-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease-luxe);
    border: 1px solid rgba(242, 196, 206, 0.2);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 114, 140, 0.1);
    border-color: var(--rose-light);
    background: var(--white);
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.5s var(--ease-luxe);
}

.brand-card:hover img {
    filter: grayscale(0%);
}

/* Kare / dikey logolar (Brillant, Taç, Moda Home, Merinos, Apex, Atlas, Tuğra) */
.brand-card.brand-square {
    width: 150px;
    height: 120px;
    padding: 1rem;
}

/* Yatay / geniş logolar (Royal, Koza, Pierre Cardin) */
.brand-card.brand-wide {
    width: 240px;
    height: 110px;
    padding: 1rem 1.5rem;
}

/* Yetkili bayi vurgulu kart */
.brand-card.brand-featured {
    position: relative;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2);
    overflow: visible;
    margin-bottom: 28px;
}

.brand-card.brand-featured:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.brand-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), #D4A843);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

/* ===== PERDE & HALI UYUMU / HARMONY ===== */
.harmony {
    background: linear-gradient(135deg, var(--cream) 0%, var(--rose-pale) 50%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.harmony::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.harmony-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.harmony-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.harmony-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(242, 196, 206, 0.2);
    transition: all 0.5s var(--ease-luxe);
}

.harmony-feature:hover {
    background: var(--white);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(212, 114, 140, 0.08);
}

.harmony-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rose-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.harmony-feature h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.harmony-feature p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.harmony-cta {
    margin-top: 2rem;
}

.harmony-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.harmony-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.harmony-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(242, 196, 206, 0.3);
    transition: all 0.5s var(--ease-luxe);
}

.harmony-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(212, 114, 140, 0.1);
}

.harmony-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--rose-deep);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.harmony-stat-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.harmony-quote {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border-left: 3px solid var(--gold);
    position: relative;
}

.harmony-quote::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--rose-light);
    line-height: 1;
}

.harmony-quote p {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    padding-left: 1rem;
}

.harmony-quote cite {
    display: block;
    margin-top: 1rem;
    padding-left: 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 400;
    color: var(--rose);
    letter-spacing: 0.05em;
}

/* ===== GALERI / GALLERY ===== */
.gallery {
    background: var(--white);
    overflow: hidden;
}

.gallery-masonry {
    columns: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.7s var(--ease-luxe);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 46, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-overlay span {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.05em;
}


/* ===== NEDEN BIZ / WHY US ===== */
.why-us {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3D3A3E 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 114, 140, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-us .section-label {
    color: var(--rose-light);
}

.why-us .section-label::before {
    background: var(--rose-light);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-title em {
    color: var(--rose-light);
}

.why-us .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

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

.why-us-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.5s var(--ease-luxe);
}

.why-us-card:hover {
    border-color: rgba(212, 114, 140, 0.3);
    background: rgba(212, 114, 140, 0.06);
    transform: translateY(-6px);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: rgba(212, 114, 140, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-us-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.why-us-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ===== HIZMET BÖLGELERI / SERVICE AREAS ===== */
.areas {
    background: var(--cream);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.area-card {
    padding: 3rem;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(242, 196, 206, 0.3);
    transition: all 0.5s var(--ease-luxe);
    position: relative;
    overflow: hidden;
}

.area-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-luxe);
    transform-origin: left;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(212, 114, 140, 0.1);
}

.area-card:hover::after {
    transform: scaleX(1);
}

.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.area-card .area-subtitle {
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-style: italic;
    color: var(--rose);
    margin-bottom: 1.2rem;
}

.area-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

.area-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    padding: 0.5rem 1rem;
    background: var(--rose-pale);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--rose-deep);
}

/* ===== SSS / FAQ ===== */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--rose-lighter);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--rose);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-luxe);
    font-size: 1.2rem;
    color: var(--rose);
}

.faq-item.active .faq-icon {
    background: var(--rose);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-luxe), padding 0.5s var(--ease-luxe);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== İLETİŞİM / CONTACT ===== */
.contact {
    background: var(--rose-pale);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 114, 140, 0.1);
}

.contact-item-text h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.3rem;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 1rem;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-item-text a:hover {
    color: var(--rose);
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(45, 42, 46, 0.08);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rose-lighter);
    color: var(--rose);
    transition: all 0.4s var(--ease-luxe);
}

.social-link:hover {
    background: var(--rose);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 114, 140, 0.3);
}

.contact-cta {
    margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    filter: brightness(1.15) drop-shadow(0 2px 8px rgba(212, 114, 140, 0.25));
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--rose-light);
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem auto;
}

.footer p {
    font-size: 0.8rem;
    font-weight: 300;
}

.footer-sub {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.5;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease-luxe);
    animation: fabPulse 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-fab-label {
    position: absolute;
    right: 72px;
    background: var(--white);
    color: var(--charcoal);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s var(--ease-luxe);
    pointer-events: none;
}

.whatsapp-fab:hover .whatsapp-fab-label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--rose-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-luxe);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--rose);
    border-color: var(--rose);
}

.back-to-top:hover svg {
    stroke: white;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--rose);
    stroke-width: 2;
    fill: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        columns: 2;
    }

    .harmony-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .brand-card.brand-square {
        width: 140px;
        height: 110px;
    }

    .brand-card.brand-wide {
        width: 220px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.7rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-visual {
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        columns: 1;
    }

    .harmony-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .harmony-stats {
        grid-template-columns: 1fr 1fr;
    }

    .brand-card.brand-square {
        width: 120px;
        height: 95px;
        padding: 0.8rem;
    }

    .brand-card.brand-wide {
        width: 180px;
        height: 85px;
        padding: 0.8rem 1rem;
    }

    .brands-grid {
        gap: 1rem;
    }

    .harmony-feature:hover {
        transform: translateX(0) translateY(-4px);
    }

    .hero-logo {
        max-width: 320px;
        width: 100%;
        height: auto;
    }

    .curtain-drape {
        width: 60px;
    }

    .whatsapp-fab {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }

    .whatsapp-fab-label {
        display: none;
    }

    .back-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}