/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

/* ── VARIABLES ── */
:root {
    --purple: #93187A;
    --purple-dark: #6e1260;
    --purple-light: #c44aaa;
    --black: #0a0a0a;
    --black-soft: #111111;
    --offwhite: #f9f5f0;
    --offwhite-dark: #ede8e2;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-purple: 0 8px 32px rgba(147,24,122,0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Cardo', Georgia, serif;
    background-color: var(--offwhite);
    color: var(--black-soft);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { margin-bottom: 1rem; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

/* ── WHATSAPP ── */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}
.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* Topbar social icon */
.topbar-social {
    width: 28px; height: 28px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    flex-shrink: 0;
}
.topbar-social:hover {
    background: var(--purple-light);
}

/* ── TOPBAR ── */
.topbar {
    background: rgba(45,10,38,0.95);
    border-bottom: 1px solid rgba(196,74,170,0.15);
    padding: 0.5rem 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.topbar-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.topbar-item {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
    white-space: nowrap;
}
.topbar-item:hover { color: var(--purple-light); }
.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
}
.topbar-address { cursor: default; }

/* Header'ı topbar kadar aşağı it */
.header {
    top: 34px !important;
}
.hero {
    padding-top: calc(8rem + 34px);
}
.page-header {
    padding-top: calc(10rem + 34px) !important;
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .header { top: 0 !important; }
}

/* ── HEADER / GLASSMORPHISM NAV ── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    background: linear-gradient(90deg, #3d0a35 0%, #2d0a26 50%, #1a0015 100%);
    border-bottom: none;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(196,74,170,0.15);
}
.header::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0; right: 0;
    height: 12px;
    background: linear-gradient(180deg, rgba(147,24,122,0.18) 0%, transparent 100%);
    pointer-events: none;
}
.header.scrolled {
    background: linear-gradient(90deg, #3d0a35 0%, #2d0a26 50%, #1a0015 100%);
    box-shadow: 0 6px 40px rgba(0,0,0,0.6);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: var(--transition);
    position: relative;
}
.logo-wrap::before {
    content: '';
    position: absolute;
    inset: -8px -16px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transition: var(--transition);
}
.logo-wrap:hover::before { opacity: 1; }
.logo-wrap:hover { transform: scale(1.04); }
.logo-img {
    height: 72px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(196,74,170,0.6));
    transition: var(--transition);
}
.logo-wrap:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 24px rgba(196,74,170,0.9));
}
.nav ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav ul li a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.03em;
    position: relative;
}
.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--purple-light);
    border-radius: 2px;
    transition: var(--transition);
}
.nav ul li a:hover {
    color: var(--white);
}
.nav ul li a:hover::after {
    left: 12px;
    right: 12px;
}
.nav ul li:last-child a {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    box-shadow: 0 4px 16px rgba(147,24,122,0.35);
}
.nav ul li:last-child a:hover {
    background: linear-gradient(135deg, var(--purple-light), var(--purple));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(147,24,122,0.5);
}

/* ── HERO ── */
/* ── HEADER WAVE ── */
.header-wave {
    position: absolute;
    bottom: -16px; left: 0; right: 0;
    z-index: 10;
    line-height: 0;
    pointer-events: none;
}
.header-wave svg {
    display: block;
    width: 100%;
    height: 24px;
}

/* ── HERO SPLIT ── */
.hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}
.hero::before { display: none; }
.hero::after  { display: none; }

/* Sol: açık kısım */
.hero-left {
    flex: 1;
    background: linear-gradient(160deg, #fdf8f4 0%, #f7eef7 100%);
    display: flex;
    align-items: center;
    padding: 8rem 4rem 5rem 6rem;
    position: relative;
}
.hero-left::after {
    content: '';
    position: absolute;
    top: 0; right: -40px;
    width: 80px; height: 100%;
    background: inherit;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 2;
}
.hero-left-inner { max-width: 520px; position: relative; z-index: 3; }

/* Sağ: koyu mor kısım */
.hero-right {
    width: 42%;
    background: linear-gradient(150deg, #2d0a26 0%, #1a0015 50%, #0d000b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem;
}
.hero-right-glow {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(147,24,122,0.4) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}
.hero-right-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.hero-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(147,24,122,0.7)) drop-shadow(0 0 48px rgba(196,74,170,0.3));
    animation: float 4s ease-in-out infinite;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 1rem 2rem;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.2rem;
    letter-spacing: 0.05em;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

@media (max-width: 900px) {
    .hero { flex-direction: column; }
    .hero-left { padding: 8rem 2rem 3rem; }
    .hero-left::after { display: none; }
    .hero-right { width: 100%; padding: 3rem 2rem; }
    .hero-logo { width: 160px; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147,24,122,0.08);
    border: 1px solid rgba(147,24,122,0.25);
    color: var(--purple);
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.hero h1 {
    color: var(--black);
    margin-bottom: 1.5rem;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(147,24,122,0.4);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid rgba(0,0,0,0.2);
}
.btn-outline:hover {
    background: rgba(147,24,122,0.06);
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-3px);
}

/* ── FLOATING CARDS ── */
.hero-visual {
    position: relative;
    z-index: 2;
}
.float-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.float-card:nth-child(2) { animation-delay: -2s; }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
.float-card .stat {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.float-card .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

/* ── SECTION TITLE ── */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title .eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.75rem;
    display: block;
}
.section-title h2 { margin-bottom: 1rem; }
.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
}

/* ── CARDS ── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    opacity: 0;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(147,24,122,0.1);
}
.card:hover::before { opacity: 1; }
.card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(147,24,122,0.1), rgba(147,24,122,0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.card:hover .card-icon {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    transform: scale(1.1) rotate(-5deg);
}
.card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── ABOUT SECTION ── */
.about-section { background: var(--white); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.75rem;
    display: block;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: #555; margin-bottom: 1.25rem; }
.about-visual {
    position: relative;
}
.about-card-main {
    background: linear-gradient(135deg, var(--black) 0%, #2d0a26 100%);
    border-radius: var(--radius);
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-card-main::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(147,24,122,0.4) 0%, transparent 70%);
    top: -50px; right: -50px;
    border-radius: 50%;
}
.about-card-main .quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
.about-card-main .author {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-light);
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}
.stat-box {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-box .number {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}
.stat-box .label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ── VALUES ── */
.values-section { background: var(--offwhite); }

/* ── CTA ── */
.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, #1a0a17 50%, #2d0a26 100%);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(147,24,122,0.25) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta-section .btn { position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer {
    background: linear-gradient(180deg, #0d000b 0%, #1a0015 100%);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147,24,122,0.5), transparent);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0;
}
.footer-brand {}
.footer-logo-img {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 1rem;
}
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    max-width: 300px;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(147,24,122,0.4);
}
.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 1.25rem;
}
.footer-links-list, .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links-list a,
.footer-contact-list a,
.footer-contact-list span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    display: block;
}
.footer-links-list a:hover,
.footer-contact-list a:hover { color: var(--purple-light); padding-left: 4px; }
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 0.5rem;
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-bar { flex-direction: column; text-align: center; }
}

/* ── PAGE HEADER ── */
.page-header {
    background: linear-gradient(160deg, #3d0a35 0%, #2d0a26 40%, #1a0015 100%);
    padding: 11rem 0 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Organik blob 1 - sağ üst */
.page-header::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(196,74,170,0.25) 0%, transparent 65%);
    top: -120px; right: -80px;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    animation: morphBlob1 8s ease-in-out infinite;
}

/* Organik blob 2 - sol alt */
.page-header::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(ellipse at center, rgba(147,24,122,0.2) 0%, transparent 65%);
    bottom: 20px; left: -60px;
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation: morphBlob2 10s ease-in-out infinite;
}

@keyframes morphBlob1 {
    0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: scale(1) rotate(0deg); }
    33%  { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; transform: scale(1.08) rotate(5deg); }
    66%  { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; transform: scale(0.95) rotate(-3deg); }
}
@keyframes morphBlob2 {
    0%, 100% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; transform: scale(1); }
    50%       { border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%; transform: scale(1.1); }
}

/* Kabarcık efektleri */
.page-header-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(196,74,170,0.12);
    border: 1px solid rgba(196,74,170,0.2);
    animation: floatUp linear infinite;
}
.bubble:nth-child(1)  { width:12px; height:12px; left:10%; bottom:-20px; animation-duration:7s; animation-delay:0s; }
.bubble:nth-child(2)  { width:8px;  height:8px;  left:25%; bottom:-20px; animation-duration:9s; animation-delay:1s; }
.bubble:nth-child(3)  { width:16px; height:16px; left:40%; bottom:-20px; animation-duration:8s; animation-delay:2s; }
.bubble:nth-child(4)  { width:6px;  height:6px;  left:55%; bottom:-20px; animation-duration:11s; animation-delay:0.5s; }
.bubble:nth-child(5)  { width:10px; height:10px; left:70%; bottom:-20px; animation-duration:7s; animation-delay:3s; }
.bubble:nth-child(6)  { width:14px; height:14px; left:85%; bottom:-20px; animation-duration:9s; animation-delay:1.5s; }
.bubble:nth-child(7)  { width:7px;  height:7px;  left:15%; bottom:-20px; animation-duration:12s; animation-delay:4s; }
.bubble:nth-child(8)  { width:18px; height:18px; left:60%; bottom:-20px; animation-duration:8s; animation-delay:2.5s; }

@keyframes floatUp {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-400px) scale(0.5); opacity: 0; }
}

/* İçerik */
.page-header-content {
    position: relative;
    z-index: 2;
}
.page-header h1 {
    color: var(--white);
    position: relative;
    z-index: 2;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}
.page-header h1 span {
    background: linear-gradient(135deg, #e890d8, var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

/* Dalgalı alt geçiş */
.page-header-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 3;
    line-height: 0;
}


/* ── CONTENT PAGE ── */
.content-page { padding: 5rem 0; }
.content-page .prose { max-width: 780px; margin: 0 auto; }
.content-page .prose h2 { margin: 2.5rem 0 1rem; color: var(--purple); }
.content-page .prose p { font-size: 1.05rem; color: #444; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 1.5rem; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card p { font-size: 0.9rem; color: var(--gray); margin: 0; }
.blog-tag {
    display: inline-block;
    background: rgba(147,24,122,0.08);
    color: var(--purple);
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* ── FORM ── */
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 640px;
    margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black-soft);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid var(--offwhite-dark);
    border-radius: var(--radius-sm);
    font-family: 'Cardo', serif;
    font-size: 1rem;
    background: var(--offwhite);
    color: var(--black-soft);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(147,24,122,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── SCROLL JS ── */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .header .container { flex-wrap: wrap; }
    .nav ul { gap: 0.1rem; flex-wrap: wrap; }
    .nav ul li a { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
    .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .footer-inner { flex-direction: column; text-align: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem; }
}
