/* =========================================
   Uşak Organizasyoncu - Şıkır Şıkır Stil
   ========================================= */

:root {
  --c-magenta: #E91E63;
  --c-magenta-dark: #AD1457;
  --c-orange: #FF6F00;
  --c-orange-light: #FFA040;
  --c-gold: #FFB300;
  --c-gold-light: #FFD54F;
  --c-purple: #6A1B9A;
  --c-purple-dark: #4A148C;
  --c-cream: #FFF8E7;
  --c-pink-soft: #FFF0F5;
  --c-ink: #1F1233;
  --c-ink-2: #4A3B5C;
  --c-muted: #6B5B7C;
  --c-white: #FFFFFF;
  --c-line: rgba(106, 27, 154, 0.12);

  --grad-primary: linear-gradient(135deg, #E91E63 0%, #FF6F00 50%, #FFB300 100%);
  --grad-secondary: linear-gradient(135deg, #6A1B9A 0%, #E91E63 100%);
  --grad-soft: linear-gradient(135deg, #FFF0F5 0%, #FFF8E7 100%);
  --grad-dark: linear-gradient(135deg, #4A148C 0%, #AD1457 100%);

  --shadow-sm: 0 2px 8px rgba(106, 27, 154, 0.08);
  --shadow-md: 0 8px 24px rgba(233, 30, 99, 0.15);
  --shadow-lg: 0 20px 60px rgba(106, 27, 154, 0.18);
  --shadow-glow: 0 0 40px rgba(255, 179, 0, 0.4);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1240px;

  --f-heading: 'Playfair Display', 'Georgia', serif;
  --f-body: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --f-accent: 'Caveat', 'Brush Script MT', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-magenta); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--c-purple); }

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin-bottom: .6rem; }
h4 { font-size: 1.15rem; margin-bottom: .4rem; }
p { margin-bottom: 1rem; color: var(--c-ink-2); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-accent);
  font-size: 1.6rem;
  color: var(--c-magenta);
  margin-bottom: .5rem;
  transform: rotate(-2deg);
}

.title-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.15rem;
  color: var(--c-ink-2);
  max-width: 760px;
}

/* ========== Top bar ========== */
.topbar {
  background: var(--grad-dark);
  color: #fff;
  font-size: .88rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.topbar a { color: #FFD54F; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .tb-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-info span i { margin-right: 6px; color: #FFB300; }

/* ========== Header / Nav ========== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--c-ink);
}
.logo-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--grad-primary);
  border-radius: 14px;
  box-shadow: var(--shadow-glow);
  position: relative;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text small {
  display: block;
  font-family: var(--f-accent);
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-magenta);
  margin-top: -4px;
  letter-spacing: 0;
}
.logo-tag {
  display: inline-block;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--f-body);
  font-size: .62rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-right: 6px;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233,30,99,.35);
}
.nav-links {
  display: flex; gap: 6px; list-style: none; align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-ink);
  border-radius: var(--radius-pill);
  transition: all .25s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--c-magenta);
  background: var(--c-pink-soft);
}
.nav-cta { margin-left: 12px; }

.dropdown { position: relative; }
.dropdown > a::after {
  content: "▾"; margin-left: 5px; font-size: .8em; opacity: .7;
}
.dropdown-menu {
  position: absolute; top: 110%; left: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 280px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all .25s ease;
  list-style: none;
  border: 1px solid var(--c-line);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: .92rem; color: var(--c-ink); font-weight: 500;
}
.dropdown-menu a:hover { background: var(--grad-soft); color: var(--c-magenta); }

.hamburger {
  display: none;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center; justify-content: center;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
  font-family: var(--f-body);
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(233,30,99,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(233,30,99,.5);
  color: #fff;
}
.btn-ghost {
  background: #fff;
  color: var(--c-magenta);
  border: 2px solid var(--c-magenta);
}
.btn-ghost:hover {
  background: var(--c-magenta);
  color: #fff;
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .35);
}
.btn-wa:hover { background: #1DA851; color: #fff; transform: translateY(-2px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(255,179,0,.25), transparent 60%),
    radial-gradient(60% 60% at 10% 80%, rgba(233,30,99,.18), transparent 60%),
    linear-gradient(180deg, #FFF8E7 0%, #FFF0F5 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .35;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute; left: -4%; right: -4%; bottom: 4px; height: 14px;
  background: var(--grad-primary);
  opacity: .22;
  border-radius: 999px;
  z-index: -1;
}
.hero p.lead { font-size: 1.18rem; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-text-short { display: none; }
@media (max-width: 560px) {
  .btn-text-long { display: none; }
  .btn-text-short { display: inline; }
}
.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hero-stat {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.hero-stat b {
  display: block;
  font-family: var(--f-heading);
  font-size: 1.9rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat span { font-size: .85rem; color: var(--c-muted); font-weight: 600; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74,20,140,.4) 100%);
}
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(74,20,140,.35), 0 0 0 1px rgba(106,27,154,.08);
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-ink);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  border: 2px solid rgba(255,255,255,1);
}
.hero-badge i { color: var(--c-orange); font-size: 1.3rem; }
.badge-1 { top: 8px; left: 8px; transform: rotate(-3deg); }
.badge-2 { bottom: 28px; right: 8px; transform: rotate(2deg); background: linear-gradient(135deg, #fff 0%, #FFF8E7 100%); }

/* Confetti dots */
.confetti {
  position: absolute; pointer-events: none;
  width: 14px; height: 14px; border-radius: 4px;
  animation: float 6s ease-in-out infinite;
}
.confetti.c1 { top: 8%; left: 6%; background: var(--c-magenta); }
.confetti.c2 { top: 18%; right: 12%; background: var(--c-orange); animation-delay: -1s; }
.confetti.c3 { bottom: 14%; left: 14%; background: var(--c-gold); animation-delay: -2s; border-radius: 50%; }
.confetti.c4 { bottom: 22%; right: 8%; background: var(--c-purple); animation-delay: -3s; border-radius: 50%; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-22px) rotate(180deg); }
}

/* ========== Section headers ========== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .lead { margin-left: auto; margin-right: auto; }

/* ========== Service cards ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-line);
  transition: all .35s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.4));
}
.service-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--grad-primary);
  color: #fff;
  padding: 6px 12px;
  font-size: .75rem; font-weight: 700;
  border-radius: var(--radius-pill);
  z-index: 2;
  letter-spacing: .03em;
}
.service-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card .body p { font-size: .94rem; flex: 1; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-weight: 700; color: var(--c-magenta);
}
.service-card .more::after { content: "→"; transition: transform .25s; }
.service-card:hover .more::after { transform: translateX(4px); }

/* ========== Features (Why us) ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--c-line);
  transition: all .3s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border-radius: 14px;
  color: var(--c-magenta);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature p { font-size: .92rem; margin-bottom: 0; }

/* ========== CTA banner ========== */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,.15), transparent 40%);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.92); margin-bottom: 0; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--c-magenta);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.cta-banner .btn-primary:hover { background: var(--c-ink); color: #fff; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; position: relative; }

/* ========== Testimonials ========== */
.testimonials {
  background: linear-gradient(180deg, #FFF8E7 0%, #fff 100%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: -10px; left: 18px;
  font-family: var(--f-heading);
  font-size: 5rem;
  color: var(--c-magenta);
  opacity: .25;
  line-height: 1;
}
.testimonial .stars { color: var(--c-gold); margin-bottom: 8px; letter-spacing: 2px; }
.testimonial p { font-style: italic; }
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 12px;
}
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
}
.testimonial .who b { display: block; }
.testimonial .who span { font-size: .85rem; color: var(--c-muted); }

/* ========== FAQ ========== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(233,30,99,.25); }
.faq-item summary {
  list-style: none;
  padding: 20px 56px 20px 22px;
  font-weight: 700;
  font-family: var(--f-heading);
  font-size: 1.08rem;
  cursor: pointer;
  position: relative;
  color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 700;
  transition: transform .3s;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-item .faq-a {
  padding: 0 22px 22px;
  color: var(--c-ink-2);
}

/* ========== Article / Content ========== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 2rem; color: var(--c-magenta-dark); }
.prose p { font-size: 1.02rem; line-height: 1.8; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 1.2rem; color: var(--c-ink-2); }
.prose li { margin-bottom: .5rem; }
.prose blockquote {
  border-left: 4px solid var(--c-magenta);
  background: var(--c-pink-soft);
  padding: 18px 22px;
  margin: 1.4rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--c-purple-dark);
}
.prose a { font-weight: 700; border-bottom: 2px solid rgba(233,30,99,.25); }
.prose a:hover { border-color: var(--c-magenta); }

/* ========== Breadcrumb ========== */
.crumbs {
  padding: 18px 0;
  font-size: .9rem;
  color: var(--c-muted);
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li::after { content: "›"; margin-left: 6px; color: var(--c-muted); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--c-muted); font-weight: 600; }
.crumbs a:hover { color: var(--c-magenta); }
.crumbs li:last-child { color: var(--c-magenta); font-weight: 700; }

/* ========== Page hero (sub) ========== */
.subhero {
  padding: 60px 0 50px;
  background:
    radial-gradient(50% 70% at 100% 0%, rgba(255,179,0,.22), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(233,30,99,.18), transparent 60%),
    var(--grad-soft);
  position: relative;
  overflow: hidden;
}
.subhero h1 { margin-bottom: 14px; }
.subhero p { font-size: 1.1rem; max-width: 780px; }
.subhero .badges { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.subhero .badges span {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-purple-dark);
}

/* ========== Gallery ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform .4s ease;
}
.gallery a { overflow: hidden; border-radius: var(--radius-sm); display: block; }
.gallery a:hover img { transform: scale(1.06); }

/* ========== Contact form ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.contact-info {
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--grad-primary); opacity: .35;
  filter: blur(40px);
}
.contact-info h2 { color: #fff; }
.contact-info p { color: rgba(255,255,255,.85); }
.contact-info ul { list-style: none; margin-top: 20px; }
.contact-info li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info li .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--grad-primary);
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
}
.contact-info li b { display: block; color: #fff; }
.contact-info li a, .contact-info li span { color: rgba(255,255,255,.85); }

.form-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--c-ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  transition: all .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-magenta);
  box-shadow: 0 0 0 4px rgba(233,30,99,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--c-muted); margin-top: 10px; }

/* ========== Blog list ========== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card .meta { font-size: .82rem; color: var(--c-muted); margin-bottom: 8px; display: flex; gap: 14px; font-weight: 600; }
.post-card .meta span i { color: var(--c-orange); margin-right: 4px; }
.post-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.post-card h3 a { color: var(--c-ink); }
.post-card h3 a:hover { color: var(--c-magenta); }
.post-card .excerpt { font-size: .93rem; flex: 1; }
.post-card .more {
  margin-top: 12px;
  font-weight: 700; color: var(--c-magenta);
}

/* ========== Article meta + share ========== */
.article-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  padding: 12px 0; margin-bottom: 20px;
  color: var(--c-muted); font-size: .9rem;
  border-bottom: 1px solid var(--c-line);
}
.article-meta i { color: var(--c-orange); margin-right: 5px; }

/* ========== Footer ========== */
.footer {
  background: linear-gradient(180deg, #2A0A4A 0%, #4A148C 100%);
  color: rgba(255,255,255,.85);
  padding: 70px 0 22px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer h4 {
  color: #fff; font-size: 1.05rem; margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.footer p { color: rgba(255,255,255,.78); font-size: .95rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.78); font-size: .94rem; }
.footer ul a:hover { color: var(--c-gold-light); }
.footer .social { display: flex; gap: 10px; margin-top: 18px; }
.footer .social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: all .25s;
}
.footer .social a:hover { background: var(--grad-primary); transform: translateY(-2px); }
.footer .contact-line {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px;
  font-size: .94rem; color: rgba(255,255,255,.85);
}
.footer .contact-line i { color: var(--c-gold-light); margin-top: 4px; }
.footer-bottom {
  margin-top: 50px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap; gap: 10px;
}

/* ========== Floating CTAs ========== */
.float-cta {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 99;
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end;
}
.float-cta a {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .2px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-cta a i { font-size: 1.2rem; }
.float-cta a:hover { transform: translateY(-2px) scale(1.03); color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.float-cta .fcta-wa { background: #25D366; }
.float-cta .fcta-call {
  background: linear-gradient(135deg, #E53935 0%, #C62828 60%, #B71C1C 100%);
  animation: fcta-call-pulse 1.6s ease-out infinite;
}
.float-cta .fcta-wa { animation: fcta-wa-pulse 2.4s ease-out infinite; }

/* Calling ring effect for call button */
@keyframes fcta-call-pulse {
  0%   { box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 0 rgba(229,57,53,.55), 0 0 0 0 rgba(229,57,53,.35); }
  60%  { box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 16px rgba(229,57,53,0), 0 0 0 28px rgba(229,57,53,0); }
  100% { box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 0 rgba(229,57,53,0), 0 0 0 0 rgba(229,57,53,0); }
}
@keyframes fcta-wa-pulse {
  0%   { box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 0 rgba(37,211,102,0); }
}
/* Phone icon shake on call button */
.float-cta .fcta-call i {
  display: inline-block;
  animation: fcta-call-shake 1.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes fcta-call-shake {
  0%, 60%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-22deg); }
  20% { transform: rotate(22deg); }
  30% { transform: rotate(-18deg); }
  40% { transform: rotate(18deg); }
  50% { transform: rotate(-10deg); }
}
@media (max-width: 480px) {
  .float-cta a { padding: 10px 14px 10px 12px; font-size: .85rem; }
  .float-cta a i { font-size: 1.05rem; }
}

/* ========== Two-col content ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.two-col .visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.two-col .visual img { width: 100%; height: 100%; object-fit: cover; }

/* ========== Price / package cards ========== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pkg {
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s;
  position: relative;
}
.pkg:hover { border-color: var(--c-magenta); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg.feat { border-color: var(--c-magenta); background: linear-gradient(180deg, #fff, #FFF0F5); }
.pkg.feat::before {
  content: "POPÜLER";
  position: absolute; top: -12px; left: 24px;
  background: var(--grad-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
}
.pkg h3 { color: var(--c-purple-dark); }
.pkg .desc { font-size: .9rem; color: var(--c-muted); margin-bottom: 14px; }
.pkg ul { list-style: none; margin: 14px 0; }
.pkg ul li {
  padding: 7px 0; padding-left: 26px; position: relative;
  font-size: .92rem; color: var(--c-ink-2);
}
.pkg ul li::before {
  content: "✓";
  position: absolute; left: 0;
  width: 18px; height: 18px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .65rem; font-weight: 800;
  top: 11px;
}

/* ========== Service mini bar ========== */
.service-bar {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.service-bar a {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  color: var(--c-ink);
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s;
}
.service-bar a:hover { background: var(--c-pink-soft); color: var(--c-magenta); transform: translateY(-2px); }
.service-bar a i {
  font-size: 1.6rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

/* ========== Mobile menu ========== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(31,18,51,.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  animation: fadein .2s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu .panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  animation: slidein .3s ease;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes slidein { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-menu .close {
  position: absolute; top: 14px; right: 14px;
  background: var(--grad-primary);
  color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 12px;
  font-size: 1.2rem; cursor: pointer;
}
.mobile-menu ul { list-style: none; margin-top: 50px; }
.mobile-menu ul li a {
  display: block; padding: 14px 12px;
  font-weight: 700; color: var(--c-ink);
  border-radius: 10px;
  font-size: 1rem;
}
.mobile-menu ul li a:hover { background: var(--c-pink-soft); color: var(--c-magenta); }
.mobile-menu .sub { padding-left: 16px; font-size: .92rem; }
.mobile-menu .sub a { font-weight: 500; padding: 10px 12px; color: var(--c-ink-2); }

/* ========== Utility ========== */
.center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.bg-soft { background: var(--grad-soft); }

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: inline-grid; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { transform: none; max-width: 480px; margin: 0 auto; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 30px; }
  .cta-actions { justify-content: flex-start; }
  .two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .service-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .palyaco-prose .pdeco { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .header .nav { padding: 12px 4px; }
  .topbar { font-size: .8rem; }
  .topbar .container { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 80px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: .9rem;
    min-height: 46px;
  }
  .hero-actions .btn i { font-size: .95rem; }
  .service-bar { grid-template-columns: 1fr 1fr; padding: 12px; }
  .pkg { padding: 22px; }
  .contact-info, .form-card { padding: 24px; }
  .hero-badge { font-size: .78rem; padding: 10px 12px; }
  /* Logo compact on small mobile */
  .logo-text { font-size: 1.05rem; line-height: 1.15; }
  .logo-text small { font-size: .7rem; }
  .logo-tag { padding: 2px 8px; font-size: .65rem; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-mark svg { width: 20px; height: 20px; }
  .hamburger { padding: 8px 10px; }
}

/* ========== Service page visual (resim+video) ========== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.media-grid .media-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease;
}
.media-grid .media-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.media-grid .media-item img,
.media-grid .media-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.media-grid .media-item.tall { grid-row: span 2; aspect-ratio: 4/8.4; }
@media (max-width: 700px) {
  .media-grid .media-item.tall { grid-row: span 1; aspect-ratio: 4/5; }
}

.video-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  background: #000;
  margin: 28px 0;
  position: relative;
}
.video-block video { width: 100%; height: 100%; object-fit: cover; }
.video-block .vplay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.4));
  pointer-events: none;
}

/* Palyaço dekor: SVG side decorations */
.palyaco-prose { position: relative; }
.palyaco-prose h2 { position: relative; padding-left: 56px; }
.palyaco-prose h2::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--grad-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(233,30,99,.10), 0 8px 18px rgba(233,30,99,.30);
  z-index: 1;
}
.palyaco-prose h2::after {
  content: ""; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2C9 2 7 5 7 8c0 1 .3 1.8.8 2.5L4 14l3 3 3-3.5c.6.3 1.3.5 2 .5s1.4-.2 2-.5L17 17l3-3-3.8-3.5c.5-.7.8-1.5.8-2.5 0-3-2-6-5-6z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.palyaco-prose h2:nth-of-type(2n)::before { background: var(--grad-secondary); box-shadow: 0 0 0 6px rgba(106,27,154,.10), 0 8px 18px rgba(106,27,154,.30); }
.palyaco-prose h2:nth-of-type(3n)::before { background: linear-gradient(135deg, #FFB300, #FF6F00); }

/* Floating balon SVG'ler içerik kenarlarında */
.pdeco {
  position: absolute; pointer-events: none; opacity: .18;
  animation: balloonFloat 8s ease-in-out infinite;
  z-index: 0;
}
.pdeco.pd-1 { top: 8%; right: -40px; width: 70px; }
.pdeco.pd-2 { top: 40%; left: -50px; width: 80px; animation-delay: -2s; }
.pdeco.pd-3 { top: 70%; right: -30px; width: 60px; animation-delay: -4s; }
.pdeco.pd-4 { top: 90%; left: -40px; width: 90px; animation-delay: -1s; }
@keyframes balloonFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
}

/* Gallery page */
.gallery-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
}
.gallery-page a {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}
.gallery-page a img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-page a:hover img { transform: scale(1.08); }
.gallery-page a.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-page a.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-page a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74,20,140,.5));
  opacity: 0; transition: opacity .3s;
}
.gallery-page a:hover::after { opacity: 1; }
.gallery-filter {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.gallery-filter button {
  background: #fff; border: 1.5px solid var(--c-line);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .88rem; cursor: pointer;
  color: var(--c-ink-2);
  transition: all .25s;
  font-family: inherit;
}
.gallery-filter button:hover, .gallery-filter button.active {
  background: var(--grad-primary); color: #fff; border-color: transparent;
}
