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

:root {
    --pink: #FF6B9D;
    --purple: #C44DFF;
    --blue: #4D9DFF;
    --mint: #4DFFB5;
    --yellow: #FFD84D;
    --orange: #FF8C4D;
    --dark: #1a1a2e;
    --light: #fefefe;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

img { max-width: 100%; }

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(196,77,255,0.1);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 10px 40px;
    box-shadow: 0 4px 30px rgba(196,77,255,0.15);
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--purple); }

.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    -webkit-text-fill-color: white;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: scale(1.05); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    background: linear-gradient(135deg, #fff5f9 0%, #f0e6ff 50%, #e6f0ff 100%);
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
    width: 400px; height: 400px;
    background: var(--pink);
    top: -100px; left: -100px;
}
.blob-2 {
    width: 350px; height: 350px;
    background: var(--purple);
    bottom: -80px; right: -80px;
    animation-delay: -3s;
}
.blob-3 {
    width: 250px; height: 250px;
    background: var(--mint);
    top: 50%; left: 60%;
    animation-delay: -5s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
    display: inline-block;
    background: rgba(196,77,255,0.1);
    color: var(--purple);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(196,77,255,0.2);
}

.hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: #666;
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(196,77,255,0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196,77,255,0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #eee;
    transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.stat { text-align: center; }
.stat-num {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: #999; margin-top: 4px; }

/* ===== HERO (fotoğraflı ana sayfa) ===== */
.hero-photo {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-photo .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1555854877-bab0e564b8d5?w=1280&q=72');
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    animation: slowZoom 18s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes slowZoom {
    0% { transform: scale(1.15) translate(0, 0); }
    100% { transform: scale(1.3) translate(-2%, -2%); }
}

.hero-photo .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196,77,255,0.75) 0%, rgba(255,107,157,0.65) 50%, rgba(77,157,255,0.7) 100%);
    z-index: 1;
}

.hero-photo .hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-photo .hero-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    animation: fadeDown 0.8s ease both;
}

.hero-photo h1 {
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.25);
    animation: fadeUp 0.8s ease 0.15s both;
}

.hero-photo h1 .gradient-text {
    background: linear-gradient(135deg, #fff, #ffe0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-photo p {
    font-size: 19px;
    color: rgba(255,255,255,0.95);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
    animation: fadeUp 0.8s ease 0.3s both;
}

.hero-photo .hero-buttons { animation: fadeUp 0.8s ease 0.45s both; }

.hero-photo .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
}
.hero-photo .btn-secondary:hover {
    background: rgba(255,255,255,0.28);
    border-color: white;
}

.hero-photo .hero-stats { animation: fadeUp 0.8s ease 0.6s both; }
.hero-photo .stat-num {
    background: linear-gradient(135deg, #fff, #ffe0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-photo .stat-label { color: rgba(255,255,255,0.85); }

.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 28px;
    animation: bounce 2s infinite;
    text-decoration: none;
}

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

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

/* ===== WELCOME / TANITIM ŞERİDİ ===== */
.welcome {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 40px 30px;
    text-align: center;
}
.welcome .section-tag { margin-bottom: 16px; }
.welcome h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    max-width: 760px;
    margin: 0 auto 18px;
}
.welcome h2 .gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.welcome > p {
    max-width: 600px;
    margin: 0 auto;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 55px;
}

.highlight {
    background: white;
    border-radius: 22px;
    padding: 34px 22px;
    border: 2px solid #f3f3f3;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.highlight::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    top: -60px; right: -60px;
    opacity: 0.12;
    transition: transform 0.4s;
}
.highlight:hover { transform: translateY(-8px); box-shadow: 0 18px 50px rgba(196,77,255,0.13); }
.highlight:hover::after { transform: scale(1.6); }
.highlight.h-pink::after { background: var(--pink); }
.highlight.h-purple::after { background: var(--purple); }
.highlight.h-blue::after { background: var(--blue); }
.highlight.h-mint::after { background: var(--mint); }

.highlight-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}
.highlight h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.highlight p { font-size: 13.5px; color: #888; line-height: 1.6; position: relative; z-index: 1; }

/* ===== CTA BANNER ===== */
.cta-banner {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 40px;
}
.cta-inner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 55%, var(--orange) 100%);
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(196,77,255,0.3);
}
.cta-inner::before,
.cta-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.cta-inner::before { width: 220px; height: 220px; top: -80px; left: -60px; }
.cta-inner::after { width: 180px; height: 180px; bottom: -70px; right: -40px; }

.cta-inner h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 18px rgba(0,0,0,0.15);
}
.cta-inner p {
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 1;
}
.cta-buttons { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
    background: white;
    color: var(--purple);
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px) scale(1.03); }
.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }

/* ===== FAQ / MERAK EDİLENLER ===== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(196,77,255,0.2); }
.faq-item.open {
    border-color: rgba(196,77,255,0.35);
    box-shadow: 0 12px 35px rgba(196,77,255,0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question .faq-icon {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: #777;
    font-size: 14.5px;
    line-height: 1.7;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 240px;
    padding: 0 24px 22px;
}

/* ===== EVENT PHOTOS / ETKİNLİK FOTOĞRAFLARI ===== */
.event-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.event-photo {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 30px rgba(196,77,255,0.1);
    transition: box-shadow 0.4s;
}
.event-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: kenBurns 14s ease-in-out infinite alternate;
}
.event-photo:hover { box-shadow: 0 16px 45px rgba(196,77,255,0.25); }

/* her fotoğraf farklı zamanlamayla hareket etsin */
.event-photo:nth-child(1) img { animation-delay: 0s; animation-duration: 13s; }
.event-photo:nth-child(2) img { animation-delay: -2s; animation-duration: 15s; }
.event-photo:nth-child(3) img { animation-delay: -4s; animation-duration: 12s; }
.event-photo:nth-child(4) img { animation-delay: -6s; animation-duration: 16s; }
.event-photo:nth-child(5) img { animation-delay: -3s; animation-duration: 14s; }
.event-photo:nth-child(6) img { animation-delay: -5s; animation-duration: 13s; }

@keyframes kenBurns {
    0%   { transform: scale(1.05) translate(0, 0); }
    50%  { transform: scale(1.18) translate(-2%, -2%); }
    100% { transform: scale(1.1) translate(2%, 1%); }
}

/* ===== PAGE HEADER (alt sayfalar için) ===== */
.page-header {
    padding: 160px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f9 0%, #f0e6ff 50%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.page-header .hero-blob { opacity: 0.3; }

.page-header-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.page-header h1 {
    font-size: clamp(34px, 5.5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

/* ===== SECTION ===== */
.section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section.alt {
    max-width: none;
    background: linear-gradient(135deg, #fef5ff, #f5f0ff, #f0f5ff);
}
.section.alt .section-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,107,157,0.1), rgba(196,77,255,0.1));
    color: var(--purple);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
}

.section-sub {
    max-width: 560px;
    margin: 16px auto 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196,77,255,0.2);
    box-shadow: 0 20px 60px rgba(196,77,255,0.1);
}

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

.feature-icon {
    width: 70px; height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.fi-pink { background: rgba(255,107,157,0.1); }
.fi-purple { background: rgba(196,77,255,0.1); }
.fi-blue { background: rgba(77,157,255,0.1); }
.fi-mint { background: rgba(77,255,181,0.1); }
.fi-yellow { background: rgba(255,216,77,0.1); }
.fi-orange { background: rgba(255,140,77,0.1); }

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #777; line-height: 1.6; }

/* ===== BIRLIKTE ===== */
.birlikte-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.birlikte-item {
    background: white;
    border-radius: 24px;
    padding: 32px 22px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}
.birlikte-item:hover {
    transform: translateY(-6px);
    border-color: rgba(196,77,255,0.15);
    box-shadow: 0 15px 40px rgba(196,77,255,0.12);
}

.birlikte-emoji {
    font-size: 40px;
    margin-bottom: 14px;
}

.birlikte-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.birlikte-item p {
    font-size: 13.5px;
    color: #777;
    line-height: 1.6;
}

/* ===== ABOUT / HAKKIMIZDA ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196,77,255,0.15);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-text h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.about-value {
    background: white;
    border-radius: 16px;
    padding: 18px;
    border: 2px solid #f0f0f0;
}
.about-value-emoji { font-size: 22px; margin-bottom: 6px; }
.about-value h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.about-value p { font-size: 13px; color: #888; margin: 0; line-height: 1.5; }

/* ===== ROOMS / ODALAR ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196,77,255,0.15);
}

.room-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.room-info { padding: 28px; }
.room-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.room-info p { color: #777; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.room-feat {
    background: rgba(196,77,255,0.08);
    color: var(--purple);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.rooms-note {
    margin-top: 50px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    border: 2px dashed rgba(196,77,255,0.3);
    text-align: center;
}
.rooms-note p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ===== ODA BLOĞU + SLIDER ===== */
.room-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(196,77,255,0.08);
    margin-bottom: 40px;
}
.room-block:nth-child(even) .room-slider { order: 2; }

.room-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.room-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.room-slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--purple);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 2;
}
.slider-btn:hover { background: white; transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.slider-dots button {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.slider-dots button.active {
    background: white;
    width: 26px;
    border-radius: 50px;
}

.room-detail h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}
.room-detail .room-detail-sub {
    color: #888;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 22px;
}
.room-detail h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--purple);
    margin-bottom: 14px;
}

.room-services {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.room-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}
.room-services li .rs-icon {
    width: 34px; height: 34px;
    min-width: 34px;
    border-radius: 10px;
    background: rgba(196,77,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(196,77,255,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
    font-weight: 600;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-grid-full .gallery-item {
    height: 250px;
    grid-column: auto;
    grid-row: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s;
}
.testimonial-card:hover {
    border-color: rgba(196,77,255,0.2);
    box-shadow: 0 15px 40px rgba(196,77,255,0.1);
}

.testimonial-stars { color: var(--yellow); font-size: 18px; margin-bottom: 16px; }
.testimonial-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-role { font-size: 12px; color: #999; }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a2a4e 100%);
    color: white;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-left h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-left p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 30px; }

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px; height: 50px;
    min-width: 50px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-info-item span { font-size: 15px; color: rgba(255,255,255,0.8); }
.contact-info-item strong { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 2px; font-weight: 500; }

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    border-radius: 22px;
    text-decoration: none;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.contact-action.call {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: 0 12px 35px rgba(196,77,255,0.3);
}
.contact-action.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 12px 35px rgba(37,211,102,0.3);
}
.contact-action:hover { transform: translateY(-5px) scale(1.02); }

.contact-action-icon {
    width: 64px; height: 64px;
    min-width: 64px;
    border-radius: 18px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.contact-action-text { color: white; }
.contact-action-text strong { display: block; font-size: 19px; font-weight: 700; margin-bottom: 3px; }
.contact-action-text span { font-size: 14px; color: rgba(255,255,255,0.85); }

.contact-action-arrow {
    margin-left: auto;
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
}
.contact-action:hover .contact-action-arrow { transform: translateX(6px); }

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,77,255,0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #0f0f1e;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue), var(--mint), var(--yellow));
    background-size: 200% 100%;
    animation: gradientSlide 6s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 40px 50px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
    gap: 50px;
}

.footer-brand .footer-logo {
    font-family: 'Pacifico', cursive;
    font-size: 26px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.5);
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 3px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a:hover { color: var(--pink); transform: translateX(5px); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}
.footer-contact-item .fc-icon { font-size: 18px; min-width: 22px; }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom .heart { color: var(--pink); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(37,211,102,0.4);
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 50px rgba(37,211,102,0.6); }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .features-grid, .testimonials-grid, .rooms-grid, .gallery-grid-full, .event-photos { grid-template-columns: repeat(2, 1fr); }
    .birlikte-grid, .highlights { grid-template-columns: repeat(2, 1fr); }
    .contact-inner, .about-grid { grid-template-columns: 1fr; }
    .room-block { grid-template-columns: 1fr; gap: 24px; }
    .room-block:nth-child(even) .room-slider { order: 0; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 640px) {
    nav { padding: 12px 20px; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }

    .features-grid, .birlikte-grid, .testimonials-grid, .rooms-grid, .gallery-grid-full, .event-photos, .highlights { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .room-services { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 50px 24px 40px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-brand p { margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; }
    .footer-contact-item { justify-content: center; text-align: left; }
    .cta-inner { padding: 45px 26px; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .gallery-item { height: 200px; }

    .hero-stats { gap: 24px; }
    .stat-num { font-size: 28px; }
    .hero { padding: 100px 20px 60px; }
    .page-header { padding: 130px 20px 60px; }
    .section { padding: 60px 20px; }
    .contact { padding: 60px 20px; }
}

/* ============================================================
   KURUMSAL / CİDDİ GÖRÜNÜM (override katmanı)
   Renk paleti korunur; yapı daha ciddi ve düzenli hale gelir.
   ============================================================ */

/* Logo: el yazısı yerine kurumsal kelime markası */
.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.1;
}
.footer-brand .footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Navbar: daha sade ve oturmuş */
nav {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid #ececf1;
}
.nav-links a { font-size: 14px; font-weight: 500; }

/* Butonlar: yuvarlak hap yerine daha ciddi, köşeli */
.btn-primary, .btn-secondary, .btn-white, .btn-ghost, .nav-cta, .form-submit {
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13.5px !important;
    font-weight: 600;
}
.btn-primary, .btn-secondary { padding: 15px 32px; }

/* Kart ve kutular: aşırı yuvarlaklık azaltıldı */
.feature-card, .highlight, .testimonial-card, .birlikte-item,
.room-block, .room-slider, .event-photo, .gallery-item,
.about-img, .contact-form, .contact-action, .room-card,
.faq-item, .rooms-note { border-radius: 8px; }
.feature-icon, .highlight-icon, .contact-icon, .contact-action-icon { border-radius: 8px; }
.cta-inner { border-radius: 10px; }

/* Bölüm etiketi: kurumsal, ince çizgili */
.section-tag, .welcome .section-tag {
    background: none;
    color: var(--purple);
    font-size: 12px;
    letter-spacing: 2.5px;
    padding: 0 0 10px 0;
    border-radius: 0;
    position: relative;
}
.section-tag::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 36px; height: 2px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

/* Başlıklar: biraz daha sıkı ve ciddi */
.section-header h2, .welcome h2, .page-header h1, .hero-photo h1 {
    letter-spacing: -0.5px;
}

/* Hero: renkli candy overlay yerine kurumsal koyu degrade */
.hero-photo .hero-overlay {
    background: linear-gradient(120deg, rgba(20,18,40,0.85) 0%, rgba(60,25,75,0.72) 55%, rgba(28,30,60,0.8) 100%);
}
.hero-photo h1 .gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Oynak blob'lar sakinleştirildi */
.hero-blob { animation: none !important; opacity: 0.16 !important; filter: blur(90px); }

/* Footer üst şeridi: kayan gökkuşağı yerine sabit ince çizgi */
footer::before { animation: none; background: linear-gradient(90deg, var(--pink), var(--purple)); height: 3px; }

/* ===== İSTATİSTİK BANDI ===== */
.stats-band {
    background: linear-gradient(120deg, #1a1a2e, #2d1b4e);
    color: white;
}
.stats-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-box { position: relative; }
.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.12);
}
.stat-box .sb-num {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-box .sb-label {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ===== VİZYON / MİSYON ===== */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.vm-card {
    background: white;
    border: 1px solid #ececf1;
    border-left: 4px solid var(--purple);
    border-radius: 8px;
    padding: 40px;
}
.vm-card:first-child { border-left-color: var(--pink); }
.vm-card .vm-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 600;
}
.vm-card h3 { font-size: 24px; font-weight: 700; margin: 10px 0 14px; }
.vm-card p { color: #666; font-size: 15px; line-height: 1.8; }

@media (max-width: 968px) {
    .stats-band-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    .stat-box:nth-child(2)::after { display: none; }
    .vm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .stats-band-inner { grid-template-columns: 1fr; }
    .stat-box::after { display: none !important; }
}

/* ============================================================
   ANA SAYFA NAVBAR (görsele göre — koyu, ortalanmış linkler)
   Yalnızca .nav-home sınıfı taşıyan navbar'ı etkiler.
   ============================================================ */
.nav-home {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 18px 40px;
}
.nav-home.scrolled {
    background: rgba(13,13,26,0.92);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(255,255,255,0.06);
    padding: 12px 40px;
}

/* Logo (çiçek ikonu + kelime) */
.nav-home .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
    text-transform: none;
    letter-spacing: 0;
}
.nav-home .logo-mark { width: 34px; height: 34px; color: #fff; flex-shrink: 0; }
.nav-home .logo-word { font-weight: 800; font-size: 18px; letter-spacing: 3px; }

/* Ortadaki link grubu */
.nav-home .nav-links {
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 10px;
}
.nav-home .nav-links a {
    color: rgba(255,255,255,0.75);
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 13px;
    transition: all 0.25s;
}
.nav-home .nav-links a::after { display: none; }
.nav-home .nav-links a:hover,
.nav-home .nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

/* Sağ taraf: telefon ikonu + buton */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-icon-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }

.nav-home .nav-cta {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    border-radius: 6px;
    padding: 11px 20px;
    transition: all 0.25s;
}
.nav-home .nav-cta:hover {
    background: #fff;
    color: var(--dark) !important;
    -webkit-text-fill-color: var(--dark);
    transform: none;
}

.nav-home .hamburger span { background: #fff; }

@media (max-width: 880px) {
    .nav-home .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        background: #0d0d1a;
        border: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
        padding: 16px;
        gap: 6px;
    }
    .nav-home .nav-links.active { display: flex; }
    .nav-home .nav-links a { width: 100%; }
    .nav-home .hamburger { display: flex; }
    .nav-home .nav-icon-btn { display: none; }
    .nav-home .nav-cta { padding: 9px 16px; font-size: 12.5px !important; }
}

/* ============================================================
   MODERN DOKUNUŞLAR (kayan ilerleme çubuğu, marquee, sayaç)
   ============================================================ */

/* Üstte okuma ilerleme çubuğu */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    z-index: 2000;
    transition: width 0.1s linear;
}

/* Hareketli anahtar kelime şeridi (marquee) */
.marquee {
    background: linear-gradient(120deg, var(--purple), var(--pink), var(--orange));
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
    position: relative;
}
.marquee::before, .marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, rgba(196,77,255,0.9), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, rgba(255,140,77,0.9), transparent); }

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    animation: marqueeScroll 26s linear infinite;
    will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 36px;
}
.marquee-track span::after {
    content: '✿';
    font-size: 13px;
    opacity: 0.75;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Kademeli görünme için yumuşatma (JS gecikme verir) */
.fade-up { will-change: opacity, transform; }

/* Sayaç vurgusu */
.sb-num[data-count] { font-variant-numeric: tabular-nums; }

/* ============================================================
   REFERANS STİLİ: İRİ TİPOGRAFİ + RENKLİ BÜYÜK BLOKLAR
   ============================================================ */

/* Daha iri, daha cesur başlıklar */
.hero-photo h1 { font-size: clamp(46px, 7.5vw, 84px); letter-spacing: -1.5px; line-height: 1.04; }
.page-header h1 { font-size: clamp(40px, 6vw, 66px); letter-spacing: -1.2px; }
.section-header h2, .welcome h2 { font-size: clamp(30px, 4.5vw, 50px); letter-spacing: -1px; line-height: 1.12; }

/* Büyük dönüşümlü görsel blokları (referanstaki proje blokları gibi) */
.showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.showcase-block {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26,26,46,0.10);
}
.showcase-block .sc-img {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.showcase-block .sc-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(196,77,255,0.12), transparent);
}
.showcase-block .sc-text {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.showcase-block.sc-pink .sc-text { background: linear-gradient(140deg, #fff4f9, #ffe9f3); }
.showcase-block.sc-purple .sc-text { background: linear-gradient(140deg, #f6f0ff, #efe6ff); }
.showcase-block.sc-blue .sc-text { background: linear-gradient(140deg, #eef5ff, #e6efff); }

.showcase-block .sc-num {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--purple);
}
.showcase-block h3 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 12px 0 16px;
}
.showcase-block p { color: #555; font-size: 16px; line-height: 1.8; margin-bottom: 24px; }

.showcase-block .sc-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.showcase-block .sc-tags span {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(196,77,255,0.18);
    color: #5a3a6a;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* görselleri dönüşümlü yerleştir */
.showcase-block:nth-child(even) { grid-template-columns: 1fr 1.05fr; }
.showcase-block:nth-child(even) .sc-img { order: 2; }

@media (max-width: 880px) {
    .showcase-block,
    .showcase-block:nth-child(even) { grid-template-columns: 1fr; }
    .showcase-block:nth-child(even) .sc-img { order: 0; }
    .showcase-block .sc-img { min-height: 240px; }
    .showcase-block .sc-text { padding: 36px 26px; }
}

/* ============================================================
   DALGALI / YIRTIK GEÇİŞLER + BOLD KAPANIŞ ("make a mess")
   ============================================================ */

/* Bölümler arası organik dalga geçişi */
.wave-sep { line-height: 0; overflow: hidden; }
.wave-sep svg { display: block; width: 100%; height: 80px; }
@media (max-width: 640px) { .wave-sep svg { height: 50px; } }

/* Bold kapanış bloğu */
.closing {
    background: #FFF0F6;
    text-align: center;
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
}
.closing::before {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,77,255,0.12), transparent 70%);
    top: -120px; right: -80px;
    pointer-events: none;
}
.closing::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,157,0.14), transparent 70%);
    bottom: -120px; left: -60px;
    pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

.closing-eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 600;
}
.closing-title {
    font-family: 'Fredoka', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(42px, 8vw, 92px);
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: #2d1b4e;
    margin: 18px 0 32px;
}
.closing-title .accent {
    background: linear-gradient(120deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.closing-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
/* kapanışta butonlar biraz daha yumuşak/cana yakın */
.closing .btn-primary, .closing .btn-secondary {
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px !important;
    padding: 16px 34px;
}
.closing .btn-secondary { background: #fff; border-color: #f0d9e8; }

/* ============================================================
   ODALAR — EĞLENCELİ / PARLAK
   ============================================================ */
.room-fun {
    max-width: 1340px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffeef7 0%, #f3ecff 48%, #eaf3ff 100%);
    border-radius: 30px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(196,77,255,0.16);
}
.room-fun::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,157,0.22), transparent 70%);
    top: -90px; right: -60px;
    pointer-events: none;
}
.room-fun::after {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77,157,255,0.18), transparent 70%);
    bottom: -100px; left: -70px;
    pointer-events: none;
}

.room-fun .room-slider {
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(45,27,78,0.22);
    z-index: 1;
}

.room-fun .room-detail-side { position: relative; z-index: 1; }

.room-badge-fun {
    position: absolute;
    top: 24px; left: 24px;
    z-index: 5;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 24px rgba(196,77,255,0.45);
    animation: floaty 3s ease-in-out infinite;
}

.room-fun-eyebrow {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 700;
}
.room-fun-title {
    font-family: 'Fredoka', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 4vw, 48px);
    color: #2d1b4e;
    letter-spacing: -1px;
    line-height: 1.05;
    margin: 8px 0 12px;
}
.room-fun-sub {
    color: #6a5a7a;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.fun-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}
.fun-service {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 13px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #3a3a4e;
    box-shadow: 0 8px 20px rgba(45,27,78,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.fun-service:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 14px 30px rgba(196,77,255,0.18);
}
.fun-service .fs-ic {
    width: 42px; height: 42px;
    min-width: 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.fs-pink { background: rgba(255,107,157,0.16); }
.fs-purple { background: rgba(196,77,255,0.16); }
.fs-blue { background: rgba(77,157,255,0.16); }
.fs-mint { background: rgba(77,255,181,0.20); }
.fs-yellow { background: rgba(255,216,77,0.22); }
.fs-orange { background: rgba(255,140,77,0.20); }

.room-fun .btn-primary {
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px !important;
    padding: 15px 32px;
}

.room-deco {
    position: absolute;
    font-size: 26px;
    opacity: 0.7;
    pointer-events: none;
    animation: floaty 4s ease-in-out infinite;
}
.room-deco.d1 { top: 30px; right: 40px; }
.room-deco.d2 { bottom: 36px; right: 90px; animation-delay: -1.5s; }
.room-deco.d3 { top: 50%; left: 46%; font-size: 20px; animation-delay: -2.5s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 880px) {
    .room-fun { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
    .room-deco.d3 { display: none; }
}
@media (max-width: 560px) {
    .fun-services { grid-template-columns: 1fr; }
}

/* ============================================================
   PARLAK GİRİŞ + SUPERSIDE TİPOGRAFİ + DEKORATİF BAŞLIKLAR
   (en son katman — önceki kuralları geçersiz kılar)
   ============================================================ */

/* ---- 1) Ana giriş (hero) ESKİ KOYU FOTOĞRAFLI HALİNE döndürüldü ----
   (parlaklaştırma kaldırıldı; koyu hero yeniden geçerli) */

/* ---- 2) Ana sayfa navbar: Superside dizilişi (logo + linkler SOLDA, CTA sağda) ---- */
.nav-home .nav-links {
    margin-right: auto;
    margin-left: 32px;
    background: transparent;
    border: none;
    padding: 0;
    gap: 8px;
}
.nav-home .nav-links a { color: rgba(255,255,255,0.82); }
.nav-home .nav-links a:hover,
.nav-home .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }
@media (max-width: 880px) {
    .nav-home .nav-links {
        margin: 0;
        background: #0d0d1a;
        padding: 16px;
    }
    .nav-home .nav-links a { color: rgba(255,255,255,0.85); }
}

/* ---- 3) Superside tarzı bold/iri tipografi ---- */
.section-header h2, .welcome h2 {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -1.5px;
    line-height: 1.08;
}
.page-header h1 {
    font-weight: 900;
    font-size: clamp(42px, 7vw, 78px);
    letter-spacing: -2px;
    line-height: 1.02;
}
.hero-photo h1 { font-weight: 900; }
.section-sub, .page-header p { font-size: 16px; }

/* ---- 4) Dekoratif / şekilli sayfa başlıkları (görsel 2 -> 3) ---- */
.page-header {
    overflow: hidden;
    background: linear-gradient(120deg, #ffe6f3 0%, #f3e8ff 50%, #e9eeff 100%);
}
.page-header::before, .page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.page-header::before {
    width: 280px; height: 280px;
    background: rgba(255,107,157,0.38);
    top: -70px; left: -50px;
    animation: floaty 7s ease-in-out infinite;
}
.page-header::after {
    width: 250px; height: 250px;
    background: rgba(77,157,255,0.32);
    bottom: -80px; right: -40px;
    animation: floaty 9s ease-in-out infinite;
}
.page-header .hero-blob { opacity: 0.45 !important; filter: blur(70px); }
.page-header-content { position: relative; z-index: 2; }
.page-header-content h1 { animation: fadeUp 0.7s ease 0.1s both; }
.page-header-content p { animation: fadeUp 0.7s ease 0.25s both; }

/* başlıktaki dekoratif yüzen emoji */
.ph-deco {
    position: absolute;
    z-index: 2;
    font-size: 28px;
    opacity: 0.85;
    pointer-events: none;
    animation: floaty 5s ease-in-out infinite;
}
.ph-deco.pd1 { top: 26%; left: 16%; }
.ph-deco.pd2 { top: 30%; right: 18%; animation-delay: -2s; font-size: 24px; }

/* ---- 5) Showcase başlık düzenlemesi ---- */
.showcase-block h3 { font-weight: 800; letter-spacing: -1px; }

/* ---- 6) Responsive güvenlik dokunuşları ---- */
@media (max-width: 600px) {
    .hero-photo h1 { font-size: clamp(36px, 11vw, 52px); }
    .closing-title { font-size: clamp(36px, 12vw, 56px); }
    .marquee-track span { font-size: 13px; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
    .room-fun-title { font-size: 30px; }
}

/* ---- 7) Superside tarzı font kullanımı (temiz geometrik sans: Inter) ---- */
body { font-family: 'Inter', sans-serif; }
.logo, .logo-word, .footer-brand .footer-logo,
.nav-links a, .nav-cta, .nav-home .nav-cta,
.btn-primary, .btn-secondary, .btn-white, .btn-ghost, .form-submit,
.form-group input, .form-group textarea,
.marquee-track span, .section-tag, .hero-badge,
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; }
/* eğlenceli kapanış başlıkları Fredoka kalsın */
.closing-title, .room-fun-title { font-family: 'Fredoka', 'Inter', sans-serif; }

/* ---- 8) Daha okunabilir, öz ve düzenli metinler ---- */
p { line-height: 1.7; }
.section-sub { max-width: 600px; color: #6b6577; }
.feature-card p, .highlight p, .birlikte-item p,
.room-detail-sub, .vm-card p, .about-text p { color: #5f5a6b; }
.section-header h2, .welcome h2 { margin-bottom: 6px; }
.hero-photo p { max-width: 560px; }

/* ---- 9) ODA FİYATI (göze çarpan) ---- */
.room-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin: 6px 0 6px;
}
.room-price .rp-amount {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.room-price .rp-period { font-size: 16px; font-weight: 600; color: #8a7f99; }
.room-price .rp-badge {
    margin-left: 4px;
    background: linear-gradient(135deg, #27c46b, #16a34a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(22,163,74,0.3);
}
.rp-note {
    font-size: 13.5px;
    color: #16a34a;
    font-weight: 600;
    margin: 0 0 22px;
}

/* ---- 10) ANA SAYFA FİYAT BUTONU (hover'da fiyatı gösterir) ---- */
.price-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    height: 64px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 8px 26px rgba(196,77,255,0.45);
    overflow: hidden;
    animation: pricePulse 2.4s ease-in-out infinite;
    transition: box-shadow 0.3s;
}
.price-float .pf-icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.35s ease, opacity 0.25s ease;
}
.price-float .pf-price {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    font-weight: 800;
    font-size: 18px;
    overflow: hidden;
    transition: max-width 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}
.price-float:hover {
    box-shadow: 0 12px 34px rgba(196,77,255,0.6);
    animation-play-state: paused;
}
.price-float:hover .pf-icon { width: 0; min-width: 0; opacity: 0; }
.price-float:hover .pf-price { max-width: 200px; opacity: 1; padding: 0 26px 0 22px; }
@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* ---- 11) PERFORMANS: ağır efektleri hafiflet / hareketi azalt ---- */
nav, .nav-home.scrolled { backdrop-filter: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---- 12) NAVBAR: logo ORTADA, linkler SOLDA, telefon+CTA sağda ---- */
.nav-home .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-home .nav-links { margin-left: 0; margin-right: auto; }
@media (max-width: 880px) {
    .nav-home .logo { position: static; transform: none; }
}

/* ---- 13) BAŞLIK VURGUSU: zarif serif italik (referanstaki gibi) ---- */
.gradient-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

/* ---- 14) NAVBAR İKONLARI: WhatsApp her boyutta, ARAMA yalnızca telefonda ---- */
.nav-home .nav-icon-btn { display: flex; }   /* mobil gizlemeyi geçersiz kıl (WhatsApp her zaman) */
.nav-home .nav-call { display: none; }         /* masaüstü/tablette arama ikonu gizli */
@media (max-width: 640px) {
    .nav-home .nav-call { display: flex; }      /* sadece telefonlarda arama ikonu görünür */
    .nav-home .nav-icon-btn { width: 38px; height: 38px; }
    .nav-home .nav-right { gap: 8px; }
    .nav-home .logo-word { display: none; }     /* yer açmak için telefonda sadece menekşe ikonu */
}

/* ---- 15) LOGO: renksiz çizim ikon + zarif yazı (tüm sayfalar) ---- */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; color: #2d1b4e; }
.logo-mark path { vector-effect: non-scaling-stroke; }
.nav-home .logo-mark { color: #fff; }
.logo .logo-word {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.2px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-home .logo .logo-word {
    background: none;
    -webkit-text-fill-color: #fff;
    letter-spacing: 0.3px;
}

/* ---- 16) FOTOĞRAF BÜYÜTME (lightbox) ---- */
.room-slide { cursor: zoom-in; }
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(15, 12, 25, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: zoom-out;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
    cursor: default;
}
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.32); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }
@media (max-width: 600px) {
    .lightbox-nav { width: 42px; height: 42px; font-size: 24px; }
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
}

/* ---- 18) BLOG / MAKALE ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    background: #fff;
    border: 1px solid #ececf1;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s, box-shadow 0.35s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(196,77,255,0.13); }
.blog-card .bc-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.blog-card .bc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-tag { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple); font-weight: 700; }
.blog-card h3 { font-size: 19px; font-weight: 700; margin: 8px 0 10px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: #6b6577; line-height: 1.6; flex: 1; }
.blog-card .bc-link { margin-top: 16px; color: var(--purple); font-weight: 600; font-size: 14px; }

.article { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.article p { font-size: 16px; line-height: 1.85; color: #44414e; margin-bottom: 18px; }
.article h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin: 36px 0 14px; }
.article h3 { font-size: 20px; font-weight: 700; margin: 26px 0 10px; }
.article ul { margin: 0 0 18px 22px; }
.article li { font-size: 16px; line-height: 1.8; color: #44414e; margin-bottom: 8px; }
.article-cta {
    background: linear-gradient(135deg, #fff0f6, #f3ecff);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    margin-top: 36px;
}
.article-cta h3 { margin: 0 0 14px; font-size: 22px; }
@media (max-width: 968px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---- 19) HARİTA (iletişim) ---- */
.contact-map {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 16px 45px rgba(45,27,78,0.14);
    border: 1px solid #ececf1;
}
.contact-map iframe { width: 100%; height: 400px; border: 0; display: block; }
@media (max-width: 640px) { .contact-map iframe { height: 300px; } }

/* ---- 17) Tıklanır iletişim/Instagram bağlantıları ---- */
.footer-contact-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--pink); }
.contact-info-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-info-item a:hover { color: var(--pink); }
